pmaports/device/testing/device-goclever-gcta741l/u-boot-script.cmd
Newbyte b9bb6bbba8
goclever-gcta741l: remove dtb location workaround (MR 3254)
We previously installed dtbs outside of the boot partition, so it
was necessary to copy them from the root partition to boot if you
wanted to utilise them in U-Boot scripts. This is no longer
necessary as we now install dtbs to the boot partition directly, so
remove this workaround and edit the U-Boot script to reflect the
change.
2022-10-09 17:04:35 +02:00

21 lines
577 B
Batchfile

setenv kernel-flavor postmarketos-allwinner
setenv bootargs init=/init.sh rw console=tty1 panic=10 consoleblank=0 loglevel=1 PMOS_FORCE_PARTITION_RESIZE pmos_boot=/dev/mmcblk0p1 pmos_root=/dev/mmcblk0p2
echo Loading DTB: dtbs/${fdtfile}
load mmc 0:1 ${fdt_addr_r} dtbs/${fdtfile}
echo Resizing FDT
fdt addr ${fdt_addr_r}
fdt resize
echo Loading Kernel: vmlinuz
load mmc 0:1 ${kernel_addr_r} vmlinuz
echo Loading Initramfs: initramfs
load mmc 0:1 ${ramdisk_addr_r} initramfs
echo Booting kernel
bootz ${kernel_addr_r} ${ramdisk_addr_r}:${filesize} ${fdt_addr_r}
sleep 10