diff options
Diffstat (limited to 'package/busybox')
-rw-r--r-- | package/busybox/Makefile | 2 | ||||
-rw-r--r-- | package/busybox/config/Config.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/package/busybox/Makefile b/package/busybox/Makefile index 25dae3d21..a97c1ae3d 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 -ifneq ($(ADK_TARGET_WITH_MMU),y) +ifeq ($(ADK_TARGET_WITHOUT_MMU),y) echo 'CONFIG_NOMMU=y' >> ${WRKBUILD}/.config endif $(SED) 's;@IDIR@;${WRKINST};' ${WRKBUILD}/.config diff --git a/package/busybox/config/Config.in b/package/busybox/config/Config.in index f743bd59f..54d4e1120 100644 --- a/package/busybox/config/Config.in +++ b/package/busybox/config/Config.in @@ -518,7 +518,7 @@ config BUSYBOX_PIE config BUSYBOX_NOMMU bool "Force NOMMU build" - default y if ADK_TARGET_UCLINUX + default y if ADK_TARGET_WITHOUT_MMU default n help Busybox tries to detect whether architecture it is being |