Copy all files/folders in /boot to the boot partition.

New uboot looks in allwinne/* for the dtb files, and the new kernel
properly populates its /boot folder with the allwinner folder and the
backup files in /boot
This commit is contained in:
Adam Pigg 2020-09-05 19:33:34 +01:00
parent 9cf68b7b36
commit e7152942bc
1 changed files with 2 additions and 3 deletions

View File

@ -238,9 +238,8 @@ echo -e "\e[1mCopying kernel to boot partition...\e[0m"
mkdir "$MOUNT_BOOT"
sudo mount $BOOTPART "$MOUNT_BOOT" # Mount boot partition
echo "Boot partition mount: $MOUNT_BOOT"
sudo sh -c "cp $MOUNT_DATA/boot/Image $MOUNT_BOOT"
sudo sh -c "cp $MOUNT_DATA/boot/*.dtb $MOUNT_BOOT"
sudo sh -c "cp $MOUNT_DATA/boot/*.dts $MOUNT_BOOT"
sudo sh -c "cp -r $MOUNT_DATA/boot/* $MOUNT_BOOT"
echo `ls $MOUNT_BOOT`
if [ "$CUSTOM" != "" ]; then
sudo sh -c "cp '${CUSTOM}/boot.scr' '$MOUNT_BOOT/boot.scr'"