diff options
author | Corentin Labbe <clabbe@baylibre.com> | 2020-05-13 08:07:24 +0000 |
---|---|---|
committer | Matthias Brugger <mbrugger@suse.com> | 2020-05-30 23:05:47 +0200 |
commit | 5c7f5c5b006c09157638b416ebe73d5cccec188c (patch) | |
tree | fa80bb81cc1ca258ede9809a08fa146e69582418 /configs | |
parent | 29b0540d5acc35c8096d7147d7574d0b3ae7dcc0 (diff) | |
download | u-boot-5c7f5c5b006c09157638b416ebe73d5cccec188c.zip u-boot-5c7f5c5b006c09157638b416ebe73d5cccec188c.tar.gz u-boot-5c7f5c5b006c09157638b416ebe73d5cccec188c.tar.bz2 |
rpi_4_defconfig: add missing CONFIG_ARCH_FIXUP_FDT_MEMORY
As discussed at https://lore.kernel.org/linux-arm-kernel/b726290c-1038-3771-5187-6ac370bc92c9@arm.com/T/
the defconfig for rpi4 miss CONFIG_ARCH_FIXUP_FDT_MEMORY.
Without it, booting with an initrd fail.
Signed-off-by: Corentin Labbe <clabbe@baylibre.com>
Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
Signed-off-by: Matthias Brugger <mbrugger@suse.com>
Diffstat (limited to 'configs')
-rw-r--r-- | configs/rpi_4_32b_defconfig | 2 | ||||
-rw-r--r-- | configs/rpi_4_defconfig | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/configs/rpi_4_32b_defconfig b/configs/rpi_4_32b_defconfig index 52bdd0a..b22316c 100644 --- a/configs/rpi_4_32b_defconfig +++ b/configs/rpi_4_32b_defconfig @@ -7,7 +7,7 @@ CONFIG_ENV_SIZE=0x4000 CONFIG_NR_DRAM_BANKS=2 CONFIG_DISTRO_DEFAULTS=y CONFIG_OF_BOARD_SETUP=y -# CONFIG_ARCH_FIXUP_FDT_MEMORY is not set +CONFIG_ARCH_FIXUP_FDT_MEMORY=y CONFIG_MISC_INIT_R=y # CONFIG_DISPLAY_CPUINFO is not set # CONFIG_DISPLAY_BOARDINFO is not set diff --git a/configs/rpi_4_defconfig b/configs/rpi_4_defconfig index 2ce1b6b..0759805 100644 --- a/configs/rpi_4_defconfig +++ b/configs/rpi_4_defconfig @@ -7,7 +7,7 @@ CONFIG_ENV_SIZE=0x4000 CONFIG_NR_DRAM_BANKS=2 CONFIG_DISTRO_DEFAULTS=y CONFIG_OF_BOARD_SETUP=y -# CONFIG_ARCH_FIXUP_FDT_MEMORY is not set +CONFIG_ARCH_FIXUP_FDT_MEMORY=y CONFIG_MISC_INIT_R=y # CONFIG_DISPLAY_CPUINFO is not set # CONFIG_DISPLAY_BOARDINFO is not set |