diff options
-rw-r--r-- | autoconf/autoconf-buildarch-2.57.oe | 1 | ||||
-rw-r--r-- | automake/automake-buildarch-1.7.7.oe | 1 | ||||
-rw-r--r-- | cross/cross-gcc-initial-3.3.1.oe | 15 | ||||
-rw-r--r-- | fakeroot/fakeroot-buildarch-0.7.5.oe | 3 | ||||
-rw-r--r-- | ipkg/ipkg-utils-buildarch-1.0_cvs.oe | 2 | ||||
-rw-r--r-- | mtd/mtd-buildarch.oe | 10 | ||||
-rw-r--r-- | uclibc/uclibc-initial-0.9.21.oe | 1 |
7 files changed, 30 insertions, 3 deletions
diff --git a/autoconf/autoconf-buildarch-2.57.oe b/autoconf/autoconf-buildarch-2.57.oe index ce18061bd2..4561058291 100644 --- a/autoconf/autoconf-buildarch-2.57.oe +++ b/autoconf/autoconf-buildarch-2.57.oe @@ -1,5 +1,4 @@ include autoconf-${PV}.oe -PN:='autoconf-buildarch' S = ${WORKDIR}/autoconf-${PV} inherit native diff --git a/automake/automake-buildarch-1.7.7.oe b/automake/automake-buildarch-1.7.7.oe index b87e2e202a..9da5160c30 100644 --- a/automake/automake-buildarch-1.7.7.oe +++ b/automake/automake-buildarch-1.7.7.oe @@ -1,5 +1,4 @@ include automake-${PV}.oe -PN:='automake-buildarch' S = ${WORKDIR}/automake-${PV} inherit native diff --git a/cross/cross-gcc-initial-3.3.1.oe b/cross/cross-gcc-initial-3.3.1.oe index e69de29bb2..5ee0a8ad69 100644 --- a/cross/cross-gcc-initial-3.3.1.oe +++ b/cross/cross-gcc-initial-3.3.1.oe @@ -0,0 +1,15 @@ +include cross-gcc-${PV}.oe + +EXTRA_OECONF = --oldincludedir=${prefix}/include --enable-shared \ + --enable-languages=c \ + --disable-shared \ + --disable-threads + +do_configure_append () { + if (grep -q TARGET_LIBGCC2_CFLAGS ${tmake_file}); then + perl -pi -e 's/^(TARGET_LIBGCC2_CFLAGS.*)/$$1 -Dinhibit_libc -D__gthr_posix_h/' ${tmake_file} + else + echo 'TARGET_LIBGCC2_CFLAGS = -Dinhibit_libc -D__gthr_posix_h' >> ${tmake_file} + fi + echo 'T_CFLAGS = -Dinhibit_libc -D__gthr_posix_h' >> ${tmake_file} +} diff --git a/fakeroot/fakeroot-buildarch-0.7.5.oe b/fakeroot/fakeroot-buildarch-0.7.5.oe index e69de29bb2..f9a9e39826 100644 --- a/fakeroot/fakeroot-buildarch-0.7.5.oe +++ b/fakeroot/fakeroot-buildarch-0.7.5.oe @@ -0,0 +1,3 @@ +inherit native +include fakeroot-${PV}.oe +S = ${WORKDIR}/fakeroot-${PV} diff --git a/ipkg/ipkg-utils-buildarch-1.0_cvs.oe b/ipkg/ipkg-utils-buildarch-1.0_cvs.oe index e69de29bb2..e2216b92a2 100644 --- a/ipkg/ipkg-utils-buildarch-1.0_cvs.oe +++ b/ipkg/ipkg-utils-buildarch-1.0_cvs.oe @@ -0,0 +1,2 @@ +inherit native +include ipkg-utils-${PV}.oe diff --git a/mtd/mtd-buildarch.oe b/mtd/mtd-buildarch.oe index e69de29bb2..4843efa6ba 100644 --- a/mtd/mtd-buildarch.oe +++ b/mtd/mtd-buildarch.oe @@ -0,0 +1,10 @@ +inherit native +include mtd.oe + +do_stage () { + for binary in ftl_format erase eraseall nanddump doc_loadbios \ + mkfs.jffs ftl_check mkfs.jffs2 lock unlock einfo mtd_debug \ + fcp nandwrite jffs2dump; do + install -m 0755 $binary ${STAGING_BINDIR}/ + done +} diff --git a/uclibc/uclibc-initial-0.9.21.oe b/uclibc/uclibc-initial-0.9.21.oe index f188caa9f3..fcc126a1e4 100644 --- a/uclibc/uclibc-initial-0.9.21.oe +++ b/uclibc/uclibc-initial-0.9.21.oe @@ -1,5 +1,4 @@ include uclibc-${PV}.oe -PN := ${PN}-initial DEPENDS := PROVIDES := virtual/uclibc-headers |