diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-06-09 16:02:24 -0500 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-06-10 08:19:39 -0500 |
commit | 260703a97087db63a9fbaf72e4b6c5a0d337559f (patch) | |
tree | aab3af2b62daadf2497f05810c9c1122c584169d /package/busybox/Makefile | |
parent | e313b47683325dc679e99320a7bc8d7a76b61668 (diff) |
add simulator target for h8/300, reorg no-MMU
Some no-MMU targets need uclinux in its triple, some
not. Introduce a new symbol for noMMU to select
correct software and configuration instead of using
UCLINUX symbol.
Diffstat (limited to 'package/busybox/Makefile')
-rw-r--r-- | package/busybox/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/busybox/Makefile b/package/busybox/Makefile index c293e6d29..25dae3d21 100644 --- a/package/busybox/Makefile +++ b/package/busybox/Makefile @@ -41,7 +41,7 @@ do-configure: symbol=$$(echo $$sym|sed -e "s#=y##"); \ printf "# CONFIG_$${symbol} is not set\n" >> ${WRKBUILD}/.config; \ done -ifeq ($(ADK_TARGET_UCLINUX),y) +ifneq ($(ADK_TARGET_WITH_MMU),y) echo 'CONFIG_NOMMU=y' >> ${WRKBUILD}/.config endif $(SED) 's;@IDIR@;${WRKINST};' ${WRKBUILD}/.config |