The bfetch command currently adds 5189 bytes to multi_v8_defconfig's barebox-dt-2nd.img, but this is expected to grow as we add more structio support.
Therefore the command is not enabled by default, but let's enable it for the more popular defconfigs. Signed-off-by: Ahmad Fatoum <a.fat...@barebox.org> --- v1 -> v2: - no change --- arch/arm/configs/multi_v7_defconfig | 1 + arch/arm/configs/multi_v8_defconfig | 1 + arch/riscv/configs/rv64i_defconfig | 1 + arch/riscv/configs/virt32_defconfig | 1 + arch/sandbox/configs/sandbox_defconfig | 1 + 5 files changed, 5 insertions(+) diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig index 58f3a7a9754d..f198a1ddac72 100644 --- a/arch/arm/configs/multi_v7_defconfig +++ b/arch/arm/configs/multi_v7_defconfig @@ -133,6 +133,7 @@ CONFIG_CMD_IMD=y CONFIG_CMD_MEMINFO=y CONFIG_CMD_ARM_MMUINFO=y CONFIG_CMD_REGULATOR=y +CONFIG_CMD_BFETCH=y CONFIG_CMD_MMC=y CONFIG_CMD_MMC_EXTCSD=y CONFIG_CMD_FCB=y diff --git a/arch/arm/configs/multi_v8_defconfig b/arch/arm/configs/multi_v8_defconfig index f107a92b908b..314f06ce23ec 100644 --- a/arch/arm/configs/multi_v8_defconfig +++ b/arch/arm/configs/multi_v8_defconfig @@ -77,6 +77,7 @@ CONFIG_CMD_IMD=y CONFIG_CMD_MEMINFO=y CONFIG_CMD_ARM_MMUINFO=y CONFIG_CMD_REGULATOR=y +CONFIG_CMD_BFETCH=y CONFIG_CMD_MMC_EXTCSD=y CONFIG_CMD_POLLER=y CONFIG_CMD_SLICE=y diff --git a/arch/riscv/configs/rv64i_defconfig b/arch/riscv/configs/rv64i_defconfig index 68cb86676a08..12ced940c5c4 100644 --- a/arch/riscv/configs/rv64i_defconfig +++ b/arch/riscv/configs/rv64i_defconfig @@ -40,6 +40,7 @@ CONFIG_LONGHELP=y CONFIG_CMD_IOMEM=y CONFIG_CMD_IMD=y CONFIG_CMD_MEMINFO=y +CONFIG_CMD_BFETCH=y CONFIG_CMD_POLLER=y CONFIG_CMD_SLICE=y CONFIG_CMD_GO=y diff --git a/arch/riscv/configs/virt32_defconfig b/arch/riscv/configs/virt32_defconfig index c12adc67739c..ac2eb1c94305 100644 --- a/arch/riscv/configs/virt32_defconfig +++ b/arch/riscv/configs/virt32_defconfig @@ -30,6 +30,7 @@ CONFIG_LONGHELP=y CONFIG_CMD_IOMEM=y CONFIG_CMD_IMD=y CONFIG_CMD_MEMINFO=y +CONFIG_CMD_BFETCH=y CONFIG_CMD_POLLER=y CONFIG_CMD_SLICE=y CONFIG_CMD_GO=y diff --git a/arch/sandbox/configs/sandbox_defconfig b/arch/sandbox/configs/sandbox_defconfig index 921999e001bc..5b2cfdd51507 100644 --- a/arch/sandbox/configs/sandbox_defconfig +++ b/arch/sandbox/configs/sandbox_defconfig @@ -20,6 +20,7 @@ CONFIG_CMD_IOMEM=y CONFIG_CMD_IMD=y CONFIG_CMD_MEMINFO=y CONFIG_CMD_NVMEM=y +CONFIG_CMD_BFETCH=y CONFIG_CMD_POLLER=y CONFIG_CMD_SLICE=y CONFIG_CMD_GO=y -- 2.39.5