From: Stephen Warren <swar...@nvidia.com> $usb_need_init prevents "usb start" from being run multiple times for each boot attempt, i.e. once for USB storage, another for PXE, and another for DHCP. However, the flag that's used to determine when to run "usb start" is never cleared, so a subsequent "boot" command will never probe for a freshly plugged in USB device. Fix this so that new USB devices will be probed once per boot attempt.
Signed-off-by: Stephen Warren <swar...@nvidia.com> --- v2: New patch --- include/configs/tegra-common-post.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/tegra-common-post.h b/include/configs/tegra-common-post.h index b3e1cfd5de8c..99448cf3dedc 100644 --- a/include/configs/tegra-common-post.h +++ b/include/configs/tegra-common-post.h @@ -136,6 +136,7 @@ BOOTCMDS_PXE #define CONFIG_BOOTCOMMAND \ + "set usb_need_init; " \ "for target in ${boot_targets}; do run bootcmd_${target}; done" #endif -- 1.8.1.5 _______________________________________________ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot