diff options
author | Svyatoslav Ryhel <clamor95@gmail.com> | 2024-06-18 13:07:57 +0300 |
---|---|---|
committer | Svyatoslav Ryhel <clamor95@gmail.com> | 2024-07-05 09:01:37 +0300 |
commit | ef35fffabdb951238d8cf04f997bcf17bc40f9c6 (patch) | |
tree | 1de37c33cbf555c6b162a53b2cbd2ceceb173d96 | |
parent | 317a6f99fe3e84ce97ef454322c8813289d2209b (diff) |
include: configs: tegra-common-post: make usb first boot target
This ensures that the device can boot from a USB device prior to MMC. Useful
cases are when installing a new OS from USB while MMC still has a working OS
configuration or if the OS configuration is broken in late boot stages
(kernel boots but the system does not start).
Signed-off-by: Svyatoslav Ryhel <clamor95@gmail.com>
-rw-r--r-- | include/configs/tegra-common-post.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/tegra-common-post.h b/include/configs/tegra-common-post.h index fc74980f7ca..2f08dfed020 100644 --- a/include/configs/tegra-common-post.h +++ b/include/configs/tegra-common-post.h @@ -7,7 +7,7 @@ #ifndef __TEGRA_COMMON_POST_H #define __TEGRA_COMMON_POST_H -#define BOOT_TARGETS "mmc1 mmc0 usb pxe dhcp" +#define BOOT_TARGETS "usb mmc1 mmc0 pxe dhcp" #ifdef CONFIG_TEGRA_KEYBOARD #define STDIN_KBD_KBC ",tegra-kbc" |