MLK-14831 mx6: Fix wrong bmode value used for usb boot
Wrong bmode value is used in community u-boot for usb reboot. And cause it failed. Fix this by using a reserved bootcfg value. Signed-off-by: Ye Li <ye.li@nxp.com> (cherry picked from commit eacd50f370203218a8e96c28c8a7adc0b638fc6d)
This commit is contained in:
parent
b0f2c69d6f
commit
aed4820fa8
|
|
@ -709,7 +709,7 @@ const struct boot_mode soc_boot_modes[] = {
|
|||
#if defined(CONFIG_MX6UL) || defined(CONFIG_MX6ULL)
|
||||
{"usb", MAKE_CFGVAL(0x20, 0x00, 0x00, 0x00)},
|
||||
#else
|
||||
{"usb", MAKE_CFGVAL(0x10, 0x00, 0x00, 0x00)},
|
||||
{"usb", MAKE_CFGVAL(0x01, 0x00, 0x00, 0x00)},
|
||||
#endif
|
||||
{"sata", MAKE_CFGVAL(0x20, 0x00, 0x00, 0x00)},
|
||||
{"ecspi1:0", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x08)},
|
||||
|
|
|
|||
Loading…
Reference in New Issue