diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-07-28 10:14:40 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-07-28 10:25:06 +0200 |
commit | c43854da4d87c25f54cce20ad188a6877dc15f71 (patch) | |
tree | 2fce408ef916b6c205e3f74a5ce2c1b0fc969beb /package/mksh | |
parent | 86e450dac4a6d50ebda79f80081525462d1bb68b (diff) |
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 <wbx@openadk.org>
Diffstat (limited to 'package/mksh')
-rw-r--r-- | package/mksh/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/mksh/Makefile b/package/mksh/Makefile index 1e2ddb8b1..29f03beca 100644 --- a/package/mksh/Makefile +++ b/package/mksh/Makefile @@ -12,7 +12,7 @@ PKG_SECTION:= base/shells PKG_URL:= http://www.mirbsd.org/ PKG_SITES:= ${MASTER_SITE_MIRBSD:distfiles/=dist/mir/mksh/} -PKG_DFLT_MKSH:= y if !ADK_TOOLCHAIN_ONLY +PKG_DFLT_MKSH:= y if !ADK_TOOLCHAIN_ONLY && !ADK_TARGET_UCLINUX DISTFILES= ${PKG_NAME}-R${PKG_VERSION}.tgz WRKDIST= ${WRKDIR}/${PKG_NAME} |