]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
mvebu: armada-8k: respect CONFIG_DISTRO_DEFAULTS
authorRobert Marko <robimarko@gmail.com>
Fri, 21 Jun 2024 09:46:02 +0000 (11:46 +0200)
committerStefan Roese <sr@denx.de>
Mon, 8 Jul 2024 06:20:58 +0000 (08:20 +0200)
Currently, Armada 8k config header is setting boot devices and including
<config_distro_bootcmd.h> regardless of the CONFIG_DISTRO_DEFAULTS being
enabled or not, thus populating the environment for distro boot even on
devices that have no need for it.

So, lets simply respect the value of CONFIG_DISTRO_DEFAULTS.

Signed-off-by: Robert Marko <robimarko@gmail.com>
include/configs/mvebu_armada-8k.h

index 239a09763ae1bc775f66bfd9250e35a46502d69e..6fedbe9ee386269533852ecc07667e77b11e83d6 100644 (file)
@@ -30,7 +30,7 @@
 /*
  * PCI configuration
  */
-
+#ifdef CONFIG_DISTRO_DEFAULTS
 #define BOOT_TARGET_DEVICES(func) \
        func(MMC, mmc, 1) \
        func(MMC, mmc, 0) \
@@ -40,6 +40,9 @@
        func(DHCP, dhcp, na)
 
 #include <config_distro_bootcmd.h>
+#else
+#define BOOTENV
+#endif
 
 #define CFG_EXTRA_ENV_SETTINGS \
        "scriptaddr=0x6d00000\0"        \