diff options
author | Tom Rini <trini@konsulko.com> | 2017-11-06 18:15:11 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-11-17 16:37:26 -0500 |
commit | b6251db8c3f0de605b4cd6f15a00fc7dd19cda63 (patch) | |
tree | 18d9f52428251d31557245ddbe7d60d8396123b5 /include/configs | |
parent | 232ed3ca534708527a9515c7c41bc3542949525c (diff) |
Kconfig: Introduce USE_BOOTCOMMAND and migrate BOOTCOMMAND
We first introduce CONFIG_USE_BOOTCOMMAND, similar to
CONFIG_USE_BOOTARGS. We then migrate CONFIG_BOOTCOMMAND for most
CONFIG_DISTRO_DEFAULT users. In some cases platforms have a complex
scheme around this usage, and these have been defered for the moment so
that platform maintainers can work on a migration plan.
Signed-off-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Lukasz Majewski <lukma@denx.de>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/am335x_evm.h | 9 | ||||
-rw-r--r-- | include/configs/apalis-tk1.h | 4 | ||||
-rw-r--r-- | include/configs/el6x_common.h | 4 | ||||
-rw-r--r-- | include/configs/embestmx6boards.h | 4 | ||||
-rw-r--r-- | include/configs/lsxl.h | 1 | ||||
-rw-r--r-- | include/configs/mx6cuboxi.h | 5 | ||||
-rw-r--r-- | include/configs/novena.h | 1 | ||||
-rw-r--r-- | include/configs/omap3_igep00x0.h | 4 | ||||
-rw-r--r-- | include/configs/sandbox.h | 2 | ||||
-rw-r--r-- | include/configs/ti_omap4_common.h | 8 | ||||
-rw-r--r-- | include/configs/udoo_neo.h | 4 | ||||
-rw-r--r-- | include/configs/vexpress_common.h | 4 | ||||
-rw-r--r-- | include/configs/wandboard.h | 5 |
13 files changed, 0 insertions, 55 deletions
diff --git a/include/configs/am335x_evm.h b/include/configs/am335x_evm.h index 4823a7e4f3..5ad0366730 100644 --- a/include/configs/am335x_evm.h +++ b/include/configs/am335x_evm.h @@ -82,15 +82,6 @@ func(PXE, pxe, na) \ func(DHCP, dhcp, na) -#define CONFIG_BOOTCOMMAND \ - "if test ${boot_fit} -eq 1; then " \ - "run update_to_fit;" \ - "fi;" \ - "run findfdt; " \ - "run init_console; " \ - "run envboot; " \ - "run distro_bootcmd" - #include <config_distro_bootcmd.h> #ifndef CONFIG_SPL_BUILD diff --git a/include/configs/apalis-tk1.h b/include/configs/apalis-tk1.h index e6d119eb06..c13e446fce 100644 --- a/include/configs/apalis-tk1.h +++ b/include/configs/apalis-tk1.h @@ -54,10 +54,6 @@ #undef CONFIG_SERVERIP #define CONFIG_SERVERIP 192.168.10.1 -#define CONFIG_BOOTCOMMAND \ - "run emmcboot; setenv fdtfile ${soc}-apalis-${fdt_board}.dtb && " \ - "run distro_bootcmd" - #define DFU_ALT_EMMC_INFO "apalis-tk1.img raw 0x0 0x500 mmcpart 1; " \ "boot part 0 1 mmcpart 0; " \ "rootfs part 0 2 mmcpart 0; " \ diff --git a/include/configs/el6x_common.h b/include/configs/el6x_common.h index 01d75d6aa2..909981cf10 100644 --- a/include/configs/el6x_common.h +++ b/include/configs/el6x_common.h @@ -80,10 +80,6 @@ func(PXE, PXE, na) \ func(DHCP, dhcp, na) -#define CONFIG_BOOTCOMMAND \ - "run findfdt; " \ - "run distro_bootcmd" - #include <config_distro_bootcmd.h> #define CONFIG_ARP_TIMEOUT 200UL diff --git a/include/configs/embestmx6boards.h b/include/configs/embestmx6boards.h index 3f128e67cd..08a29223b2 100644 --- a/include/configs/embestmx6boards.h +++ b/include/configs/embestmx6boards.h @@ -132,10 +132,6 @@ func(PXE, pxe, na) \ func(DHCP, dhcp, na) -#define CONFIG_BOOTCOMMAND \ - "run finduuid; " \ - "run distro_bootcmd" - #include <config_distro_bootcmd.h> #define CONSOLE_STDIN_SETTINGS \ diff --git a/include/configs/lsxl.h b/include/configs/lsxl.h index 5d5851f516..0793fcb9e4 100644 --- a/include/configs/lsxl.h +++ b/include/configs/lsxl.h @@ -70,7 +70,6 @@ * Default environment variables */ #define CONFIG_LOADADDR 0x00800000 -#define CONFIG_BOOTCOMMAND "run bootcmd_${bootsource}" #if defined(CONFIG_LSXHL) #define CONFIG_FDTFILE "kirkwood-lsxhl.dtb" diff --git a/include/configs/mx6cuboxi.h b/include/configs/mx6cuboxi.h index 7fefe8edcb..6b42b2b3c1 100644 --- a/include/configs/mx6cuboxi.h +++ b/include/configs/mx6cuboxi.h @@ -122,11 +122,6 @@ "echo WARNING: Could not determine dtb to use; fi; \0" \ BOOTENV -#define CONFIG_BOOTCOMMAND \ - "run findfdt; " \ - "run finduuid; " \ - "run distro_bootcmd" - #define BOOT_TARGET_DEVICES(func) \ func(MMC, mmc, 0) \ func(SATA, sata, 0) \ diff --git a/include/configs/novena.h b/include/configs/novena.h index 3acc8c62de..dd0e637062 100644 --- a/include/configs/novena.h +++ b/include/configs/novena.h @@ -38,7 +38,6 @@ /* Booting Linux */ #define CONFIG_BOOTFILE "fitImage" -#define CONFIG_BOOTCOMMAND "run distro_bootcmd ; run net_nfs" #define CONFIG_HOSTNAME novena /* Physical Memory Map */ diff --git a/include/configs/omap3_igep00x0.h b/include/configs/omap3_igep00x0.h index 1a90cb5311..91b3a23d29 100644 --- a/include/configs/omap3_igep00x0.h +++ b/include/configs/omap3_igep00x0.h @@ -72,10 +72,6 @@ #define BOOT_TARGET_DEVICES(func) \ func(MMC, mmc, 0) -#define CONFIG_BOOTCOMMAND \ - "run findfdt; " \ - "run distro_bootcmd" - #include <config_distro_bootcmd.h> #define ENV_FINDFDT \ diff --git a/include/configs/sandbox.h b/include/configs/sandbox.h index 71c2ae3b39..f0426567fd 100644 --- a/include/configs/sandbox.h +++ b/include/configs/sandbox.h @@ -74,8 +74,6 @@ func(HOST, host, 1) \ func(HOST, host, 0) -#define CONFIG_BOOTCOMMAND "" - #include <config_distro_bootcmd.h> #define CONFIG_KEEP_SERVERADDR diff --git a/include/configs/ti_omap4_common.h b/include/configs/ti_omap4_common.h index 8994400de9..91b2132455 100644 --- a/include/configs/ti_omap4_common.h +++ b/include/configs/ti_omap4_common.h @@ -91,14 +91,6 @@ func(PXE, pxe, na) \ func(DHCP, dhcp, na) -#define CONFIG_BOOTCOMMAND \ - "if test ${boot_fit} -eq 1; then " \ - "run update_to_fit;" \ - "fi;" \ - "run findfdt; " \ - "run envboot; " \ - "run distro_bootcmd" - #include <config_distro_bootcmd.h> #include <environment/ti/mmc.h> diff --git a/include/configs/udoo_neo.h b/include/configs/udoo_neo.h index 9b0a20d3ad..3e46a42c71 100644 --- a/include/configs/udoo_neo.h +++ b/include/configs/udoo_neo.h @@ -60,10 +60,6 @@ func(MMC, mmc, 0) \ func(DHCP, dhcp, na) -#define CONFIG_BOOTCOMMAND \ - "run findfdt; " \ - "run distro_bootcmd" - #include <config_distro_bootcmd.h> /* Miscellaneous configurable options */ diff --git a/include/configs/vexpress_common.h b/include/configs/vexpress_common.h index ade7ba4a8a..294ca18186 100644 --- a/include/configs/vexpress_common.h +++ b/include/configs/vexpress_common.h @@ -177,10 +177,6 @@ #include <config_distro_defaults.h> /* Basic environment settings */ -#define CONFIG_BOOTCOMMAND \ - "run distro_bootcmd; " \ - "run bootflash; " - #define BOOT_TARGET_DEVICES(func) \ func(MMC, mmc, 1) \ func(MMC, mmc, 0) \ diff --git a/include/configs/wandboard.h b/include/configs/wandboard.h index 8fdfc0277d..97d193ba49 100644 --- a/include/configs/wandboard.h +++ b/include/configs/wandboard.h @@ -140,11 +140,6 @@ func(PXE, pxe, na) \ func(DHCP, dhcp, na) -#define CONFIG_BOOTCOMMAND \ - "run findfdt; " \ - "run finduuid; " \ - "run distro_bootcmd" - #include <config_distro_bootcmd.h> /* Physical Memory Map */ |