klibc: upgrade 1.5.24 to 1.5.25
authorAndrea Adami <andrea.adami@gmail.com>
Wed, 7 Sep 2011 05:17:51 +0000 (05:17 +0000)
committerPatrick Ohly <patrick.ohly@intel.com>
Fri, 9 Jan 2015 16:14:53 +0000 (08:14 -0800)
* remove sochet.h patch now upstream
* prepare for klibc_2.0, to be released in the next days

(From meta-openembedded rev: 5ddce9fb6d0761114f3d5f2e9bd6ad0ae1bb00ff)

Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
16 files changed:
meta-openembedded/meta-oe/recipes-devtools/klibc/klcc-cross_1.5.25.bb [moved from meta-openembedded/meta-oe/recipes-devtools/klibc/klcc-cross_1.5.24.bb with 100% similarity]
meta-openembedded/meta-oe/recipes-devtools/klibc/klibc-1.5.24/socket.h.patch [deleted file]
meta-openembedded/meta-oe/recipes-devtools/klibc/klibc-1.5.25/dash_readopt.patch [moved from meta-openembedded/meta-oe/recipes-devtools/klibc/klibc-1.5.24/dash_readopt.patch with 100% similarity]
meta-openembedded/meta-oe/recipes-devtools/klibc/klibc-1.5.25/fstype-sane-vfat-and-jffs2-for-1.5.patch [moved from meta-openembedded/meta-oe/recipes-devtools/klibc/klibc-1.5.24/fstype-sane-vfat-and-jffs2-for-1.5.patch with 100% similarity]
meta-openembedded/meta-oe/recipes-devtools/klibc/klibc-1.5.25/klcc_prefix.patch [moved from meta-openembedded/meta-oe/recipes-devtools/klibc/klibc-1.5.24/klcc_prefix.patch with 100% similarity]
meta-openembedded/meta-oe/recipes-devtools/klibc/klibc-1.5.25/klibc-config-eabi.patch [moved from meta-openembedded/meta-oe/recipes-devtools/klibc/klibc-1.5.24/klibc-config-eabi.patch with 100% similarity]
meta-openembedded/meta-oe/recipes-devtools/klibc/klibc-1.5.25/modprobe.patch [moved from meta-openembedded/meta-oe/recipes-devtools/klibc/klibc-1.5.24/modprobe.patch with 100% similarity]
meta-openembedded/meta-oe/recipes-devtools/klibc/klibc-1.5.25/staging.patch [moved from meta-openembedded/meta-oe/recipes-devtools/klibc/klibc-1.5.24/staging.patch with 100% similarity]
meta-openembedded/meta-oe/recipes-devtools/klibc/klibc-1.5.25/use-env-for-perl.patch [moved from meta-openembedded/meta-oe/recipes-devtools/klibc/klibc-1.5.24/use-env-for-perl.patch with 100% similarity]
meta-openembedded/meta-oe/recipes-devtools/klibc/klibc-1.5.25/wc.patch [moved from meta-openembedded/meta-oe/recipes-devtools/klibc/klibc-1.5.24/wc.patch with 100% similarity]
meta-openembedded/meta-oe/recipes-devtools/klibc/klibc-checksums_1.5.24.inc [deleted file]
meta-openembedded/meta-oe/recipes-devtools/klibc/klibc-checksums_1.5.25.inc [new file with mode: 0644]
meta-openembedded/meta-oe/recipes-devtools/klibc/klibc-static-utils_1.5.25.bb [moved from meta-openembedded/meta-oe/recipes-devtools/klibc/klibc-static-utils_1.5.24.bb with 100% similarity]
meta-openembedded/meta-oe/recipes-devtools/klibc/klibc-utils_1.5.25.bb [moved from meta-openembedded/meta-oe/recipes-devtools/klibc/klibc-utils_1.5.24.bb with 100% similarity]
meta-openembedded/meta-oe/recipes-devtools/klibc/klibc.inc
meta-openembedded/meta-oe/recipes-devtools/klibc/klibc_1.5.25.bb [moved from meta-openembedded/meta-oe/recipes-devtools/klibc/klibc_1.5.24.bb with 100% similarity]

diff --git a/meta-openembedded/meta-oe/recipes-devtools/klibc/klibc-1.5.24/socket.h.patch b/meta-openembedded/meta-oe/recipes-devtools/klibc/klibc-1.5.24/socket.h.patch
deleted file mode 100644 (file)
index c0a94ce..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-Subject: Add relevant socket.h definitions
-
-* Discussed upstream:
-* http://www.zytor.com/pipermail/klibc/2010-February/002487.html
-* http://www.zytor.com/pipermail/klibc/2010-February/002488.html
-*
-* Was: Add guards for pre 2.6.33 compatibility.
-*
-* Changes for 1.5.24
-* Only include linux/sockios.h for SIOCGIFCONF and SIOCSIFFLAGS
-* requested by kexec-tools when building statically against klibc.
-
-Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
-
-Index: klibc-1.5.24/usr/include/sys/socket.h
-===================================================================
---- a/usr/include/sys/socket.h 2011-07-27 15:50:53.000000000 +0200
-+++ b/usr/include/sys/socket.h 2010-05-31 00:44:16.000000000 +0200
-@@ -10,6 +10,12 @@
- #include <klibc/compiler.h>
- #include <klibc/sysconfig.h>
- #include <linux/socket.h>
-+
-+#include <linux/version.h>
-+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,33)
-+#include <linux/sockios.h>            /* the SIOCxxx I/O controls     */
-+#endif
-+
- #include <linux/uio.h>
- #include <asm/socket.h>
- #if _KLIBC_HAS_ARCHSOCKET_H
diff --git a/meta-openembedded/meta-oe/recipes-devtools/klibc/klibc-checksums_1.5.24.inc b/meta-openembedded/meta-oe/recipes-devtools/klibc/klibc-checksums_1.5.24.inc
deleted file mode 100644 (file)
index 31ed66b..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-SRC_URI[md5sum] = "4df9b0d3d7f9f366c4b5c171cac3c6c3"
-SRC_URI[sha256sum] = "71fac12937ead3f104aad8ac40567ecdcac1ea27474cce939f6226499b1895a2"
diff --git a/meta-openembedded/meta-oe/recipes-devtools/klibc/klibc-checksums_1.5.25.inc b/meta-openembedded/meta-oe/recipes-devtools/klibc/klibc-checksums_1.5.25.inc
new file mode 100644 (file)
index 0000000..ebba658
--- /dev/null
@@ -0,0 +1,2 @@
+SRC_URI[md5sum] = "5bc4dcd63e9142b934787729133c2766"
+SRC_URI[sha256sum] = "0b910ec0b2a97d4c775ed06e44ad7bca7be150efdf2a77a19253a573e16367d3"
index 6654123..1b1f7c6 100644 (file)
@@ -12,7 +12,7 @@ PACKAGE_ARCH = "${MACHINE_ARCH}"
 # debugsources.list: No such file or directory:
 INHIBIT_PACKAGE_DEBUG_SPLIT = "1"
 
-INC_PR = "r1"
+INC_PR = "r0"
 
 KLIBC_ARCH = '${TARGET_ARCH}'
 KLIBC_ARCH_armeb = 'arm'
@@ -34,7 +34,6 @@ SRC_URI += "file://fstype-sane-vfat-and-jffs2-for-1.5.patch \
             file://dash_readopt.patch \
             file://wc.patch \
             file://staging.patch \
-            file://socket.h.patch \
             "
 
 S = "${WORKDIR}/klibc-${PV}"