From c43854da4d87c25f54cce20ad188a6877dc15f71 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Mon, 28 Jul 2014 10:14:40 +0200 Subject: add some basic infrastructure for qemu-system-m68k Qemu emulates a Coldfire Evaluation board without MMU. As that is the first non-MMU platform in OpenADK I added ADK_TARGET_UCLINUX. Mksh can not be used for non-MMU, because it requires fork() for job control and other things. We use hush here. non-MMU support in uClibc does not have shared library support. Kernel does not start yet. So no runtime testing, but at least coldfire toolchain can be tested with uClibc-ng. Signed-off-by: Waldemar Brodkorb --- target/config/Config.in.libc.choice | 2 ++ 1 file changed, 2 insertions(+) (limited to 'target/config/Config.in.libc.choice') diff --git a/target/config/Config.in.libc.choice b/target/config/Config.in.libc.choice index 41905898c..e95e48e96 100644 --- a/target/config/Config.in.libc.choice +++ b/target/config/Config.in.libc.choice @@ -23,6 +23,7 @@ config ADK_TARGET_LIB_MUSL prompt "musl C library" boolean select ADK_musl + depends on !ADK_TARGET_UCLINUX depends on \ ADK_LINUX_ARM || \ ADK_LINUX_MICROBLAZE || \ @@ -39,6 +40,7 @@ config ADK_TARGET_LIB_GLIBC boolean select ADK_glibc depends on !ADK_LINUX_XTENSA + depends on !ADK_TARGET_UCLINUX help http://www.gnu.org/libc -- cgit v1.2.3