diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-12-27 20:45:04 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-12-27 20:45:04 +0100 |
commit | 919c96726b42bb5a80bd6793d2b48e3ce89af426 (patch) | |
tree | 510df5cc7a4550befb36c5d1138f9c5dd73a9dff /package | |
parent | 88737e0e461e75e2ce81a134d545656eceadf46d (diff) |
more xtensa improvements
Diffstat (limited to 'package')
-rw-r--r-- | package/busybox/Config.in.manual | 1 | ||||
-rw-r--r-- | package/busybox/Makefile | 3 | ||||
-rw-r--r-- | package/libpthread/Makefile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/package/busybox/Config.in.manual b/package/busybox/Config.in.manual index 40acc7d9a..1eea95f98 100644 --- a/package/busybox/Config.in.manual +++ b/package/busybox/Config.in.manual @@ -125,6 +125,7 @@ config ADK_PACKAGE_BUSYBOX_MINIMAL select BUSYBOX_GREP select BUSYBOX_HALT select BUSYBOX_INIT + select BUSYBOX_WHICH select BUSYBOX_WHOAMI config ADK_PACKAGE_BUSYBOX_ALL diff --git a/package/busybox/Makefile b/package/busybox/Makefile index 2b06f139e..4ea2f5d27 100644 --- a/package/busybox/Makefile +++ b/package/busybox/Makefile @@ -56,9 +56,6 @@ do-configure: ;; \ esac \ done -ifeq ($(ADK_TARGET_WITHOUT_MMU),y) - echo 'CONFIG_NOMMU=y' >> ${WRKBUILD}/.config -endif $(SED) 's;@IDIR@;${WRKINST};' ${WRKBUILD}/.config do-build: diff --git a/package/libpthread/Makefile b/package/libpthread/Makefile index 1b9663769..62cf9b729 100644 --- a/package/libpthread/Makefile +++ b/package/libpthread/Makefile @@ -32,10 +32,12 @@ libpthread-install: ifneq ($(ADK_TARGET_LIB_MUSL),y) ifneq ($(ADK_TARGET_USE_STATIC_LIBS),y) ifneq ($(ADK_TARGET_WITHOUT_THREADS),y) +ifneq ($(ADK_TARGET_BINFMT_FLAT),y) ${INSTALL_DIR} ${IDIR_LIBPTHREAD}/$(ADK_TARGET_LIBC_PATH) ${CP} ${STAGING_TARGET_DIR}/lib/libpthread*.so* ${IDIR_LIBPTHREAD}/$(ADK_TARGET_LIBC_PATH) endif endif endif +endif include ${ADK_TOPDIR}/mk/pkg-bottom.mk |