From mboxrd@z Thu Jan 1 00:00:00 1970 From: Lukasz Majewski Date: Thu, 9 Nov 2017 11:05:16 +0100 Subject: [U-Boot] [PATCH] Kconfig: Introduce USE_BOOTCOMMAND and migrate BOOTCOMMAND In-Reply-To: <1510010111-10468-1-git-send-email-trini@konsulko.com> References: <1510010111-10468-1-git-send-email-trini@konsulko.com> Message-ID: <20171109110516.3274af54@jawa> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Mon, 6 Nov 2017 18:15:11 -0500 Tom Rini wrote: > 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 > --- > Kconfig | 1 + > common/Kconfig | 17 +++++++++++++++++ > configs/am335x_evm_defconfig | 1 + > configs/am335x_evm_nor_defconfig | 1 + > configs/am335x_evm_norboot_defconfig | 1 + > configs/am335x_evm_spiboot_defconfig | 1 + > configs/am335x_evm_usbspl_defconfig | 1 + > configs/apalis-tk1_defconfig | 1 + > configs/duovero_defconfig | 1 + > configs/evb-rv1108_defconfig | 1 + > configs/igep0032_defconfig | 1 + > configs/igep00x0_defconfig | 1 + > configs/ls2080a_emu_defconfig | 1 + > configs/ls2080a_simu_defconfig | 1 + > configs/ls2080aqds_SECURE_BOOT_defconfig | 1 + > configs/ls2080aqds_defconfig | 1 + > configs/ls2080aqds_nand_defconfig | 1 + > configs/ls2080aqds_qspi_defconfig | 1 + > configs/ls2080aqds_sdcard_defconfig | 1 + > configs/ls2080ardb_SECURE_BOOT_defconfig | 1 + > configs/ls2080ardb_defconfig | 1 + > configs/ls2080ardb_nand_defconfig | 1 + > configs/ls2081ardb_defconfig | 1 + > configs/ls2088ardb_qspi_SECURE_BOOT_defconfig | 1 + > configs/ls2088ardb_qspi_defconfig | 1 + > configs/lsxhl_defconfig | 1 + > configs/marsboard_defconfig | 1 + > configs/mx6cuboxi_defconfig | 1 + > configs/novena_defconfig | 1 + > configs/omap3_beagle_defconfig | 1 + > configs/omap3_evm_defconfig | 1 + > configs/omap3_pandora_defconfig | 1 + > configs/omap4_panda_defconfig | 1 + > configs/omap4_sdp4430_defconfig | 1 + > configs/riotboard_defconfig | 1 + > configs/ti816x_evm_defconfig | 1 + > configs/udoo_neo_defconfig | 1 + > configs/usbarmory_defconfig | 1 + > configs/vexpress_aemv8a_dram_defconfig | 1 + > configs/vexpress_aemv8a_juno_defconfig | 1 + > configs/vexpress_aemv8a_semi_defconfig | 1 + > configs/vexpress_ca15_tc2_defconfig | 1 + > configs/vexpress_ca5x2_defconfig | 1 + > configs/vexpress_ca9x4_defconfig | 1 + > configs/wandboard_defconfig | 1 + > configs/zc5202_defconfig | 1 + > configs/zc5601_defconfig | 1 + > include/configs/am335x_evm.h | 9 --------- > include/configs/apalis-tk1.h | 4 ---- > include/configs/el6x_common.h | 4 ---- > include/configs/embestmx6boards.h | 4 ---- > include/configs/lsxl.h | 1 - > include/configs/mx6cuboxi.h | 5 ----- > include/configs/novena.h | 1 - > include/configs/omap3_igep00x0.h | 4 ---- > include/configs/sandbox.h | 2 -- > include/configs/ti_omap4_common.h | 8 -------- > include/configs/udoo_neo.h | 4 ---- > include/configs/vexpress_common.h | 4 ---- > include/configs/wandboard.h | 5 ----- > 60 files changed, 63 insertions(+), 55 deletions(-) > > diff --git a/Kconfig b/Kconfig > index e57fad45922b..9b8a8077993a 100644 > --- a/Kconfig > +++ b/Kconfig > @@ -66,6 +66,7 @@ config DISTRO_DEFAULTS > default y if ARCH_MESON > default y if ARCH_ROCKCHIP > default n > + imply USE_BOOTCOMMAND > select CMD_BOOTZ if ARM && !ARM64 > select CMD_BOOTI if ARM64 > select CMD_DHCP > diff --git a/common/Kconfig b/common/Kconfig > index f96a25f582ba..c50d6ebb2adf 100644 > --- a/common/Kconfig > +++ b/common/Kconfig > @@ -200,6 +200,23 @@ config BOOTARGS > CONFIG_BOOTARGS goes into the environment value > "bootargs". Note that this value will also override the "chosen" node > in FDT blob. > +config USE_BOOTCOMMAND > + bool "Enable a default value for bootcmd" > + help > + Provide a default value for the bootcmd entry in the > environment. If > + autoboot is enabled this is what will be run > automatically. Enable > + this option to be able to specify CONFIG_BOOTCOMMAND as a > string. If > + this option is disabled, CONFIG_BOOTCOMMAND will be > undefined and > + won't take any space in U-Boot image. > + > +config BOOTCOMMAND > + string "bootcmd value" > + depends on USE_BOOTCOMMAND > + default "run distro_bootcmd" if DISTRO_DEFAULTS > + help > + This is the string of commands that will be used as > bootcmd and if > + AUTOBOOT is set, automatically run. > + > menu "Console" > > config MENU > diff --git a/configs/am335x_evm_defconfig > b/configs/am335x_evm_defconfig index f1bfe1a2b29d..022fe583c71f 100644 > --- a/configs/am335x_evm_defconfig > +++ b/configs/am335x_evm_defconfig > @@ -4,6 +4,7 @@ CONFIG_TI_COMMON_CMD_OPTIONS=y > CONFIG_AM33XX=y > CONFIG_DEFAULT_DEVICE_TREE="am335x-evm" > CONFIG_DISTRO_DEFAULTS=y > +CONFIG_BOOTCOMMAND="if test ${boot_fit} -eq 1; then run > update_to_fit; fi; run findfdt; run init_console; run envboot; run > distro_bootcmd" CONFIG_SPL_LOAD_FIT=y CONFIG_SYS_CONSOLE_INFO_QUIET=y > CONFIG_VERSION_VARIABLE=y > diff --git a/configs/am335x_evm_nor_defconfig > b/configs/am335x_evm_nor_defconfig index 379c715fde85..2cca51452019 > 100644 --- a/configs/am335x_evm_nor_defconfig > +++ b/configs/am335x_evm_nor_defconfig > @@ -4,6 +4,7 @@ CONFIG_TI_COMMON_CMD_OPTIONS=y > CONFIG_AM33XX=y > CONFIG_NOR=y > CONFIG_DISTRO_DEFAULTS=y > +CONFIG_BOOTCOMMAND="if test ${boot_fit} -eq 1; then run > update_to_fit; fi; run findfdt; run init_console; run envboot; run > distro_bootcmd" CONFIG_SYS_CONSOLE_INFO_QUIET=y > CONFIG_VERSION_VARIABLE=y CONFIG_ARCH_MISC_INIT=y > diff --git a/configs/am335x_evm_norboot_defconfig > b/configs/am335x_evm_norboot_defconfig index > ee1b1934b537..1e3aee550481 100644 --- > a/configs/am335x_evm_norboot_defconfig +++ > b/configs/am335x_evm_norboot_defconfig @@ -6,6 +6,7 @@ > CONFIG_TI_COMMON_CMD_OPTIONS=y CONFIG_AM33XX=y > CONFIG_NOR=y > CONFIG_DISTRO_DEFAULTS=y > +CONFIG_BOOTCOMMAND="if test ${boot_fit} -eq 1; then run > update_to_fit; fi; run findfdt; run init_console; run envboot; run > distro_bootcmd" CONFIG_NOR_BOOT=y CONFIG_SYS_CONSOLE_INFO_QUIET=y > CONFIG_VERSION_VARIABLE=y > diff --git a/configs/am335x_evm_spiboot_defconfig > b/configs/am335x_evm_spiboot_defconfig index > 1170e50e7f43..2d3e916bf74c 100644 --- > a/configs/am335x_evm_spiboot_defconfig +++ > b/configs/am335x_evm_spiboot_defconfig @@ -6,6 +6,7 @@ CONFIG_AM33XX=y > CONFIG_SPL_SPI_FLASH_SUPPORT=y > CONFIG_SPL_SPI_SUPPORT=y > CONFIG_DISTRO_DEFAULTS=y > +CONFIG_BOOTCOMMAND="if test ${boot_fit} -eq 1; then run > update_to_fit; fi; run findfdt; run init_console; run envboot; run > distro_bootcmd" CONFIG_SYS_EXTRA_OPTIONS="SPI_BOOT" CONFIG_SPI_BOOT=y > CONFIG_SYS_CONSOLE_INFO_QUIET=y > diff --git a/configs/am335x_evm_usbspl_defconfig > b/configs/am335x_evm_usbspl_defconfig index > ebf952a1d5a2..fa7389c61393 100644 --- > a/configs/am335x_evm_usbspl_defconfig +++ > b/configs/am335x_evm_usbspl_defconfig @@ -4,6 +4,7 @@ > CONFIG_TI_COMMON_CMD_OPTIONS=y CONFIG_AM33XX=y > # CONFIG_SPL_NAND_SUPPORT is not set > CONFIG_DISTRO_DEFAULTS=y > +CONFIG_BOOTCOMMAND="if test ${boot_fit} -eq 1; then run > update_to_fit; fi; run findfdt; run init_console; run envboot; run > distro_bootcmd" # CONFIG_ANDROID_BOOT_IMAGE is not set > CONFIG_SYS_CONSOLE_INFO_QUIET=y CONFIG_VERSION_VARIABLE=y > diff --git a/configs/apalis-tk1_defconfig > b/configs/apalis-tk1_defconfig index a75a168e1557..c1227a32f89f 100644 > --- a/configs/apalis-tk1_defconfig > +++ b/configs/apalis-tk1_defconfig > @@ -6,6 +6,7 @@ CONFIG_DEFAULT_DEVICE_TREE="tegra124-apalis" > CONFIG_FIT=y > CONFIG_OF_SYSTEM_SETUP=y > CONFIG_BOOTDELAY=1 > +CONFIG_BOOTCOMMAND="run emmcboot; setenv fdtfile > ${soc}-apalis-${fdt_board}.dtb && run distro_bootcmd" > CONFIG_CONSOLE_MUX=y CONFIG_SYS_STDIO_DEREGISTER=y > CONFIG_VERSION_VARIABLE=y > diff --git a/configs/duovero_defconfig b/configs/duovero_defconfig > index b76da3e95afb..f52cbe71b162 100644 > --- a/configs/duovero_defconfig > +++ b/configs/duovero_defconfig > @@ -4,6 +4,7 @@ CONFIG_OMAP44XX=y > CONFIG_TARGET_DUOVERO=y > # CONFIG_SPL_NAND_SUPPORT is not set > CONFIG_DISTRO_DEFAULTS=y > +CONFIG_BOOTCOMMAND="if test ${boot_fit} -eq 1; then run > update_to_fit; fi; run findfdt; run init_console; run envboot; run > distro_bootcmd" CONFIG_SYS_CONSOLE_IS_IN_ENV=y > CONFIG_SYS_CONSOLE_INFO_QUIET=y CONFIG_VERSION_VARIABLE=y > diff --git a/configs/evb-rv1108_defconfig > b/configs/evb-rv1108_defconfig index 239676b2a33d..a59d89ee957e 100644 > --- a/configs/evb-rv1108_defconfig > +++ b/configs/evb-rv1108_defconfig > @@ -4,6 +4,7 @@ CONFIG_ROCKCHIP_RV1108=y > CONFIG_TARGET_EVB_RV1108=y > CONFIG_DEFAULT_DEVICE_TREE="rv1108-evb" > CONFIG_DEBUG_UART=y > +# CONFIG_USE_BOOTCOMMAND is not set > # CONFIG_DISPLAY_CPUINFO is not set > CONFIG_FASTBOOT_BUF_ADDR=0x62000000 > CONFIG_FASTBOOT_BUF_SIZE=0x08000000 > diff --git a/configs/igep0032_defconfig b/configs/igep0032_defconfig > index 052103945384..c295deaa42b6 100644 > --- a/configs/igep0032_defconfig > +++ b/configs/igep0032_defconfig > @@ -2,6 +2,7 @@ CONFIG_ARM=y > CONFIG_ARCH_OMAP2PLUS=y > CONFIG_TARGET_OMAP3_IGEP00X0=y > CONFIG_DISTRO_DEFAULTS=y > +CONFIG_BOOTCOMMAND="run findfdt; run distro_bootcmd" > CONFIG_OF_BOARD_SETUP=y > CONFIG_BOOTDELAY=3 > CONFIG_SYS_CONSOLE_IS_IN_ENV=y > diff --git a/configs/igep00x0_defconfig b/configs/igep00x0_defconfig > index a2f29ccfd408..479b18396b1c 100644 > --- a/configs/igep00x0_defconfig > +++ b/configs/igep00x0_defconfig > @@ -2,6 +2,7 @@ CONFIG_ARM=y > CONFIG_ARCH_OMAP2PLUS=y > CONFIG_TARGET_OMAP3_IGEP00X0=y > CONFIG_DISTRO_DEFAULTS=y > +CONFIG_BOOTCOMMAND="run findfdt; run distro_bootcmd" > CONFIG_OF_BOARD_SETUP=y > CONFIG_BOOTDELAY=3 > CONFIG_SYS_CONSOLE_IS_IN_ENV=y > diff --git a/configs/ls2080a_emu_defconfig > b/configs/ls2080a_emu_defconfig index 516c8b9de590..80e3e8982af6 > 100644 --- a/configs/ls2080a_emu_defconfig > +++ b/configs/ls2080a_emu_defconfig > @@ -9,6 +9,7 @@ CONFIG_SYS_EXTRA_OPTIONS="EMU" > CONFIG_BOOTDELAY=10 > CONFIG_USE_BOOTARGS=y > CONFIG_BOOTARGS="console=ttyS0,115200 root=/dev/ram0 > earlycon=uart8250,mmio,0x21c0500 ramdisk_size=0x2000000 > default_hugepagesz=2m hugepagesz=2m hugepages=256" +# > CONFIG_USE_BOOTCOMMAND is not set # CONFIG_DISPLAY_BOARDINFO is not > set # CONFIG_CMD_CONSOLE is not set # CONFIG_CMD_XIMG is not set > diff --git a/configs/ls2080a_simu_defconfig > b/configs/ls2080a_simu_defconfig index 94ecdbae2e8d..cdc80c2a2802 > 100644 --- a/configs/ls2080a_simu_defconfig > +++ b/configs/ls2080a_simu_defconfig > @@ -9,6 +9,7 @@ CONFIG_SYS_EXTRA_OPTIONS="SIMU" > CONFIG_BOOTDELAY=10 > CONFIG_USE_BOOTARGS=y > CONFIG_BOOTARGS="console=ttyS0,115200 root=/dev/ram0 > earlycon=uart8250,mmio,0x21c0500 ramdisk_size=0x2000000 > default_hugepagesz=2m hugepagesz=2m hugepages=256" +# > CONFIG_USE_BOOTCOMMAND is not set # CONFIG_DISPLAY_BOARDINFO is not > set # CONFIG_CMD_CONSOLE is not set # CONFIG_CMD_XIMG is not set > diff --git a/configs/ls2080aqds_SECURE_BOOT_defconfig > b/configs/ls2080aqds_SECURE_BOOT_defconfig index > 2937ba9fa40e..ee6043e704dc 100644 --- > a/configs/ls2080aqds_SECURE_BOOT_defconfig +++ > b/configs/ls2080aqds_SECURE_BOOT_defconfig @@ -10,6 +10,7 @@ > CONFIG_OF_STDOUT_VIA_ALIAS=y CONFIG_BOOTDELAY=10 > CONFIG_USE_BOOTARGS=y > CONFIG_BOOTARGS="console=ttyS0,115200 root=/dev/ram0 > earlycon=uart8250,mmio,0x21c0500 ramdisk_size=0x2000000 > default_hugepagesz=2m hugepagesz=2m hugepages=256" +# > CONFIG_USE_BOOTCOMMAND is not set CONFIG_CMD_IMLS=y > CONFIG_CMD_GREPENV=y CONFIG_CMD_EEPROM=y > diff --git a/configs/ls2080aqds_defconfig > b/configs/ls2080aqds_defconfig index 58eea7f37258..f8afa365b11f 100644 > --- a/configs/ls2080aqds_defconfig > +++ b/configs/ls2080aqds_defconfig > @@ -9,6 +9,7 @@ CONFIG_OF_STDOUT_VIA_ALIAS=y > CONFIG_BOOTDELAY=10 > CONFIG_USE_BOOTARGS=y > CONFIG_BOOTARGS="console=ttyS0,115200 root=/dev/ram0 > earlycon=uart8250,mmio,0x21c0500 ramdisk_size=0x2000000 > default_hugepagesz=2m hugepagesz=2m hugepages=256" +# > CONFIG_USE_BOOTCOMMAND is not set CONFIG_CMD_IMLS=y > CONFIG_CMD_GREPENV=y CONFIG_CMD_EEPROM=y > diff --git a/configs/ls2080aqds_nand_defconfig > b/configs/ls2080aqds_nand_defconfig index e6f1e533c22b..6d9467175beb > 100644 --- a/configs/ls2080aqds_nand_defconfig > +++ b/configs/ls2080aqds_nand_defconfig > @@ -14,6 +14,7 @@ CONFIG_NAND_BOOT=y > CONFIG_BOOTDELAY=10 > CONFIG_USE_BOOTARGS=y > CONFIG_BOOTARGS="console=ttyS0,115200 root=/dev/ram0 > earlycon=uart8250,mmio,0x21c0500 ramdisk_size=0x2000000 > default_hugepagesz=2m hugepagesz=2m hugepages=256" +# > CONFIG_USE_BOOTCOMMAND is not set CONFIG_SPL=y > CONFIG_SPL_ENV_SUPPORT=y CONFIG_SPL_I2C_SUPPORT=y > diff --git a/configs/ls2080aqds_qspi_defconfig > b/configs/ls2080aqds_qspi_defconfig index 79307f835976..3fb47c5e3783 > 100644 --- a/configs/ls2080aqds_qspi_defconfig > +++ b/configs/ls2080aqds_qspi_defconfig > @@ -10,6 +10,7 @@ CONFIG_QSPI_BOOT=y > CONFIG_BOOTDELAY=10 > CONFIG_USE_BOOTARGS=y > CONFIG_BOOTARGS="console=ttyS0,115200 root=/dev/ram0 > earlycon=uart8250,mmio,0x21c0500 ramdisk_size=0x2000000 > default_hugepagesz=2m hugepagesz=2m hugepages=256" +# > CONFIG_USE_BOOTCOMMAND is not set CONFIG_CMD_GREPENV=y > CONFIG_CMD_EEPROM=y CONFIG_CMD_GPT=y > diff --git a/configs/ls2080aqds_sdcard_defconfig > b/configs/ls2080aqds_sdcard_defconfig index > 0e8b7d0b192c..2ae7014bb804 100644 --- > a/configs/ls2080aqds_sdcard_defconfig +++ > b/configs/ls2080aqds_sdcard_defconfig @@ -15,6 +15,7 @@ > CONFIG_SD_BOOT=y CONFIG_BOOTDELAY=10 > CONFIG_USE_BOOTARGS=y > CONFIG_BOOTARGS="console=ttyS0,115200 root=/dev/ram0 > earlycon=uart8250,mmio,0x21c0500 ramdisk_size=0x2000000 > default_hugepagesz=2m hugepagesz=2m hugepages=256" +# > CONFIG_USE_BOOTCOMMAND is not set CONFIG_SPL=y > CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR=y > CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR=0x8b0 diff --git > a/configs/ls2080ardb_SECURE_BOOT_defconfig > b/configs/ls2080ardb_SECURE_BOOT_defconfig index > a8e4fdd50952..01fc9e65b7d6 100644 --- > a/configs/ls2080ardb_SECURE_BOOT_defconfig +++ > b/configs/ls2080ardb_SECURE_BOOT_defconfig @@ -10,6 +10,7 @@ > CONFIG_OF_STDOUT_VIA_ALIAS=y CONFIG_BOOTDELAY=10 CONFIG_USE_BOOTARGS=y > CONFIG_BOOTARGS="console=ttyS1,115200 root=/dev/ram0 > earlycon=uart8250,mmio,0x21c0600 ramdisk_size=0x2000000 > default_hugepagesz=2m hugepagesz=2m hugepages=256" +# > CONFIG_USE_BOOTCOMMAND is not set CONFIG_CMD_IMLS=y > CONFIG_CMD_GREPENV=y CONFIG_CMD_EEPROM=y > diff --git a/configs/ls2080ardb_defconfig > b/configs/ls2080ardb_defconfig index 0fd3fee3b675..36d23132198c 100644 > --- a/configs/ls2080ardb_defconfig > +++ b/configs/ls2080ardb_defconfig > @@ -9,6 +9,7 @@ CONFIG_OF_STDOUT_VIA_ALIAS=y > CONFIG_BOOTDELAY=10 > CONFIG_USE_BOOTARGS=y > CONFIG_BOOTARGS="console=ttyS1,115200 root=/dev/ram0 > earlycon=uart8250,mmio,0x21c0600 ramdisk_size=0x2000000 > default_hugepagesz=2m hugepagesz=2m hugepages=256" +# > CONFIG_USE_BOOTCOMMAND is not set CONFIG_CMD_IMLS=y > CONFIG_CMD_GREPENV=y CONFIG_CMD_EEPROM=y > diff --git a/configs/ls2080ardb_nand_defconfig > b/configs/ls2080ardb_nand_defconfig index 0f248a783309..0c2405183601 > 100644 --- a/configs/ls2080ardb_nand_defconfig > +++ b/configs/ls2080ardb_nand_defconfig > @@ -14,6 +14,7 @@ CONFIG_NAND_BOOT=y > CONFIG_BOOTDELAY=10 > CONFIG_USE_BOOTARGS=y > CONFIG_BOOTARGS="console=ttyS1,115200 root=/dev/ram0 > earlycon=uart8250,mmio,0x21c0600 ramdisk_size=0x2000000 > default_hugepagesz=2m hugepagesz=2m hugepages=256" +# > CONFIG_USE_BOOTCOMMAND is not set CONFIG_SPL=y > CONFIG_SPL_ENV_SUPPORT=y CONFIG_SPL_I2C_SUPPORT=y > diff --git a/configs/ls2081ardb_defconfig > b/configs/ls2081ardb_defconfig index 1848d3a0c19f..1ab8f18cd34e 100644 > --- a/configs/ls2081ardb_defconfig > +++ b/configs/ls2081ardb_defconfig > @@ -11,6 +11,7 @@ CONFIG_QSPI_BOOT=y > CONFIG_BOOTDELAY=10 > CONFIG_USE_BOOTARGS=y > CONFIG_BOOTARGS="console=ttyS1,115200 root=/dev/ram0 > earlycon=uart8250,mmio,0x21c0600 ramdisk_size=0x2000000 > default_hugepagesz=2m hugepagesz=2m hugepages=256" +# > CONFIG_USE_BOOTCOMMAND is not set CONFIG_CMD_GREPENV=y > CONFIG_CMD_GPT=y CONFIG_CMD_I2C=y > diff --git a/configs/ls2088ardb_qspi_SECURE_BOOT_defconfig > b/configs/ls2088ardb_qspi_SECURE_BOOT_defconfig index > eeb0d49eccab..b53f5757202b 100644 --- > a/configs/ls2088ardb_qspi_SECURE_BOOT_defconfig +++ > b/configs/ls2088ardb_qspi_SECURE_BOOT_defconfig @@ -10,6 +10,7 @@ > CONFIG_OF_BOARD_SETUP=y CONFIG_OF_STDOUT_VIA_ALIAS=y > CONFIG_QSPI_BOOT=y > CONFIG_BOOTDELAY=10 > +# CONFIG_USE_BOOTCOMMAND is not set > CONFIG_CMD_GREPENV=y > CONFIG_CMD_GPT=y > CONFIG_CMD_I2C=y > diff --git a/configs/ls2088ardb_qspi_defconfig > b/configs/ls2088ardb_qspi_defconfig index 115a79345384..277c7de558bb > 100644 --- a/configs/ls2088ardb_qspi_defconfig > +++ b/configs/ls2088ardb_qspi_defconfig > @@ -11,6 +11,7 @@ CONFIG_QSPI_BOOT=y > CONFIG_BOOTDELAY=10 > CONFIG_USE_BOOTARGS=y > CONFIG_BOOTARGS="console=ttyS1,115200 root=/dev/ram0 > earlycon=uart8250,mmio,0x21c0600 ramdisk_size=0x2000000 > default_hugepagesz=2m hugepagesz=2m hugepages=256" +# > CONFIG_USE_BOOTCOMMAND is not set CONFIG_CMD_GREPENV=y > CONFIG_CMD_GPT=y CONFIG_CMD_I2C=y > diff --git a/configs/lsxhl_defconfig b/configs/lsxhl_defconfig > index 5f2ac4fc99d8..d6ba4be28653 100644 > --- a/configs/lsxhl_defconfig > +++ b/configs/lsxhl_defconfig > @@ -8,6 +8,7 @@ CONFIG_API=y > CONFIG_BOOTDELAY=3 > CONFIG_USE_BOOTARGS=y > CONFIG_BOOTARGS="console=ttyS0,115200 root=/dev/sda2" > +CONFIG_BOOTCOMMAND="run bootcmd_${bootsource}" > CONFIG_SYS_CONSOLE_IS_IN_ENV=y > CONFIG_SYS_CONSOLE_INFO_QUIET=y > # CONFIG_DISPLAY_BOARDINFO is not set > diff --git a/configs/marsboard_defconfig b/configs/marsboard_defconfig > index e73d62261d46..4037921e948a 100644 > --- a/configs/marsboard_defconfig > +++ b/configs/marsboard_defconfig > @@ -2,6 +2,7 @@ CONFIG_ARM=y > CONFIG_ARCH_MX6=y > CONFIG_TARGET_EMBESTMX6BOARDS=y > CONFIG_DISTRO_DEFAULTS=y > +CONFIG_BOOTCOMMAND="run finduuid; run distro_bootcmd" > CONFIG_SYS_EXTRA_OPTIONS="IMX_CONFIG=board/boundary/nitrogen6x/nitrogen6q.cfg,MX6Q,DDR_MB=1024" > # CONFIG_CONSOLE_MUX is not set > CONFIG_SYS_CONSOLE_IS_IN_ENV=y > diff --git a/configs/mx6cuboxi_defconfig b/configs/mx6cuboxi_defconfig > index 97a79e53f6b6..bd7917e51e43 100644 > --- a/configs/mx6cuboxi_defconfig > +++ b/configs/mx6cuboxi_defconfig > @@ -11,6 +11,7 @@ CONFIG_SPL_WATCHDOG_SUPPORT=y > # CONFIG_CMD_BMODE is not set > CONFIG_CMD_HDMIDETECT=y > CONFIG_DISTRO_DEFAULTS=y > +CONFIG_BOOTCOMMAND="run findfdt; run finduuid; run distro_bootcmd" > CONFIG_SYS_EXTRA_OPTIONS="IMX_CONFIG=arch/arm/mach-imx/spl_sd.cfg,MX6QDL" > # CONFIG_SYS_STDIO_DEREGISTER is not set > CONFIG_BOARD_EARLY_INIT_F=y > diff --git a/configs/novena_defconfig b/configs/novena_defconfig > index b6a03dc3e164..3084fef89c38 100644 > --- a/configs/novena_defconfig > +++ b/configs/novena_defconfig > @@ -12,6 +12,7 @@ CONFIG_SPL_WATCHDOG_SUPPORT=y > CONFIG_SPL_FAT_SUPPORT=y > CONFIG_CMD_HDMIDETECT=y > CONFIG_DISTRO_DEFAULTS=y > +CONFIG_BOOTCOMMAND="run distro_bootcmd ; run net_nfs" > CONFIG_FIT=y > CONFIG_SYS_EXTRA_OPTIONS="IMX_CONFIG=arch/arm/mach-imx/spl_sd.cfg,MX6Q" > CONFIG_USE_BOOTARGS=y > diff --git a/configs/omap3_beagle_defconfig > b/configs/omap3_beagle_defconfig index 1dd1b31f2e85..c005ed0a754e > 100644 --- a/configs/omap3_beagle_defconfig > +++ b/configs/omap3_beagle_defconfig > @@ -3,6 +3,7 @@ CONFIG_ARCH_OMAP2PLUS=y > CONFIG_SYS_TEXT_BASE=0x80100000 > CONFIG_TARGET_OMAP3_BEAGLE=y > CONFIG_DISTRO_DEFAULTS=y > +# CONFIG_USE_BOOTCOMMAND is not set > CONFIG_SYS_CONSOLE_INFO_QUIET=y > CONFIG_VERSION_VARIABLE=y > CONFIG_SPL=y > diff --git a/configs/omap3_evm_defconfig b/configs/omap3_evm_defconfig > index 5103e9fd8d5a..f67bcb189531 100644 > --- a/configs/omap3_evm_defconfig > +++ b/configs/omap3_evm_defconfig > @@ -6,6 +6,7 @@ CONFIG_SYS_MALLOC_F_LEN=0x2000 > CONFIG_SYS_MPUCLK=720 > CONFIG_TARGET_OMAP3_EVM=y > CONFIG_DISTRO_DEFAULTS=y > +# CONFIG_USE_BOOTCOMMAND is not set > CONFIG_BOOTDELAY=3 > CONFIG_SYS_CONSOLE_INFO_QUIET=y > CONFIG_DEFAULT_FDT_FILE="omap3-evm.dtb" > diff --git a/configs/omap3_pandora_defconfig > b/configs/omap3_pandora_defconfig index c34088d7017a..62a6b0ff7044 > 100644 --- a/configs/omap3_pandora_defconfig > +++ b/configs/omap3_pandora_defconfig > @@ -3,6 +3,7 @@ CONFIG_ARCH_OMAP2PLUS=y > CONFIG_SYS_TEXT_BASE=0x80008000 > CONFIG_TARGET_OMAP3_PANDORA=y > CONFIG_DISTRO_DEFAULTS=y > +# CONFIG_USE_BOOTCOMMAND is not set > CONFIG_SYS_CONSOLE_IS_IN_ENV=y > CONFIG_SYS_CONSOLE_INFO_QUIET=y > CONFIG_VERSION_VARIABLE=y > diff --git a/configs/omap4_panda_defconfig > b/configs/omap4_panda_defconfig index d208d0ca8ecf..0faea774aec5 > 100644 --- a/configs/omap4_panda_defconfig > +++ b/configs/omap4_panda_defconfig > @@ -4,6 +4,7 @@ CONFIG_OMAP44XX=y > CONFIG_TARGET_OMAP4_PANDA=y > # CONFIG_SPL_NAND_SUPPORT is not set > CONFIG_DISTRO_DEFAULTS=y > +CONFIG_BOOTCOMMAND="if test ${boot_fit} -eq 1; then run > update_to_fit; fi; run findfdt; run init_console; run envboot; run > distro_bootcmd" CONFIG_SYS_CONSOLE_IS_IN_ENV=y > CONFIG_SYS_CONSOLE_INFO_QUIET=y CONFIG_VERSION_VARIABLE=y > diff --git a/configs/omap4_sdp4430_defconfig > b/configs/omap4_sdp4430_defconfig index c92b842e8de1..b7ba1f30b61f > 100644 --- a/configs/omap4_sdp4430_defconfig > +++ b/configs/omap4_sdp4430_defconfig > @@ -7,6 +7,7 @@ CONFIG_TARGET_OMAP4_SDP4430=y > CONFIG_CMD_BAT=y > # CONFIG_SPL_NAND_SUPPORT is not set > CONFIG_DISTRO_DEFAULTS=y > +CONFIG_BOOTCOMMAND="if test ${boot_fit} -eq 1; then run > update_to_fit; fi; run findfdt; run init_console; run envboot; run > distro_bootcmd" CONFIG_SYS_CONSOLE_IS_IN_ENV=y > CONFIG_SYS_CONSOLE_INFO_QUIET=y CONFIG_VERSION_VARIABLE=y > diff --git a/configs/riotboard_defconfig b/configs/riotboard_defconfig > index 5855c6083b14..da5e0fc74e20 100644 > --- a/configs/riotboard_defconfig > +++ b/configs/riotboard_defconfig > @@ -2,6 +2,7 @@ CONFIG_ARM=y > CONFIG_ARCH_MX6=y > CONFIG_TARGET_EMBESTMX6BOARDS=y > CONFIG_DISTRO_DEFAULTS=y > +CONFIG_BOOTCOMMAND="run finduuid; run distro_bootcmd" > CONFIG_SYS_EXTRA_OPTIONS="IMX_CONFIG=board/boundary/nitrogen6x/nitrogen6s1g.cfg,MX6S,DDR_MB=1024" > # CONFIG_CONSOLE_MUX is not set > CONFIG_SYS_CONSOLE_IS_IN_ENV=y > diff --git a/configs/ti816x_evm_defconfig > b/configs/ti816x_evm_defconfig index 812b4995ef94..608b5df85d6a 100644 > --- a/configs/ti816x_evm_defconfig > +++ b/configs/ti816x_evm_defconfig > @@ -15,6 +15,7 @@ CONFIG_DISTRO_DEFAULTS=y > CONFIG_BOOTDELAY=3 > CONFIG_USE_BOOTARGS=y > CONFIG_BOOTARGS="console=ttyO2,115200n8 noinitrd earlyprintk" > +# CONFIG_USE_BOOTCOMMAND is not set > CONFIG_SYS_CONSOLE_INFO_QUIET=y > CONFIG_VERSION_VARIABLE=y > # CONFIG_DISPLAY_BOARDINFO is not set > diff --git a/configs/udoo_neo_defconfig b/configs/udoo_neo_defconfig > index 2f75361d5d93..41345865f33c 100644 > --- a/configs/udoo_neo_defconfig > +++ b/configs/udoo_neo_defconfig > @@ -10,6 +10,7 @@ CONFIG_SPL_LIBDISK_SUPPORT=y > CONFIG_SPL_WATCHDOG_SUPPORT=y > # CONFIG_CMD_BMODE is not set > CONFIG_DISTRO_DEFAULTS=y > +CONFIG_BOOTCOMMAND="run findfdt; run distro_bootcmd" > CONFIG_SYS_EXTRA_OPTIONS="IMX_CONFIG=arch/arm/mach-imx/spl_sd.cfg" > CONFIG_BOARD_EARLY_INIT_F=y > CONFIG_SPL=y > diff --git a/configs/usbarmory_defconfig b/configs/usbarmory_defconfig > index cc276b79157f..99cfbd72ebcf 100644 > --- a/configs/usbarmory_defconfig > +++ b/configs/usbarmory_defconfig > @@ -3,6 +3,7 @@ CONFIG_ARCH_MX5=y > CONFIG_TARGET_USBARMORY=y > # CONFIG_CMD_BMODE is not set > CONFIG_DISTRO_DEFAULTS=y > +# CONFIG_USE_BOOTCOMMAND is not set > CONFIG_CMD_MEMTEST=y > CONFIG_CMD_FUSE=y > CONFIG_CMD_I2C=y > diff --git a/configs/vexpress_aemv8a_dram_defconfig > b/configs/vexpress_aemv8a_dram_defconfig index > a767d99ab06b..115cb354be2f 100644 --- > a/configs/vexpress_aemv8a_dram_defconfig +++ > b/configs/vexpress_aemv8a_dram_defconfig @@ -6,6 +6,7 @@ > CONFIG_DISTRO_DEFAULTS=y CONFIG_BOOTDELAY=1 > CONFIG_USE_BOOTARGS=y > CONFIG_BOOTARGS="console=ttyAMA0 earlyprintk=pl011,0x1c090000 debug > user_debug=31 androidboot.hardware=fvpbase root=/dev/vda2 rw rootwait > loglevel=9" +# CONFIG_USE_BOOTCOMMAND is not set # > CONFIG_DISPLAY_CPUINFO is not set # CONFIG_DISPLAY_BOARDINFO is not > set CONFIG_SYS_PROMPT="VExpress64# " > diff --git a/configs/vexpress_aemv8a_juno_defconfig > b/configs/vexpress_aemv8a_juno_defconfig index > b48e749e2865..06f7067a6a40 100644 --- > a/configs/vexpress_aemv8a_juno_defconfig +++ > b/configs/vexpress_aemv8a_juno_defconfig @@ -6,6 +6,7 @@ > CONFIG_DISTRO_DEFAULTS=y CONFIG_BOOTDELAY=1 > CONFIG_USE_BOOTARGS=y > CONFIG_BOOTARGS="console=ttyAMA0,115200n8 root=/dev/sda2 rw rootwait > earlyprintk=pl011,0x7ff80000 debug user_debug=31 > androidboot.hardware=juno loglevel=9" +# CONFIG_USE_BOOTCOMMAND is > not set # CONFIG_DISPLAY_CPUINFO is not set # > CONFIG_DISPLAY_BOARDINFO is not set CONFIG_SYS_PROMPT="VExpress64# " > diff --git a/configs/vexpress_aemv8a_semi_defconfig > b/configs/vexpress_aemv8a_semi_defconfig index > 62602dba0d70..5bf018407bf3 100644 --- > a/configs/vexpress_aemv8a_semi_defconfig +++ > b/configs/vexpress_aemv8a_semi_defconfig @@ -6,6 +6,7 @@ > CONFIG_DISTRO_DEFAULTS=y CONFIG_BOOTDELAY=1 > CONFIG_USE_BOOTARGS=y > CONFIG_BOOTARGS="console=ttyAMA0 earlyprintk=pl011,0x1c090000 debug > user_debug=31 loglevel=9" +# CONFIG_USE_BOOTCOMMAND is not set > # CONFIG_DISPLAY_CPUINFO is not set > # CONFIG_DISPLAY_BOARDINFO is not set > CONFIG_SYS_PROMPT="VExpress64# " > diff --git a/configs/vexpress_ca15_tc2_defconfig > b/configs/vexpress_ca15_tc2_defconfig index > 9303f89bb463..4a0fb5e548d9 100644 --- > a/configs/vexpress_ca15_tc2_defconfig +++ > b/configs/vexpress_ca15_tc2_defconfig @@ -1,6 +1,7 @@ > CONFIG_ARM=y > CONFIG_TARGET_VEXPRESS_CA15_TC2=y > CONFIG_DISTRO_DEFAULTS=y > +CONFIG_BOOTCOMMAND="run distro_bootcmd; run bootflash" > CONFIG_OF_BOARD_SETUP=y > # CONFIG_DISPLAY_CPUINFO is not set > # CONFIG_DISPLAY_BOARDINFO is not set > diff --git a/configs/vexpress_ca5x2_defconfig > b/configs/vexpress_ca5x2_defconfig index 3f8bc9cc1347..68d08a0d4453 > 100644 --- a/configs/vexpress_ca5x2_defconfig > +++ b/configs/vexpress_ca5x2_defconfig > @@ -1,6 +1,7 @@ > CONFIG_ARM=y > CONFIG_TARGET_VEXPRESS_CA5X2=y > CONFIG_DISTRO_DEFAULTS=y > +CONFIG_BOOTCOMMAND="run distro_bootcmd; run bootflash" > # CONFIG_DISPLAY_CPUINFO is not set > # CONFIG_DISPLAY_BOARDINFO is not set > # CONFIG_CMD_CONSOLE is not set > diff --git a/configs/vexpress_ca9x4_defconfig > b/configs/vexpress_ca9x4_defconfig index 4cbc96237312..4f5eae3faec3 > 100644 --- a/configs/vexpress_ca9x4_defconfig > +++ b/configs/vexpress_ca9x4_defconfig > @@ -1,6 +1,7 @@ > CONFIG_ARM=y > CONFIG_TARGET_VEXPRESS_CA9X4=y > CONFIG_DISTRO_DEFAULTS=y > +CONFIG_BOOTCOMMAND="run distro_bootcmd; run bootflash" > # CONFIG_DISPLAY_CPUINFO is not set > # CONFIG_DISPLAY_BOARDINFO is not set > # CONFIG_CMD_CONSOLE is not set > diff --git a/configs/wandboard_defconfig b/configs/wandboard_defconfig > index 23a6403d5279..d053db743ed8 100644 > --- a/configs/wandboard_defconfig > +++ b/configs/wandboard_defconfig > @@ -10,6 +10,7 @@ CONFIG_SPL_LIBDISK_SUPPORT=y > CONFIG_SPL_WATCHDOG_SUPPORT=y > CONFIG_CMD_HDMIDETECT=y > CONFIG_DISTRO_DEFAULTS=y > +CONFIG_BOOTCOMMAND="run findfdt; run finduuid; run distro_bootcmd" > CONFIG_SYS_EXTRA_OPTIONS="IMX_CONFIG=arch/arm/mach-imx/spl_sd.cfg,MX6QDL" > # CONFIG_CONSOLE_MUX is not set > CONFIG_SYS_CONSOLE_IS_IN_ENV=y > diff --git a/configs/zc5202_defconfig b/configs/zc5202_defconfig > index a0dc7fd63d61..2cacf779ec1c 100644 > --- a/configs/zc5202_defconfig > +++ b/configs/zc5202_defconfig > @@ -11,6 +11,7 @@ CONFIG_SPL_SPI_FLASH_SUPPORT=y > CONFIG_SPL_SPI_SUPPORT=y > CONFIG_SPL_WATCHDOG_SUPPORT=y > CONFIG_DISTRO_DEFAULTS=y > +CONFIG_BOOTCOMMAND="run findfdt; run distro_bootcmd" > CONFIG_SYS_EXTRA_OPTIONS="IMX_CONFIG=arch/arm/mach-imx/spl_sd.cfg,MX6Q" > CONFIG_BOOTDELAY=3 > CONFIG_DEFAULT_FDT_FILE="imx6q-zc5202.dtb" > diff --git a/configs/zc5601_defconfig b/configs/zc5601_defconfig > index f8a5fde9b3ad..17a7176ce5bf 100644 > --- a/configs/zc5601_defconfig > +++ b/configs/zc5601_defconfig > @@ -11,6 +11,7 @@ CONFIG_SPL_SPI_FLASH_SUPPORT=y > CONFIG_SPL_SPI_SUPPORT=y > CONFIG_SPL_WATCHDOG_SUPPORT=y > CONFIG_DISTRO_DEFAULTS=y > +CONFIG_BOOTCOMMAND="run findfdt; run distro_bootcmd" > CONFIG_SYS_EXTRA_OPTIONS="IMX_CONFIG=arch/arm/mach-imx/spl_sd.cfg,MX6Q" > CONFIG_BOOTDELAY=3 > CONFIG_DEFAULT_FDT_FILE="imx6q-zc5601.dtb" > diff --git a/include/configs/am335x_evm.h > b/include/configs/am335x_evm.h index 0e082648581c..afd94af3d71e 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 > > #ifndef CONFIG_SPL_BUILD > diff --git a/include/configs/apalis-tk1.h > b/include/configs/apalis-tk1.h index e6d119eb06fe..c13e446fcec6 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 01d75d6aa291..909981cf1019 > 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 > > #define CONFIG_ARP_TIMEOUT 200UL > diff --git a/include/configs/embestmx6boards.h > b/include/configs/embestmx6boards.h index 3f128e67cd8e..08a29223b20c > 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 > > #define CONSOLE_STDIN_SETTINGS \ > diff --git a/include/configs/lsxl.h b/include/configs/lsxl.h > index 5d5851f5168a..0793fcb9e40d 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 7fefe8edcb81..6b42b2b3c188 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 3acc8c62dee6..dd0e6370629f 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 1a90cb5311af..91b3a23d29f4 > 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 > > #define ENV_FINDFDT \ > diff --git a/include/configs/sandbox.h b/include/configs/sandbox.h > index 71c2ae3b3951..f0426567fdc3 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 > > #define CONFIG_KEEP_SERVERADDR > diff --git a/include/configs/ti_omap4_common.h > b/include/configs/ti_omap4_common.h index 8994400de9b9..91b2132455d9 > 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 > #include > > diff --git a/include/configs/udoo_neo.h b/include/configs/udoo_neo.h > index 9b0a20d3ad4b..3e46a42c71f9 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 > > /* Miscellaneous configurable options */ > diff --git a/include/configs/vexpress_common.h > b/include/configs/vexpress_common.h index ade7ba4a8a34..294ca181865c > 100644 --- a/include/configs/vexpress_common.h > +++ b/include/configs/vexpress_common.h > @@ -177,10 +177,6 @@ > #include > > /* 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 8fdfc0277d5c..97d193ba49c6 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 > > /* Physical Memory Map */ Tom, thanks for this effort. Reviewed-by: Lukasz Majewski Best regards, Lukasz Majewski -- DENX Software Engineering GmbH, Managing Director: Wolfgang Denk HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 488 bytes Desc: OpenPGP digital signature URL: