Seite 1 von 1

Re: USB booting without FAT patition

Verfasst: Mo 13. Jan 2014, 15:11
von BPanther
Here you see "usbload".

Code: Alles auswählen

bootcmd_8=set usb 1; set par 4; run usbconf; run usbload; bootm a5000000
This is the called line. Just change it here or create a new.

Code: Alles auswählen

usbload=if fatload usb $usb:1 a5000000 /uImage$par; then; elif ext2load usb $usb:$par a5000000 /boot/uImage; then; fi
Example with new one - Now calling "usbload_a".

Code: Alles auswählen

bootcmd_8=set usb 1; set par 4; run usbconf; run usbload_a; bootm a5000000
And here it is...

Code: Alles auswählen

usbload_a=if ext2load usb $usb:$par a5000000 /boot/uImage; then; fi