diff options
| author | Anshul Dalal <[email protected]> | 2025-10-27 19:47:03 +0530 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-11-03 11:52:05 -0600 |
| commit | 1dde581e1affbbfad285a75b892cbebaa3f0bf19 (patch) | |
| tree | c4d1695d2c77c89fca3c022e513b1cf992867bde | |
| parent | 823e453987a6590af67e2226ad3e73fb399c205d (diff) | |
configs: disable SPL_BOOTZ to preserve spl size
In the existing behaviour, CMD_BOOTZ is not enabled by default which
means zimage.o is not compiled in the SPL in falcon mode unless
explicitly enabled. This changes now as SPL_BOOTZ is default y for
falcon users which leads to larger SPL size with zimage.o being present.
This patch modifies the defconfigs that used falcon mode but don't
require zimage support.
Signed-off-by: Anshul Dalal <[email protected]>
| -rw-r--r-- | configs/imx28_xea_defconfig | 1 | ||||
| -rw-r--r-- | configs/imx6qdl_icore_mipi_defconfig | 1 | ||||
| -rw-r--r-- | configs/imx6qdl_icore_mmc_defconfig | 1 | ||||
| -rw-r--r-- | configs/imx6qdl_icore_rqs_defconfig | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/configs/imx28_xea_defconfig b/configs/imx28_xea_defconfig index 8715893bbcc..0bb2e447250 100644 --- a/configs/imx28_xea_defconfig +++ b/configs/imx28_xea_defconfig @@ -132,3 +132,4 @@ CONFIG_DM_SPI=y CONFIG_MXS_SPI=y CONFIG_SPL_CRC8=y # CONFIG_SPL_OF_LIBFDT is not set +# CONFIG_SPL_BOOTZ is not set diff --git a/configs/imx6qdl_icore_mipi_defconfig b/configs/imx6qdl_icore_mipi_defconfig index c322fd3eff1..cc05ecf587f 100644 --- a/configs/imx6qdl_icore_mipi_defconfig +++ b/configs/imx6qdl_icore_mipi_defconfig @@ -74,3 +74,4 @@ CONFIG_PINCTRL_IMX6=y CONFIG_DM_SERIAL=y CONFIG_MXC_UART=y CONFIG_IMX_THERMAL=y +# CONFIG_SPL_BOOTZ is not set diff --git a/configs/imx6qdl_icore_mmc_defconfig b/configs/imx6qdl_icore_mmc_defconfig index 0b82fbecbee..169903266cd 100644 --- a/configs/imx6qdl_icore_mmc_defconfig +++ b/configs/imx6qdl_icore_mmc_defconfig @@ -102,3 +102,4 @@ CONFIG_SPLASH_SCREEN=y CONFIG_SPLASH_SCREEN_ALIGN=y CONFIG_BMP_16BPP=y CONFIG_IMX_WATCHDOG=y +# CONFIG_SPL_BOOTZ is not set diff --git a/configs/imx6qdl_icore_rqs_defconfig b/configs/imx6qdl_icore_rqs_defconfig index 8520f90c867..34d834ec8e1 100644 --- a/configs/imx6qdl_icore_rqs_defconfig +++ b/configs/imx6qdl_icore_rqs_defconfig @@ -71,3 +71,4 @@ CONFIG_PINCTRL=y CONFIG_PINCTRL_IMX6=y CONFIG_DM_SERIAL=y CONFIG_MXC_UART=y +# CONFIG_SPL_BOOTZ is not set |
