summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorStephan Gerhold <[email protected]>2025-04-07 18:59:31 +0200
committerCaleb Connolly <[email protected]>2025-04-11 15:32:22 +0200
commitcfd27d130b3693eb2e0959befca6e1c739ed1f2d (patch)
treee70607877da5a395e107fae4d60cdde56ef6c183 /include
parent69aa453d29ee46aa425326caeb5d873dbc70cd83 (diff)
board: dragonboard410c: Use BOOTSTD instead of DISTRO_DEFAULTS
Reduce the environment size by using standard boot instead of distro boot. It uses faster bootdevs first by default (eMMC -> SD -> USB -> Network), so set "boot_targets" to keep the current ordering (USB -> SD -> eMMC -> Network). Perhaps this should be changed for consistency, but for now this keeps the behavior similar to before. Signed-off-by: Stephan Gerhold <[email protected]> Reviewed-by: Neil Armstrong <[email protected]> Reviewed-by: Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Caleb Connolly <[email protected]>
Diffstat (limited to 'include')
-rw-r--r--include/configs/dragonboard410c.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/include/configs/dragonboard410c.h b/include/configs/dragonboard410c.h
index 00102cd5c4f..c31c6c57c1a 100644
--- a/include/configs/dragonboard410c.h
+++ b/include/configs/dragonboard410c.h
@@ -18,15 +18,4 @@
#define PHYS_SDRAM_1_SIZE SZ_1G
#define CFG_SYS_SDRAM_BASE PHYS_SDRAM_1
-/* Environment */
-#define BOOT_TARGET_DEVICES(func) \
- func(USB, usb, 0) \
- func(MMC, mmc, 1) \
- func(MMC, mmc, 0) \
- func(DHCP, dhcp, na)
-
-#include <config_distro_bootcmd.h>
-
-#define CFG_EXTRA_ENV_SETTINGS BOOTENV
-
#endif