diff options
author | Walter Lozano <walter.lozano@collabora.com> | 2020-05-19 15:24:23 -0300 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2020-06-23 00:08:53 +0200 |
commit | 6a4bae6c37206aaeab845f8b05a5b260b2c0b228 (patch) | |
tree | 6f2454110feec8e6ac25b97954493d49c15fb208 /configs/mx6cuboxi_defconfig | |
parent | 6c3fbf3e456c49c2f43c0c286106a0d4b099b67b (diff) | |
download | u-boot-6a4bae6c37206aaeab845f8b05a5b260b2c0b228.tar.gz u-boot-6a4bae6c37206aaeab845f8b05a5b260b2c0b228.tar.xz u-boot-6a4bae6c37206aaeab845f8b05a5b260b2c0b228.zip |
mx6cuboxi: enable OF_CONTROL and DM in SPL
In order to take the beneficts of DT and DM in SPL, like reusing the code
and avoid redundancy, enable SPL_OF_CONTROL, SPL_DM and SPL_DM_MMC.
With this new configuration SPL image is 50 KB, higher than the
38 KB from the previous version, but it still under the 68 KB limit.
Signed-off-by: Walter Lozano <walter.lozano@collabora.com>
Diffstat (limited to 'configs/mx6cuboxi_defconfig')
-rw-r--r-- | configs/mx6cuboxi_defconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configs/mx6cuboxi_defconfig b/configs/mx6cuboxi_defconfig index 568cfce4c0..bfb4b86521 100644 --- a/configs/mx6cuboxi_defconfig +++ b/configs/mx6cuboxi_defconfig @@ -25,6 +25,7 @@ CONFIG_USE_PREBOOT=y CONFIG_PREBOOT="if hdmidet; then usb start; setenv stdin serial,usbkbd; setenv stdout serial,vga; setenv stderr serial,vga; else setenv stdin serial; setenv stdout serial; setenv stderr serial; fi;" CONFIG_BOUNCE_BUFFER=y CONFIG_BOARD_EARLY_INIT_F=y +CONFIG_SPL_SEPARATE_BSS=y CONFIG_SPL_FS_EXT4=y CONFIG_SPL_I2C_SUPPORT=y CONFIG_SPL_WATCHDOG_SUPPORT=y @@ -37,6 +38,7 @@ CONFIG_CMD_CACHE=y CONFIG_CMD_EXT4_WRITE=y # CONFIG_SPL_PARTITION_UUIDS is not set CONFIG_OF_CONTROL=y +CONFIG_SPL_OF_CONTROL=y CONFIG_DEFAULT_DEVICE_TREE="imx6dl-hummingboard2-emmc-som-v15" CONFIG_OF_LIST="imx6dl-hummingboard2-emmc-som-v15 imx6q-hummingboard2-emmc-som-v15" CONFIG_MULTI_DTB_FIT=y @@ -45,6 +47,7 @@ CONFIG_SYS_RELOC_GD_ENV_ADDR=y CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG=y CONFIG_NET_RANDOM_ETHADDR=y CONFIG_DM=y +CONFIG_SPL_DM=y CONFIG_DWC_AHSATA=y CONFIG_DM_MMC=y CONFIG_FSL_USDHC=y |