* Fix permission check

* Remove fails on copy

* Disable FB_BCM2708

* Don't touch the memory map from first stage

* bootcode.bin is not needed on rpi4
This commit is contained in:
Pascal Vizeli
2019-08-28 10:32:46 +02:00
committed by GitHub
parent 9f06ffbbd5
commit d1d3593d65
5 changed files with 8 additions and 7 deletions

View File

@@ -91,7 +91,7 @@ function create_kernel_image() {
# Mount / init file structs
sudo mkdir -p /mnt/data/
sudo mount -o loop "${kernel_img}" /mnt/data
sudo cp -f "${kernel}" /mnt/data/
sudo cp "${kernel}" /mnt/data/
sudo umount /mnt/data
}