2016-10-22 18:25:42 +00:00
|
|
|
# After modifying, run ./mkscr
|
|
|
|
|
|
|
|
# Uncomment to set the USB OTG port to host mode (default is peripheral)
|
|
|
|
#setenv otg_host yes
|
|
|
|
|
2015-06-27 22:27:35 +00:00
|
|
|
part uuid ${devtype} ${devnum}:${bootpart} uuid
|
|
|
|
setenv bootargs console=ttyGS0,115200 console=${console} root=PARTUUID=${uuid} rw rootwait
|
|
|
|
|
|
|
|
if load ${devtype} ${devnum}:${bootpart} ${kernel_addr_r} /boot/zImage; then
|
|
|
|
if load ${devtype} ${devnum}:${bootpart} ${fdt_addr_r} /boot/dtbs/${fdtfile}; then
|
2016-10-22 18:25:42 +00:00
|
|
|
if test -n ${otg_host}; then
|
|
|
|
echo USB OTG: Host mode
|
|
|
|
fdt addr ${fdt_addr_r}
|
|
|
|
fdt get value usbotg /__symbols__ usbotg
|
|
|
|
fdt set ${usbotg} dr_mode host
|
|
|
|
else
|
|
|
|
echo USB OTG: Peripheral mode
|
|
|
|
fi
|
2015-06-27 22:27:35 +00:00
|
|
|
if load ${devtype} ${devnum}:${bootpart} ${ramdisk_addr_r} /boot/initramfs-linux.img; then
|
|
|
|
bootz ${kernel_addr_r} ${ramdisk_addr_r}:${filesize} ${fdt_addr_r};
|
|
|
|
else
|
|
|
|
bootz ${kernel_addr_r} - ${fdt_addr_r};
|
2016-10-22 18:25:42 +00:00
|
|
|
fi
|
|
|
|
fi
|
2015-06-27 22:27:35 +00:00
|
|
|
fi
|