diff options
Diffstat (limited to 'platforms/rpi-aarch64/specialFunctions.sh')
-rwxr-xr-x | platforms/rpi-aarch64/specialFunctions.sh | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/platforms/rpi-aarch64/specialFunctions.sh b/platforms/rpi-aarch64/specialFunctions.sh index c990535..8209db3 100755 --- a/platforms/rpi-aarch64/specialFunctions.sh +++ b/platforms/rpi-aarch64/specialFunctions.sh @@ -59,12 +59,13 @@ function copyingCustomSystem() print_info "copying boot files to ${BOOT}" #As there is no ownership in FAT FS. - cp -a --no-preserve=ownership ${CONFIG_PATH}/boot/* "${BOOT}/" + cp -av --no-preserve=ownership ${CONFIG_PATH}/boot/* "${BOOT}/" print_info "copying dtb files to ${BOOT}" - for f in ${DTB}; do - cp --preserve=mode ${BUILD_PATH}/usr/lib64/linux-*/${f} "${BOOT}/" - done + cp -v --preserve=mode "${BUILD_PATH}/boot/"*.dtb "${BOOT}/" +# for f in ${DTB}; do +# cp --preserve=mode ${BUILD_PATH}/usr/lib64/linux-*/${f} "${BOOT}/" +# done return 0 } |