summaryrefslogtreecommitdiff
path: root/openembedded/packages
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2006-01-26 11:28:45 +0000
committerRichard Purdie <richard@openedhand.com>2006-01-26 11:28:45 +0000
commit88565a78e152fe96cafaf1173ffbfb23fde07e35 (patch)
tree6e323b5c041dc386a7a7646ba5cb8e1a915c6aa4 /openembedded/packages
parenta4b1aab93cb48bef1f53f465847828fc061dd288 (diff)
downloadopenembedded-core-88565a78e152fe96cafaf1173ffbfb23fde07e35.tar.gz
openembedded-core-88565a78e152fe96cafaf1173ffbfb23fde07e35.tar.bz2
openembedded-core-88565a78e152fe96cafaf1173ffbfb23fde07e35.tar.xz
openembedded-core-88565a78e152fe96cafaf1173ffbfb23fde07e35.zip
glibc: Sync with OE to pull in glibc cvs workaround
git-svn-id: https://svn.o-hand.com/repos/poky@238 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/packages')
-rw-r--r--openembedded/packages/glibc/glibc-cvs-2.3.5/arm-no-hwcap.patch11
-rw-r--r--openembedded/packages/glibc/glibc_2.3.5+cvs20050627.bb13
2 files changed, 21 insertions, 3 deletions
diff --git a/openembedded/packages/glibc/glibc-cvs-2.3.5/arm-no-hwcap.patch b/openembedded/packages/glibc/glibc-cvs-2.3.5/arm-no-hwcap.patch
new file mode 100644
index 000000000..d3263a7dc
--- /dev/null
+++ b/openembedded/packages/glibc/glibc-cvs-2.3.5/arm-no-hwcap.patch
@@ -0,0 +1,11 @@
+--- libc/ports/sysdeps/unix/sysv/linux/arm/dl-procinfo.h.orig 2005-12-11 14:49:51 +0100
++++ libc/ports/sysdeps/unix/sysv/linux/arm/dl-procinfo.h 2005-12-11 14:51:28 +0100
+@@ -64,7 +64,7 @@
+ HWCAP_ARM_VFP = 1 << 6,
+ HWCAP_ARM_EDSP = 1 << 7,
+
+- HWCAP_IMPORTANT = (HWCAP_ARM_HALF | HWCAP_ARM_FAST_MULT)
++ HWCAP_IMPORTANT = HWCAP_ARM_FAST_MULT
+ };
+
+ static inline int
diff --git a/openembedded/packages/glibc/glibc_2.3.5+cvs20050627.bb b/openembedded/packages/glibc/glibc_2.3.5+cvs20050627.bb
index e7e5c3564..5ee5583fc 100644
--- a/openembedded/packages/glibc/glibc_2.3.5+cvs20050627.bb
+++ b/openembedded/packages/glibc/glibc_2.3.5+cvs20050627.bb
@@ -7,7 +7,7 @@ MAINTAINER = "Phil Blundell <pb@handhelds.org>"
FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/glibc-cvs-2.3.5"
CVSDATE = "20050627"
-PR = "r0"
+PR = "r1"
GLIBC_ADDONS ?= "ports,linuxthreads"
GLIBC_EXTRA_OECONF ?= ""
@@ -37,8 +37,6 @@ INHIBIT_DEFAULT_DEPS = "1"
# file://noinfo.patch;patch=1
# file://ldconfig.patch;patch=1;pnum=0
-# file://arm-no-hwcap.patch;patch=1;pnum=0 \
-# file://arm-memcpy.patch;patch=1;pnum=0 \
# file://arm-machine-gmon.patch;patch=1;pnum=0 \
# \
# file://arm-ioperm.patch;patch=1;pnum=0 \
@@ -47,6 +45,7 @@ SRC_URI = "cvs://anoncvs@sources.redhat.com/cvs/glibc;module=libc \
cvs://anoncvs@sources.redhat.com/cvs/glibc;module=ports \
file://arm-audit.patch;patch=1 \
file://arm-audit2.patch;patch=1 \
+ file://arm-no-hwcap.patch;patch=1 \
file://arm-memcpy.patch;patch=1 \
file://arm-longlong.patch;patch=1;pnum=0 \
file://fhs-linux-paths.patch;patch=1 \
@@ -81,6 +80,14 @@ def get_glibc_fpu_setting(bb, d):
do_munge() {
# Integrate ports into tree
mv ${WORKDIR}/ports ${S}
+
+ # http://www.handhelds.org/hypermail/oe/51/5135.html
+ # Some files were moved around between directories on
+ # 2005-12-21, which means that any attempt to check out
+ # from CVS using a datestamp older than that will be doomed.
+ #
+ # This is a workaround for that problem.
+ rm -rf ${S}/bits
}
addtask munge before do_patch after do_unpack