]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
configs: Add support in Kconfig and convert for armada boards
authorAlgapally Santosh Sagar <santoshsagar.algapally@amd.com>
Thu, 21 Sep 2023 11:20:42 +0000 (16:50 +0530)
committerMichal Simek <michal.simek@amd.com>
Tue, 7 Nov 2023 12:47:08 +0000 (13:47 +0100)
Move the DEFAULT_ENV_IS_RW to Kconfig for easier configuration.
Hence, add the CONFIG_DEFAULT_ENV_IS_RW config to the defconfig files
to allow enabling them for armada boards.

Signed-off-by: Algapally Santosh Sagar <santoshsagar.algapally@amd.com>
Signed-off-by: Venkatesh Yadav Abbarapu <venkatesh.abbarapu@amd.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Link: https://lore.kernel.org/r/20230921112043.3144726-2-venkatesh.abbarapu@amd.com
Signed-off-by: Michal Simek <michal.simek@amd.com>
configs/eDPU_defconfig
configs/mvebu_db-88f3720_defconfig
configs/mvebu_espressobin-88f3720_defconfig
configs/uDPU_defconfig
drivers/serial/Kconfig
include/configs/mvebu_armada-37xx.h
include/env_default.h
include/env_internal.h

index f51df7861a288cd2197e75d0c730ab3ac9c40a9c..aef75c7780a5a39e61a1739b30990ae51daf717f 100644 (file)
@@ -20,6 +20,7 @@ CONFIG_DISTRO_DEFAULTS=y
 CONFIG_USE_PREBOOT=y
 # CONFIG_DISPLAY_CPUINFO is not set
 # CONFIG_DISPLAY_BOARDINFO is not set
+CONFIG_DEFAULT_ENV_IS_RW=y
 CONFIG_DISPLAY_BOARDINFO_LATE=y
 CONFIG_BOARD_EARLY_INIT_F=y
 CONFIG_SYS_PROMPT="eDPU>> "
index 829567014fd3873318320fc8a897a83c224b8777..e6fb80167a6eb0f0e3afba8dc1eff64b258d2f16 100644 (file)
@@ -22,6 +22,7 @@ CONFIG_USE_PREBOOT=y
 CONFIG_SYS_CONSOLE_INFO_QUIET=y
 # CONFIG_DISPLAY_CPUINFO is not set
 # CONFIG_DISPLAY_BOARDINFO is not set
+CONFIG_DEFAULT_ENV_IS_RW=y
 CONFIG_DISPLAY_BOARDINFO_LATE=y
 CONFIG_BOARD_EARLY_INIT_F=y
 CONFIG_SYS_MAXARGS=32
index 6c68c239e251fb2f0e97d78c49c4414c6dc4db9b..8e79fc7ce93debb5dbbd8ea568939b4ea8a9f851 100644 (file)
@@ -24,6 +24,7 @@ CONFIG_USE_PREBOOT=y
 CONFIG_SYS_CONSOLE_INFO_QUIET=y
 # CONFIG_DISPLAY_CPUINFO is not set
 # CONFIG_DISPLAY_BOARDINFO is not set
+CONFIG_DEFAULT_ENV_IS_RW=y
 CONFIG_DISPLAY_BOARDINFO_LATE=y
 CONFIG_BOARD_EARLY_INIT_F=y
 CONFIG_BOARD_LATE_INIT=y
index 988f9ed0d844d54711d9feb1b56973e3108e56ca..6c48b33dca1866630161869e72499a437066a853 100644 (file)
@@ -20,6 +20,7 @@ CONFIG_DISTRO_DEFAULTS=y
 CONFIG_USE_PREBOOT=y
 # CONFIG_DISPLAY_CPUINFO is not set
 # CONFIG_DISPLAY_BOARDINFO is not set
+CONFIG_DEFAULT_ENV_IS_RW=y
 CONFIG_DISPLAY_BOARDINFO_LATE=y
 CONFIG_BOARD_EARLY_INIT_F=y
 CONFIG_SYS_PROMPT="uDPU>> "
index 9f0f84c9b426f5a3945370a3b1a8632644d48164..8761a6454079401b65f89ac221a03c77db92e510 100644 (file)
@@ -24,6 +24,12 @@ config BAUDRATE
          in the SPL stage (most drivers) or for choosing a default baudrate
          in the absence of an environment setting (serial_mxc.c).
 
+config DEFAULT_ENV_IS_RW
+       bool "Make default environment as writable"
+       help
+         Select this to enable to make default environment writable. This
+         allows modifying the default environment.
+
 config REQUIRE_SERIAL_CONSOLE
        bool "Require a serial port for console"
        # Running without a serial console is not supported by the
index 76e148f55ebf44bc9f7710bacc7e961b4d7c578b..18b55be0d8c1e2faf81360104507375f682f57e3 100644 (file)
@@ -30,7 +30,6 @@
 /*
  * Environment
  */
-#define DEFAULT_ENV_IS_RW              /* required for configuring default fdtfile= */
 
 #ifdef CONFIG_MMC
 #define BOOT_TARGET_DEVICES_MMC(func, i) func(MMC, mmc, i)
index b16c22d5a28ca281c0fc42b9068058192cb04e34..227cad7c340cc2be946db25e74a466566d259228 100644 (file)
@@ -21,7 +21,7 @@ env_t embedded_environment __UBOOT_ENV_SECTION__(environment) = {
        {
 #elif defined(DEFAULT_ENV_INSTANCE_STATIC)
 static char default_environment[] = {
-#elif defined(DEFAULT_ENV_IS_RW)
+#elif defined(CONFIG_DEFAULT_ENV_IS_RW)
 char default_environment[] = {
 #else
 const char default_environment[] = {
index 6a69494646893aaeb227ebfb43839cd0ab76b20c..fcb464263f06e71d23b6d6af36c68b3451728bf8 100644 (file)
@@ -89,7 +89,7 @@ typedef struct environment_s {
 extern env_t embedded_environment;
 #endif /* ENV_IS_EMBEDDED */
 
-#ifdef DEFAULT_ENV_IS_RW
+#ifdef CONFIG_DEFAULT_ENV_IS_RW
 extern char default_environment[];
 #else
 extern const char default_environment[];