mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
16 lines
636 B
Text
16 lines
636 B
Text
# After modifying, run ./mkscr
|
|
|
|
# Set root partition to the second partition of boot device
|
|
part uuid ${devtype} ${devnum}:2 uuid
|
|
|
|
setenv bootargs console=ttyS1,115200 console=tty0 root=PARTUUID=${uuid} rw rootwait smsc95xx.macaddr="${usbethaddr}"
|
|
|
|
if load ${devtype} ${devnum}:${bootpart} ${kernel_addr_r} /Image; then
|
|
if load ${devtype} ${devnum}:${bootpart} ${fdt_addr_r} /dtbs/${fdtfile}; then
|
|
if load ${devtype} ${devnum}:${bootpart} ${ramdisk_addr_r} /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
|