2016-12-11 21:23:19 +00:00
|
|
|
# After modifying, run ./mkscr
|
|
|
|
|
|
|
|
# Set root partition to the second partition of boot device
|
|
|
|
part uuid ${devtype} ${devnum}:2 uuid
|
|
|
|
|
2017-11-13 02:54:18 +00:00
|
|
|
setenv bootargs console=ttyS1,115200 console=tty0 root=PARTUUID=${uuid} rw rootwait smsc95xx.macaddr="${usbethaddr}"
|
2016-12-11 21:23:19 +00:00
|
|
|
|
|
|
|
if load ${devtype} ${devnum}:${bootpart} ${kernel_addr_r} /Image; then
|
2017-03-22 01:56:50 +00:00
|
|
|
if load ${devtype} ${devnum}:${bootpart} ${fdt_addr_r} /dtbs/${fdtfile}; then
|
2016-12-11 21:23:19 +00:00
|
|
|
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
|