diff options
author | Michael Walle | 2022-08-17 21:38:02 +0200 |
---|---|---|
committer | Stefan Roese | 2022-08-23 12:39:55 +0200 |
commit | 18794c192a755147c9f3f86915a6a52cbd9f4017 (patch) | |
tree | 84295ca57ce4e03e6aa262d11cf63ed416f30af9 | |
parent | f5631b2c84dcbb225ae33532fa039763732363b8 (diff) |
board: lsxl: enable ATAGS support
We still need to be able to boot legacy images. Esp. the debian
installer will have a kernel with an appended DTB.
Signed-off-by: Michael Walle <michael@walle.cc>
Reviewed-by: Stefan Roese <sr@denx.de>
-rw-r--r-- | configs/lschlv2_defconfig | 3 | ||||
-rw-r--r-- | configs/lsxhl_defconfig | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/configs/lschlv2_defconfig b/configs/lschlv2_defconfig index d5cd0d55751..f4ffb9c6a20 100644 --- a/configs/lschlv2_defconfig +++ b/configs/lschlv2_defconfig @@ -3,6 +3,9 @@ CONFIG_SKIP_LOWLEVEL_INIT=y CONFIG_SYS_DCACHE_OFF=y CONFIG_ARCH_CPU_INIT=y CONFIG_ARCH_KIRKWOOD=y +CONFIG_SUPPORT_PASSING_ATAGS=y +CONFIG_CMDLINE_TAG=y +CONFIG_INITRD_TAG=y CONFIG_SYS_KWD_CONFIG="board/buffalo/lsxl/kwbimage-lschl.cfg" CONFIG_SYS_TEXT_BASE=0x600000 CONFIG_SYS_MALLOC_F_LEN=0x400 diff --git a/configs/lsxhl_defconfig b/configs/lsxhl_defconfig index 8f0672b1899..e8fb87ddda2 100644 --- a/configs/lsxhl_defconfig +++ b/configs/lsxhl_defconfig @@ -3,6 +3,9 @@ CONFIG_SKIP_LOWLEVEL_INIT=y CONFIG_SYS_DCACHE_OFF=y CONFIG_ARCH_CPU_INIT=y CONFIG_ARCH_KIRKWOOD=y +CONFIG_SUPPORT_PASSING_ATAGS=y +CONFIG_CMDLINE_TAG=y +CONFIG_INITRD_TAG=y CONFIG_SYS_KWD_CONFIG="board/buffalo/lsxl/kwbimage-lsxhl.cfg" CONFIG_SYS_TEXT_BASE=0x600000 CONFIG_SYS_MALLOC_F_LEN=0x400 |