mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
16 lines
658 B
Text
16 lines
658 B
Text
|
# After modifying, run ./mkscr
|
||
|
|
||
|
test -n "${distro_bootpart}" || setenv distro_bootpart 1
|
||
|
part uuid ${devtype} ${devnum}:${distro_bootpart} uuid
|
||
|
setenv bootargs "console=ttyS0,115200 root=PARTUUID=${uuid} rw rootwait earlycon"
|
||
|
|
||
|
if load ${devtype} ${devnum}:${distro_bootpart} ${kernel_addr_r} /boot/Image; then
|
||
|
if load ${devtype} ${devnum}:${distro_bootpart} ${fdt_addr_r} /boot/dtbs/marvell/${fdtfile}; then
|
||
|
if load ${devtype} ${devnum}:${distro_bootpart} ${ramdisk_addr_r} /boot/initramfs-linux.img; then
|
||
|
booti ${kernel_addr_r} ${ramdisk_addr_r}:${filesize} ${fdt_addr_r};
|
||
|
else
|
||
|
booti ${kernel_addr_r} - ${fdt_addr_r};
|
||
|
fi;
|
||
|
fi;
|
||
|
fi
|