diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2023-08-25 03:46:20 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2023-08-25 08:08:39 +0200 |
commit | 105abdcfe95188827daccba4531765fd94081c8b (patch) | |
tree | c3161b8dd5e0237940abe2047d9f63155d03f6a7 /target/config | |
parent | 4975cdba82d38ce1c4c7ba53bf4057b6b8b8f796 (diff) |
lm32: revert to the old kernel, which boots up with lpj set via append
Bootup until a hello world:
[ 0.000000] BINFMT_FLAT: Loading file: /init
[ 0.000000] Mapping is 47438000, Entry point is 44, data_start is 1f00
[ 0.000000] Load /init: TEXT=47438040-47439f00 DATA=47439f20-4743a0f0 BSS=4743a0f0-4743c130
Stopps here. :(
Diffstat (limited to 'target/config')
-rw-r--r-- | target/config/Config.in.binutils | 2 | ||||
-rw-r--r-- | target/config/Config.in.elf2flt | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/target/config/Config.in.binutils b/target/config/Config.in.binutils index 680ba671d..ce31304a6 100644 --- a/target/config/Config.in.binutils +++ b/target/config/Config.in.binutils @@ -18,7 +18,6 @@ config ADK_TOOLCHAIN_BINUTILS_GIT config ADK_TOOLCHAIN_BINUTILS_2_41 bool "2.41" depends on !ADK_TARGET_ARCH_AVR32 - depends on !ADK_TARGET_ARCH_LM32 depends on !ADK_TARGET_ARCH_KVX config ADK_TOOLCHAIN_BINUTILS_2_40 @@ -37,7 +36,6 @@ config ADK_TOOLCHAIN_BINUTILS_2_38 config ADK_TOOLCHAIN_BINUTILS_2_28 bool "2.28" - depends on ADK_TARGET_CPU_SH_J2 config ADK_TOOLCHAIN_BINUTILS_KVX bool "kvx-coolidge" diff --git a/target/config/Config.in.elf2flt b/target/config/Config.in.elf2flt index c73ce2054..1bd93142d 100644 --- a/target/config/Config.in.elf2flt +++ b/target/config/Config.in.elf2flt @@ -15,7 +15,10 @@ config ADK_TOOLCHAIN_ELF2FLT_2021_08 config ADK_TOOLCHAIN_ELF2FLT_OLD bool "old version" depends on ADK_TARGET_ARCH_BFIN || \ - ADK_TARGET_ARCH_LM32 || \ ADK_TARGET_ARCH_SH +config ADK_TOOLCHAIN_ELF2FLT_LM32 + bool "lm32" + depends on ADK_TARGET_ARCH_LM32 + endchoice |