diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2015-12-28 09:22:40 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2015-12-28 09:22:54 +0100 |
commit | e09726cd75a5f233793ca92f7bd09d77a72e6b05 (patch) | |
tree | 8b53382b7a6c581cc53a40e84a2478e511772dda /mk | |
parent | 7df7d00ae20f1ce312c86ac9fb6e5251e6b9a077 (diff) |
various small fixes, arm vexpress disk support is working now
Diffstat (limited to 'mk')
-rw-r--r-- | mk/host-bottom.mk | 5 | ||||
-rw-r--r-- | mk/rootfs.mk | 2 |
2 files changed, 1 insertions, 6 deletions
diff --git a/mk/host-bottom.mk b/mk/host-bottom.mk index cfd4ce120..c27b3f2a6 100644 --- a/mk/host-bottom.mk +++ b/mk/host-bottom.mk @@ -22,8 +22,6 @@ ifeq (${HOST_STYLE},) cd ${WRKBUILD}; \ env ${HOST_CONFIGURE_ENV} \ ${BASH} ${WRKSRC}/${CONFIGURE_PROG} \ - --program-prefix= \ - --program-suffix= \ --prefix=${STAGING_HOST_DIR}/usr \ --bindir=${STAGING_HOST_DIR}/usr/bin \ --datadir=${STAGING_HOST_DIR}/usr/share \ @@ -31,9 +29,6 @@ ifeq (${HOST_STYLE},) --libdir=${STAGING_HOST_DIR}/usr/lib \ --libexecdir=${STAGING_HOST_DIR}/usr/libexec \ --sysconfdir=${STAGING_HOST_DIR}/etc \ - --disable-dependency-tracking \ - --disable-libtool-lock \ - --disable-nls \ ${HOST_CONFIGURE_ARGS} $(MAKE_TRACE) endif ifeq (${HOST_STYLE},auto) diff --git a/mk/rootfs.mk b/mk/rootfs.mk index 5f47a1547..7539185f7 100644 --- a/mk/rootfs.mk +++ b/mk/rootfs.mk @@ -18,7 +18,7 @@ ROOTFS:= root=/dev/sda1 rootwait endif endif ifeq ($(ADK_TARGET_SYSTEM_QEMU_ARM_VEXPRESS_A9),y) -ROOTFS:= root=/dev/mtdblock0 +ROOTFS:= root=/dev/mmcblk0p1 endif endif |