* [PATCH 01/18] kmod-native: use bswap to work on older Linux hosts
2013-10-11 15:27 [PATCH 00/18] Package Updates and patches Saul Wold
@ 2013-10-11 15:27 ` Saul Wold
2013-10-11 15:27 ` [PATCH 02/18] sqlite3: update to version 3.8.0.1 Saul Wold
` (16 subsequent siblings)
17 siblings, 0 replies; 19+ messages in thread
From: Saul Wold @ 2013-10-11 15:27 UTC (permalink / raw)
To: openembedded-core
From: Ting Liu <b28495@freescale.com>
We can't use htobe* and be*toh functions because they are not
available on older versions of glibc, For example, shipped on Centos 5.5.
Change to directly calling bswap_* as defined in byteswap.h.
(From OE-Core rev: c7577e0205af641171cf4eab12e98e865c4d2338)
Signed-off-by: Ting Liu <b28495@freescale.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
meta/recipes-kernel/kmod/kmod-native_git.bb | 1 +
...alling-bswap_-instead-of-htobe-and-be-toh.patch | 39 ++++++++++++++++++++++
2 files changed, 40 insertions(+)
create mode 100644 meta/recipes-kernel/kmod/kmod/Change-to-calling-bswap_-instead-of-htobe-and-be-toh.patch
diff --git a/meta/recipes-kernel/kmod/kmod-native_git.bb b/meta/recipes-kernel/kmod/kmod-native_git.bb
index f22efc0..d008cbf 100644
--- a/meta/recipes-kernel/kmod/kmod-native_git.bb
+++ b/meta/recipes-kernel/kmod/kmod-native_git.bb
@@ -6,6 +6,7 @@ inherit native
SRC_URI += "file://fix-undefined-O_CLOEXEC.patch \
file://0001-Fix-build-with-older-gcc-4.6.patch \
+ file://Change-to-calling-bswap_-instead-of-htobe-and-be-toh.patch \
"
do_install_append (){
diff --git a/meta/recipes-kernel/kmod/kmod/Change-to-calling-bswap_-instead-of-htobe-and-be-toh.patch b/meta/recipes-kernel/kmod/kmod/Change-to-calling-bswap_-instead-of-htobe-and-be-toh.patch
new file mode 100644
index 0000000..82b83b3
--- /dev/null
+++ b/meta/recipes-kernel/kmod/kmod/Change-to-calling-bswap_-instead-of-htobe-and-be-toh.patch
@@ -0,0 +1,39 @@
+From 0c4dbadc9db3cda1cfca64e44ea08c6e89919ea7 Mon Sep 17 00:00:00 2001
+From: Ting Liu <b28495@freescale.com>
+Date: Tue, 10 Sep 2013 13:44:18 +0800
+Subject: [PATCH] Change to calling bswap_* instead of htobe* and be*toh
+
+We can't use htobe* and be*toh functions because they are not
+available on older versions of glibc, For example, shipped on Centos 5.5.
+
+Change to directly calling bswap_* as defined in+byteswap.h.
+
+Signed-off-by: Ting Liu <b28495@freescale.com>
+---
+ libkmod/libkmod-signature.c | 3 ++-
+ 1 files changed, 2 insertions(+), 1 deletions(-)
+
+diff --git a/libkmod/libkmod-signature.c b/libkmod/libkmod-signature.c
+index 6b80caa..3544a36 100644
+--- a/libkmod/libkmod-signature.c
++++ b/libkmod/libkmod-signature.c
+@@ -19,6 +19,7 @@
+ */
+
+ #include <endian.h>
++#include <byteswap.h>
+ #include <stdint.h>
+ #include <stdlib.h>
+ #include <string.h>
+@@ -121,7 +122,7 @@ bool kmod_module_signature_info(const struct kmod_file *file, struct kmod_signat
+ modsig->hash >= PKEY_HASH__LAST ||
+ modsig->id_type >= PKEY_ID_TYPE__LAST)
+ return false;
+- sig_len = be32toh(modsig->sig_len);
++ sig_len = bswap_32(modsig->sig_len);
+ if (size < (off_t)(modsig->signer_len + modsig->key_id_len + sig_len))
+ return false;
+
+--
+1.7.5.4
+
--
1.8.3.1
^ permalink raw reply related [flat|nested] 19+ messages in thread* [PATCH 02/18] sqlite3: update to version 3.8.0.1
2013-10-11 15:27 [PATCH 00/18] Package Updates and patches Saul Wold
2013-10-11 15:27 ` [PATCH 01/18] kmod-native: use bswap to work on older Linux hosts Saul Wold
@ 2013-10-11 15:27 ` Saul Wold
2013-10-11 15:27 ` [PATCH 03/18] xz: Add nativesdk for Python3 nativesdk dependency Saul Wold
` (15 subsequent siblings)
17 siblings, 0 replies; 19+ messages in thread
From: Saul Wold @ 2013-10-11 15:27 UTC (permalink / raw)
To: openembedded-core; +Cc: Maxin B. John
From: "Maxin B. John" <maxin.john@enea.com>
Upgrade to latest version 3.8.0.1
(From OE-Core rev: 0f1a3558647e18f0fdf7fc63350eff0282ec39bf)
Signed-off-by: Maxin B. John <maxin.john@enea.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
.../recipes-support/sqlite/{sqlite3_3071700.bb => sqlite3_3080001.bb} | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
rename meta/recipes-support/sqlite/{sqlite3_3071700.bb => sqlite3_3080001.bb} (60%)
diff --git a/meta/recipes-support/sqlite/sqlite3_3071700.bb b/meta/recipes-support/sqlite/sqlite3_3080001.bb
similarity index 60%
rename from meta/recipes-support/sqlite/sqlite3_3071700.bb
rename to meta/recipes-support/sqlite/sqlite3_3080001.bb
index 113e8ce..692e56a 100644
--- a/meta/recipes-support/sqlite/sqlite3_3071700.bb
+++ b/meta/recipes-support/sqlite/sqlite3_3080001.bb
@@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://sqlite3.h;endline=11;md5=65f0a57ca6928710b418c094b357
SRC_URI = "http://www.sqlite.org/2013/sqlite-autoconf-${PV}.tar.gz"
-SRC_URI[md5sum] = "18c285053e9562b848209cb0ee16d4ab"
-SRC_URI[sha256sum] = "8ff46d0baa9e64c0815544e829e985f1161c096aa6344c8f430791dbeadc2baf"
+SRC_URI[md5sum] = "ee32c96e5db6c6d651c7c9b71082cf7c"
+SRC_URI[sha256sum] = "1d92ccfca5629701b207e57e86fdf0a01d8dca61c60e1246f92ec8d87408cf36"
S = "${WORKDIR}/sqlite-autoconf-${PV}"
--
1.8.3.1
^ permalink raw reply related [flat|nested] 19+ messages in thread* [PATCH 03/18] xz: Add nativesdk for Python3 nativesdk dependency
2013-10-11 15:27 [PATCH 00/18] Package Updates and patches Saul Wold
2013-10-11 15:27 ` [PATCH 01/18] kmod-native: use bswap to work on older Linux hosts Saul Wold
2013-10-11 15:27 ` [PATCH 02/18] sqlite3: update to version 3.8.0.1 Saul Wold
@ 2013-10-11 15:27 ` Saul Wold
2013-10-11 15:27 ` [PATCH 04/18] cups: upgrade to 1.6.4 Saul Wold
` (14 subsequent siblings)
17 siblings, 0 replies; 19+ messages in thread
From: Saul Wold @ 2013-10-11 15:27 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
meta/recipes-extended/xz/xz_5.1.2alpha.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/recipes-extended/xz/xz_5.1.2alpha.bb b/meta/recipes-extended/xz/xz_5.1.2alpha.bb
index 93099b0..92c3dd9 100644
--- a/meta/recipes-extended/xz/xz_5.1.2alpha.bb
+++ b/meta/recipes-extended/xz/xz_5.1.2alpha.bb
@@ -22,4 +22,4 @@ FILES_liblzma-dev = "${includedir}/lzma* ${libdir}/liblzma*${SOLIBSDEV} ${libdir
FILES_liblzma-staticdev = "${libdir}/liblzma.a"
FILES_liblzma-dbg = "${libdir}/.debug/liblzma*"
-BBCLASSEXTEND = "native"
+BBCLASSEXTEND = "native nativesdk"
--
1.8.3.1
^ permalink raw reply related [flat|nested] 19+ messages in thread* [PATCH 04/18] cups: upgrade to 1.6.4
2013-10-11 15:27 [PATCH 00/18] Package Updates and patches Saul Wold
` (2 preceding siblings ...)
2013-10-11 15:27 ` [PATCH 03/18] xz: Add nativesdk for Python3 nativesdk dependency Saul Wold
@ 2013-10-11 15:27 ` Saul Wold
2013-10-11 15:27 ` [PATCH 05/18] desktop-file-utils-native: upgrade to 0.22 Saul Wold
` (13 subsequent siblings)
17 siblings, 0 replies; 19+ messages in thread
From: Saul Wold @ 2013-10-11 15:27 UTC (permalink / raw)
To: openembedded-core
(From OE-Core rev: 537a9a6d4cb7700cd683010d06672aa557b7fa1e)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
meta/recipes-extended/cups/{cups_1.6.3.bb => cups_1.6.4.bb} | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
rename meta/recipes-extended/cups/{cups_1.6.3.bb => cups_1.6.4.bb} (80%)
diff --git a/meta/recipes-extended/cups/cups_1.6.3.bb b/meta/recipes-extended/cups/cups_1.6.4.bb
similarity index 80%
rename from meta/recipes-extended/cups/cups_1.6.3.bb
rename to meta/recipes-extended/cups/cups_1.6.4.bb
index 5ed52fe..8aabd49 100644
--- a/meta/recipes-extended/cups/cups_1.6.3.bb
+++ b/meta/recipes-extended/cups/cups_1.6.4.bb
@@ -10,8 +10,8 @@ SRC_URI += " \
file://cups_serverbin.patch \
"
-SRC_URI[md5sum] = "946a2d8ad1aec6beced312fce18543da"
-SRC_URI[sha256sum] = "84fa83dea6ed08dbd4d1112d9b0005424713b32bcb13111857836312896cf29d"
+SRC_URI[md5sum] = "52c3df269709a4d25472cfe72ab5e856"
+SRC_URI[sha256sum] = "b910c3e43b2d06f54154d12710e849455d0710c9983dab0a5f49a5e93b1b7e73"
EXTRA_OECONF += " --disable-gssapi --enable-debug --disable-relro --enable-libusb \
${@base_contains('DISTRO_FEATURES', 'pam', '--enable-pam', '--disable-pam', d)}"
--
1.8.3.1
^ permalink raw reply related [flat|nested] 19+ messages in thread* [PATCH 05/18] desktop-file-utils-native: upgrade to 0.22
2013-10-11 15:27 [PATCH 00/18] Package Updates and patches Saul Wold
` (3 preceding siblings ...)
2013-10-11 15:27 ` [PATCH 04/18] cups: upgrade to 1.6.4 Saul Wold
@ 2013-10-11 15:27 ` Saul Wold
2013-10-11 15:27 ` [PATCH 06/18] libbsd: upgrade to 0.6.0 Saul Wold
` (12 subsequent siblings)
17 siblings, 0 replies; 19+ messages in thread
From: Saul Wold @ 2013-10-11 15:27 UTC (permalink / raw)
To: openembedded-core
(From OE-Core rev: 816569257f3ede87a875311c827bb74c2ed90226)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
...op-file-utils-native_0.21.bb => desktop-file-utils-native_0.22.bb} | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
rename meta/recipes-devtools/desktop-file-utils/{desktop-file-utils-native_0.21.bb => desktop-file-utils-native_0.22.bb} (76%)
diff --git a/meta/recipes-devtools/desktop-file-utils/desktop-file-utils-native_0.21.bb b/meta/recipes-devtools/desktop-file-utils/desktop-file-utils-native_0.22.bb
similarity index 76%
rename from meta/recipes-devtools/desktop-file-utils/desktop-file-utils-native_0.21.bb
rename to meta/recipes-devtools/desktop-file-utils/desktop-file-utils-native_0.22.bb
index 13f1db6..2a77642 100644
--- a/meta/recipes-devtools/desktop-file-utils/desktop-file-utils-native_0.21.bb
+++ b/meta/recipes-devtools/desktop-file-utils/desktop-file-utils-native_0.22.bb
@@ -8,8 +8,8 @@ DEPENDS = "glib-2.0-native"
SRC_URI = "http://freedesktop.org/software/desktop-file-utils/releases/desktop-file-utils-${PV}.tar.xz"
-SRC_URI[md5sum] = "fda5c312c9fb3b8d818fb54f2c34db82"
-SRC_URI[sha256sum] = "b6c9b860538ef1cffbcdfbc9cb578f85a080ad8c1207c8b3a39e9fd183f9782b"
+SRC_URI[md5sum] = "c6b9f9aac1ea143091178c23437e6cd0"
+SRC_URI[sha256sum] = "843532672692f98e9b2d6ae6cc8658da562dfde1606c7f33d9d227a344de56c5"
inherit autotools native
--
1.8.3.1
^ permalink raw reply related [flat|nested] 19+ messages in thread* [PATCH 06/18] libbsd: upgrade to 0.6.0
2013-10-11 15:27 [PATCH 00/18] Package Updates and patches Saul Wold
` (4 preceding siblings ...)
2013-10-11 15:27 ` [PATCH 05/18] desktop-file-utils-native: upgrade to 0.22 Saul Wold
@ 2013-10-11 15:27 ` Saul Wold
2013-10-11 15:27 ` [PATCH 07/18] man-pages: upgrade to 3.54 Saul Wold
` (11 subsequent siblings)
17 siblings, 0 replies; 19+ messages in thread
From: Saul Wold @ 2013-10-11 15:27 UTC (permalink / raw)
To: openembedded-core
(From OE-Core rev: d7cc46a17b42b23c4f98a3eee3e061be858ab556)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
meta/recipes-support/libbsd/{libbsd_0.5.2.bb => libbsd_0.6.0.bb} | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
rename meta/recipes-support/libbsd/{libbsd_0.5.2.bb => libbsd_0.6.0.bb} (83%)
diff --git a/meta/recipes-support/libbsd/libbsd_0.5.2.bb b/meta/recipes-support/libbsd/libbsd_0.6.0.bb
similarity index 83%
rename from meta/recipes-support/libbsd/libbsd_0.5.2.bb
rename to meta/recipes-support/libbsd/libbsd_0.6.0.bb
index 952f212..771f322 100644
--- a/meta/recipes-support/libbsd/libbsd_0.5.2.bb
+++ b/meta/recipes-support/libbsd/libbsd_0.6.0.bb
@@ -13,7 +13,7 @@ SECTION = "libs"
DEPENDS = ""
SRC_URI = "http://libbsd.freedesktop.org/releases/${BPN}-${PV}.tar.xz"
-SRC_URI[md5sum] = "be8b2e0dc4614699834c49693574fd1a"
-SRC_URI[sha256sum] = "5340cf67555a8d92e7652d96540a47986a26eeafb9a0a3e22d3b3e5701ebe23f"
+SRC_URI[md5sum] = "f6c75f0a9818e323a589bcbd560a0eb4"
+SRC_URI[sha256sum] = "9e8f34ffa9c8579c87965a55a82d8ac37a1dc64858f717b7c49452ade277cc62"
inherit autotools pkgconfig
--
1.8.3.1
^ permalink raw reply related [flat|nested] 19+ messages in thread* [PATCH 07/18] man-pages: upgrade to 3.54
2013-10-11 15:27 [PATCH 00/18] Package Updates and patches Saul Wold
` (5 preceding siblings ...)
2013-10-11 15:27 ` [PATCH 06/18] libbsd: upgrade to 0.6.0 Saul Wold
@ 2013-10-11 15:27 ` Saul Wold
2013-10-11 15:27 ` [PATCH 08/18] rsync: upgrade to 3.1.0 Saul Wold
` (10 subsequent siblings)
17 siblings, 0 replies; 19+ messages in thread
From: Saul Wold @ 2013-10-11 15:27 UTC (permalink / raw)
To: openembedded-core
(From OE-Core rev: 866c2630db9c241f0d2afafb66da9d000e4b5770)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
.../man-pages/{man-pages_3.53.bb => man-pages_3.54.bb} | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
rename meta/recipes-extended/man-pages/{man-pages_3.53.bb => man-pages_3.54.bb} (82%)
diff --git a/meta/recipes-extended/man-pages/man-pages_3.53.bb b/meta/recipes-extended/man-pages/man-pages_3.54.bb
similarity index 82%
rename from meta/recipes-extended/man-pages/man-pages_3.53.bb
rename to meta/recipes-extended/man-pages/man-pages_3.54.bb
index 965adbf..1edaa23 100644
--- a/meta/recipes-extended/man-pages/man-pages_3.53.bb
+++ b/meta/recipes-extended/man-pages/man-pages_3.54.bb
@@ -7,8 +7,8 @@ LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://README;md5=0422377a748010b2b738342e24f141c1"
SRC_URI = "${KERNELORG_MIRROR}/linux/docs/${BPN}/Archive/${BP}.tar.gz"
-SRC_URI[md5sum] = "3f827368bc0e2330f61d4b4c1c98a792"
-SRC_URI[sha256sum] = "618715dd7e5536ba819710436a76cd897585447a0cf9bf1af270ca83fbad27d5"
+SRC_URI[md5sum] = "57fa37123b6dd09e06b9d1b0b4aee8b6"
+SRC_URI[sha256sum] = "e5d6d61a8de48bc27a1a8135c20c740ee33d35970f0859bfe14aef34253d9df8"
RDEPENDS_${PN} = "man"
--
1.8.3.1
^ permalink raw reply related [flat|nested] 19+ messages in thread* [PATCH 08/18] rsync: upgrade to 3.1.0
2013-10-11 15:27 [PATCH 00/18] Package Updates and patches Saul Wold
` (6 preceding siblings ...)
2013-10-11 15:27 ` [PATCH 07/18] man-pages: upgrade to 3.54 Saul Wold
@ 2013-10-11 15:27 ` Saul Wold
2013-10-11 15:27 ` [PATCH 09/18] util-macros: upgrade to 1.17.1 Saul Wold
` (9 subsequent siblings)
17 siblings, 0 replies; 19+ messages in thread
From: Saul Wold @ 2013-10-11 15:27 UTC (permalink / raw)
To: openembedded-core
(From OE-Core rev: abf242bf2336b4d2161d0d5ab27cf63b93dde84b)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
meta/recipes-devtools/rsync/{rsync_3.0.9.bb => rsync_3.1.0.bb} | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
rename meta/recipes-devtools/rsync/{rsync_3.0.9.bb => rsync_3.1.0.bb} (82%)
diff --git a/meta/recipes-devtools/rsync/rsync_3.0.9.bb b/meta/recipes-devtools/rsync/rsync_3.1.0.bb
similarity index 82%
rename from meta/recipes-devtools/rsync/rsync_3.0.9.bb
rename to meta/recipes-devtools/rsync/rsync_3.1.0.bb
index e296555..72c072d 100644
--- a/meta/recipes-devtools/rsync/rsync_3.0.9.bb
+++ b/meta/recipes-devtools/rsync/rsync_3.1.0.bb
@@ -1,11 +1,10 @@
require rsync.inc
-PR = "r0"
SRC_URI += "file://acinclude.m4"
-SRC_URI[md5sum] = "5ee72266fe2c1822333c407e1761b92b"
-SRC_URI[sha256sum] = "30f10f8dd5490d28240d4271bb652b1da7a60b22ed2b9ae28090668de9247c05"
+SRC_URI[md5sum] = "3be148772a33224771a8d4d2a028b132"
+SRC_URI[sha256sum] = "81ca23f77fc9b957eb9845a6024f41af0ff0c619b7f38576887c63fa38e2394e"
EXTRA_OECONF += "--disable-xattr-support --disable-acl-support"
--
1.8.3.1
^ permalink raw reply related [flat|nested] 19+ messages in thread* [PATCH 09/18] util-macros: upgrade to 1.17.1
2013-10-11 15:27 [PATCH 00/18] Package Updates and patches Saul Wold
` (7 preceding siblings ...)
2013-10-11 15:27 ` [PATCH 08/18] rsync: upgrade to 3.1.0 Saul Wold
@ 2013-10-11 15:27 ` Saul Wold
2013-10-11 15:27 ` [PATCH 10/18] file: Update to 5.15 Saul Wold
` (8 subsequent siblings)
17 siblings, 0 replies; 19+ messages in thread
From: Saul Wold @ 2013-10-11 15:27 UTC (permalink / raw)
To: openembedded-core
(From OE-Core rev: c96498dfbbdc85caf81e39a20ebfc1af6ab955e0)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
.../xorg-util/{util-macros_1.17.bb => util-macros_1.17.1.bb} | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
rename meta/recipes-graphics/xorg-util/{util-macros_1.17.bb => util-macros_1.17.1.bb} (74%)
diff --git a/meta/recipes-graphics/xorg-util/util-macros_1.17.bb b/meta/recipes-graphics/xorg-util/util-macros_1.17.1.bb
similarity index 74%
rename from meta/recipes-graphics/xorg-util/util-macros_1.17.bb
rename to meta/recipes-graphics/xorg-util/util-macros_1.17.1.bb
index 7698e7a..9274a3a 100644
--- a/meta/recipes-graphics/xorg-util/util-macros_1.17.bb
+++ b/meta/recipes-graphics/xorg-util/util-macros_1.17.1.bb
@@ -8,7 +8,6 @@ LICENSE = "MIT & MIT-style"
LIC_FILES_CHKSUM = "file://COPYING;md5=1970511fddd439b07a6ba789d28ff662"
PE = "1"
-PR = "r0"
# ${PN} is empty so we need to tweak -dev and -dbg package dependencies
RDEPENDS_${PN}-dev = ""
@@ -16,5 +15,5 @@ RRECOMMENDS_${PN}-dbg = "${PN}-dev (= ${EXTENDPKGV})"
BBCLASSEXTEND = "native nativesdk"
-SRC_URI[md5sum] = "e162e8921cd08c50bf17b9de5131b3f1"
-SRC_URI[sha256sum] = "a7de22d6828b2a4469d32b4744ac2fe9103fcb85e72dd70794ef77f188946371"
+SRC_URI[md5sum] = "886de1940334e097c5f66233a8393122"
+SRC_URI[sha256sum] = "67bd01d5f4713c9e9d57dc742504d06292dd9c4fb73041ea16fed034c56c622a"
--
1.8.3.1
^ permalink raw reply related [flat|nested] 19+ messages in thread* [PATCH 10/18] file: Update to 5.15
2013-10-11 15:27 [PATCH 00/18] Package Updates and patches Saul Wold
` (8 preceding siblings ...)
2013-10-11 15:27 ` [PATCH 09/18] util-macros: upgrade to 1.17.1 Saul Wold
@ 2013-10-11 15:27 ` Saul Wold
2013-10-11 15:27 ` [PATCH 11/18] tzcode: Update to 2013g Saul Wold
` (7 subsequent siblings)
17 siblings, 0 replies; 19+ messages in thread
From: Saul Wold @ 2013-10-11 15:27 UTC (permalink / raw)
To: openembedded-core
(From OE-Core rev: 562bde3d91dcd7b290ec708607e9bb2d3415077a)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
meta/recipes-devtools/file/{file_5.14.bb => file_5.15.bb} | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
rename meta/recipes-devtools/file/{file_5.14.bb => file_5.15.bb} (85%)
diff --git a/meta/recipes-devtools/file/file_5.14.bb b/meta/recipes-devtools/file/file_5.15.bb
similarity index 85%
rename from meta/recipes-devtools/file/file_5.14.bb
rename to meta/recipes-devtools/file/file_5.15.bb
index c8b902c..5589efa 100644
--- a/meta/recipes-devtools/file/file_5.14.bb
+++ b/meta/recipes-devtools/file/file_5.15.bb
@@ -10,14 +10,13 @@ LIC_FILES_CHKSUM = "file://COPYING;beginline=2;md5=6a7382872edb68d33e1a9398b6e03
DEPENDS = "zlib file-native"
DEPENDS_class-native = "zlib-native"
-PR = "r0"
SRC_URI = "ftp://ftp.astron.com/pub/file/file-${PV}.tar.gz \
file://dump \
file://filesystems"
-SRC_URI[md5sum] = "c26625f1d6773ad4bc5a87c0e315632c"
-SRC_URI[sha256sum] = "461ba01dd0900a3b7c2dcd901b04903192c07887a9c1928af0be507572c77fe4"
+SRC_URI[md5sum] = "3f99565532f548d7540912c4642d1ede"
+SRC_URI[sha256sum] = "4bd52cc614d6488127c0bddc208a2855481744d76ff0878d9c173d2a6ed564e4"
inherit autotools
--
1.8.3.1
^ permalink raw reply related [flat|nested] 19+ messages in thread* [PATCH 11/18] tzcode: Update to 2013g
2013-10-11 15:27 [PATCH 00/18] Package Updates and patches Saul Wold
` (9 preceding siblings ...)
2013-10-11 15:27 ` [PATCH 10/18] file: Update to 5.15 Saul Wold
@ 2013-10-11 15:27 ` Saul Wold
2013-10-11 15:27 ` [PATCH 12/18] tzdata: " Saul Wold
` (6 subsequent siblings)
17 siblings, 0 replies; 19+ messages in thread
From: Saul Wold @ 2013-10-11 15:27 UTC (permalink / raw)
To: openembedded-core
The updated README now mentions that some files are derived from BSD,
so update the LICENSE to be PD & BSD.
(From OE-Core rev: 0d7d8b124f1984f3593ba818a4fe22de62b1a717)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
.../{tzcode-native_2013d.bb => tzcode-native_2013g.bb} | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
rename meta/recipes-extended/tzcode/{tzcode-native_2013d.bb => tzcode-native_2013g.bb} (48%)
diff --git a/meta/recipes-extended/tzcode/tzcode-native_2013d.bb b/meta/recipes-extended/tzcode/tzcode-native_2013g.bb
similarity index 48%
rename from meta/recipes-extended/tzcode/tzcode-native_2013d.bb
rename to meta/recipes-extended/tzcode/tzcode-native_2013g.bb
index af21151..411520e 100644
--- a/meta/recipes-extended/tzcode/tzcode-native_2013d.bb
+++ b/meta/recipes-extended/tzcode/tzcode-native_2013g.bb
@@ -1,18 +1,18 @@
DESCRIPTION = "tzcode, timezone zoneinfo utils -- zic, zdump, tzselect"
-LICENSE = "PD"
+LICENSE = "PD & BSD"
-LIC_FILES_CHKSUM = "file://${WORKDIR}/README;md5=d7a19b8c6d8a28785c4cd04ff2e46d27"
+LIC_FILES_CHKSUM = "file://${WORKDIR}/README;md5=0b7570113550eb5d30aa4bd220964b8f"
# note that we allow for us to use data later than our code version
#
SRC_URI =" ftp://ftp.iana.org/tz/releases/tzcode${PV}.tar.gz;name=tzcode \
- ftp://ftp.iana.org/tz/releases/tzdata2013d.tar.gz;name=tzdata"
+ ftp://ftp.iana.org/tz/releases/tzdata2013g.tar.gz;name=tzdata"
-SRC_URI[tzdata.md5sum] = "65b6818162230fc02f86f293376c73df"
-SRC_URI[tzdata.sha256sum] = "cd1c96f0676e0edceebc6a418a2222ffb05becb41180dd9f847b9c7cef303b04"
+SRC_URI[tzcode.md5sum] = "cc2a52297310ba1a673dc60973ea3ad8"
+SRC_URI[tzcode.sha256sum] = "c7c358b459bb65cfab7b7bdd6a9689233fc393f1f9fdf4f0f46ca7dac5a9587b"
-SRC_URI[tzcode.md5sum] = "4616a9560270f180eeb9a08540636890"
-SRC_URI[tzcode.sha256sum] = "2d9eb90c94644cddb74a490d1184ef9f88efcaa7a2b1bf88be0ee9eeeab707b6"
+SRC_URI[tzdata.md5sum] = "76dbc3b5a81913fc0d824376c44a5d15"
+SRC_URI[tzdata.sha256sum] = "b6cdd3998dcc732a6ae5e101e1394f9d4d6dff68bd48a8fb78c44c2b997d3a4f"
S = "${WORKDIR}"
--
1.8.3.1
^ permalink raw reply related [flat|nested] 19+ messages in thread* [PATCH 12/18] tzdata: Update to 2013g
2013-10-11 15:27 [PATCH 00/18] Package Updates and patches Saul Wold
` (10 preceding siblings ...)
2013-10-11 15:27 ` [PATCH 11/18] tzcode: Update to 2013g Saul Wold
@ 2013-10-11 15:27 ` Saul Wold
2013-10-11 15:27 ` [PATCH 13/18] lsbinitscripts: Update to 9.50 Saul Wold
` (5 subsequent siblings)
17 siblings, 0 replies; 19+ messages in thread
From: Saul Wold @ 2013-10-11 15:27 UTC (permalink / raw)
To: openembedded-core
Add the README to LIC_FILES_CHKSUM and update LICESE since it now
mentions that some files are licensed under BSD
(From OE-Core rev: 1b9d54e446ba1e7f89d2cc19ba4ff4b008715fbc)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
.../recipes-extended/tzdata/{tzdata_2013d.bb => tzdata_2013g.bb} | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
rename meta/recipes-extended/tzdata/{tzdata_2013d.bb => tzdata_2013g.bb} (96%)
diff --git a/meta/recipes-extended/tzdata/tzdata_2013d.bb b/meta/recipes-extended/tzdata/tzdata_2013g.bb
similarity index 96%
rename from meta/recipes-extended/tzdata/tzdata_2013d.bb
rename to meta/recipes-extended/tzdata/tzdata_2013g.bb
index c0f1506..a2f6c63 100644
--- a/meta/recipes-extended/tzdata/tzdata_2013d.bb
+++ b/meta/recipes-extended/tzdata/tzdata_2013g.bb
@@ -1,8 +1,9 @@
DESCRIPTION = "Timezone data"
HOMEPAGE = "ftp://elsie.nci.nih.gov/pub/"
SECTION = "base"
-LICENSE = "PD"
-LIC_FILES_CHKSUM = "file://asia;beginline=2;endline=3;md5=06468c0e84ef4d4c97045a4a29b08234"
+LICENSE = "PD & BSD"
+LIC_FILES_CHKSUM = "file://asia;beginline=2;endline=3;md5=06468c0e84ef4d4c97045a4a29b08234 \
+ file://README;md5=0b7570113550eb5d30aa4bd220964b8f"
DEPENDS = "tzcode-native"
inherit allarch
@@ -14,8 +15,8 @@ RCONFLICTS_${PN} = "timezones timezone-africa timezone-america timezone-antarcti
SRC_URI = "ftp://ftp.iana.org/tz/releases/tzdata${PV}.tar.gz;name=tzdata"
-SRC_URI[tzdata.md5sum] = "65b6818162230fc02f86f293376c73df"
-SRC_URI[tzdata.sha256sum] = "cd1c96f0676e0edceebc6a418a2222ffb05becb41180dd9f847b9c7cef303b04"
+SRC_URI[tzdata.md5sum] = "76dbc3b5a81913fc0d824376c44a5d15"
+SRC_URI[tzdata.sha256sum] = "b6cdd3998dcc732a6ae5e101e1394f9d4d6dff68bd48a8fb78c44c2b997d3a4f"
S = "${WORKDIR}"
--
1.8.3.1
^ permalink raw reply related [flat|nested] 19+ messages in thread* [PATCH 13/18] lsbinitscripts: Update to 9.50
2013-10-11 15:27 [PATCH 00/18] Package Updates and patches Saul Wold
` (11 preceding siblings ...)
2013-10-11 15:27 ` [PATCH 12/18] tzdata: " Saul Wold
@ 2013-10-11 15:27 ` Saul Wold
2013-10-11 15:27 ` [PATCH 14/18] libpng: Update to 1.6.6 Saul Wold
` (4 subsequent siblings)
17 siblings, 0 replies; 19+ messages in thread
From: Saul Wold @ 2013-10-11 15:27 UTC (permalink / raw)
To: openembedded-core
(From OE-Core rev: 9fc6cf7a16b2c6e0f0e1bceec7e89a378b4bd9f6)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
.../lsb/{lsbinitscripts_9.48.bb => lsbinitscripts_9.50.bb} | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
rename meta/recipes-extended/lsb/{lsbinitscripts_9.48.bb => lsbinitscripts_9.50.bb} (78%)
diff --git a/meta/recipes-extended/lsb/lsbinitscripts_9.48.bb b/meta/recipes-extended/lsb/lsbinitscripts_9.50.bb
similarity index 78%
rename from meta/recipes-extended/lsb/lsbinitscripts_9.48.bb
rename to meta/recipes-extended/lsb/lsbinitscripts_9.50.bb
index 3011f98..3071b6a 100644
--- a/meta/recipes-extended/lsb/lsbinitscripts_9.48.bb
+++ b/meta/recipes-extended/lsb/lsbinitscripts_9.50.bb
@@ -6,12 +6,12 @@ DEPENDS = "popt glib-2.0"
LIC_FILES_CHKSUM = "file://COPYING;md5=ebf4e8b49780ab187d51bd26aaa022c6"
S="${WORKDIR}/initscripts-${PV}"
-SRC_URI = "http://pkgs.fedoraproject.org/repo/pkgs/initscripts/initscripts-9.48.tar.bz2/7dfab81a5a8d3f0dea5ba55e391c26f3/initscripts-9.48.tar.bz2 \
+SRC_URI = "http://pkgs.fedoraproject.org/repo/pkgs/initscripts/initscripts-9.50.tar.bz2/7252642952d33be10cc00beb862c7b7b/initscripts-9.50.tar.bz2 \
file://functions.patch \
"
-SRC_URI[md5sum] = "7dfab81a5a8d3f0dea5ba55e391c26f3"
-SRC_URI[sha256sum] = "5f786121269383d81117532877f6488b48c52a544e0013528dc52c8924f70455"
+SRC_URI[md5sum] = "7252642952d33be10cc00beb862c7b7b"
+SRC_URI[sha256sum] = "1d8fb32b9a7de0c24437acdab27d71deb58c05314f81978ec2aea574fba862e0"
inherit update-alternatives
--
1.8.3.1
^ permalink raw reply related [flat|nested] 19+ messages in thread* [PATCH 14/18] libpng: Update to 1.6.6
2013-10-11 15:27 [PATCH 00/18] Package Updates and patches Saul Wold
` (12 preceding siblings ...)
2013-10-11 15:27 ` [PATCH 13/18] lsbinitscripts: Update to 9.50 Saul Wold
@ 2013-10-11 15:27 ` Saul Wold
2013-10-11 15:27 ` [PATCH 15/18] sqlite3: update to 3.8.0.2 Saul Wold
` (3 subsequent siblings)
17 siblings, 0 replies; 19+ messages in thread
From: Saul Wold @ 2013-10-11 15:27 UTC (permalink / raw)
To: openembedded-core
License Checksum changed due to date updates in files and lines moving.
(From OE-Core rev: 14bcc9eeb486203d6c80ed414a92d00f0c52b9b7)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
.../libpng/{libpng_1.6.3.bb => libpng_1.6.6.bb} | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
rename meta/recipes-multimedia/libpng/{libpng_1.6.3.bb => libpng_1.6.6.bb} (62%)
diff --git a/meta/recipes-multimedia/libpng/libpng_1.6.3.bb b/meta/recipes-multimedia/libpng/libpng_1.6.6.bb
similarity index 62%
rename from meta/recipes-multimedia/libpng/libpng_1.6.3.bb
rename to meta/recipes-multimedia/libpng/libpng_1.6.6.bb
index bf84b3c..376dd53 100644
--- a/meta/recipes-multimedia/libpng/libpng_1.6.3.bb
+++ b/meta/recipes-multimedia/libpng/libpng_1.6.6.bb
@@ -3,16 +3,18 @@ DESCRIPTION = "PNG Library"
HOMEPAGE = "http://www.libpng.org/"
SECTION = "libs"
LICENSE = "Libpng"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=6a42d0002ce5c11e4a529c29f78d13dd \
- file://png.h;beginline=207;endline=321;md5=de933190ded7f9d6c22110c8509ea85a"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=2ebec5fb1db10234542f80fdd7117e25 \
+ file://png.h;endline=15;md5=41143e20c803af0a376888699ce0980e \
+ file://png.h;beginline=209;endline=323;md5=d30ef0b1dd12d869cb3c6bdb3678e5f4"
DEPENDS = "zlib"
LIBV = "16"
SRC_URI = "${SOURCEFORGE_MIRROR}/project/libpng/libpng${LIBV}/${PV}/libpng-${PV}.tar.xz \
file://0001-configure-lower-automake-requirement.patch \
"
-SRC_URI[md5sum] = "9307f8ab04f4be3c1889ffb504f0fe5c"
-SRC_URI[sha256sum] = "c5ecc0d38663b944a828145ed59cf15dfbad2217512875bc05ecf9b92afa0f45"
+
+SRC_URI[md5sum] = "3a41dcd58bcac7cc191c2ec80c7fb2ac"
+SRC_URI[sha256sum] = "0407965a0057af7a9e4cefe27c062f517d9ad701cdfd20aa91afb6a84f214e70"
inherit autotools binconfig pkgconfig
--
1.8.3.1
^ permalink raw reply related [flat|nested] 19+ messages in thread* [PATCH 15/18] sqlite3: update to 3.8.0.2
2013-10-11 15:27 [PATCH 00/18] Package Updates and patches Saul Wold
` (13 preceding siblings ...)
2013-10-11 15:27 ` [PATCH 14/18] libpng: Update to 1.6.6 Saul Wold
@ 2013-10-11 15:27 ` Saul Wold
2013-10-11 15:27 ` [PATCH 16/18] kconfig-frontends: Update to 3.11.0.0 Saul Wold
` (2 subsequent siblings)
17 siblings, 0 replies; 19+ messages in thread
From: Saul Wold @ 2013-10-11 15:27 UTC (permalink / raw)
To: openembedded-core
(From OE-Core rev: 90f1f3460f8fcd5d3b4e5096e2cb4cd90ffdfb20)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
.../recipes-support/sqlite/{sqlite3_3080001.bb => sqlite3_3080002.bb} | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
rename meta/recipes-support/sqlite/{sqlite3_3080001.bb => sqlite3_3080002.bb} (60%)
diff --git a/meta/recipes-support/sqlite/sqlite3_3080001.bb b/meta/recipes-support/sqlite/sqlite3_3080002.bb
similarity index 60%
rename from meta/recipes-support/sqlite/sqlite3_3080001.bb
rename to meta/recipes-support/sqlite/sqlite3_3080002.bb
index 692e56a..91dc6dd 100644
--- a/meta/recipes-support/sqlite/sqlite3_3080001.bb
+++ b/meta/recipes-support/sqlite/sqlite3_3080002.bb
@@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://sqlite3.h;endline=11;md5=65f0a57ca6928710b418c094b357
SRC_URI = "http://www.sqlite.org/2013/sqlite-autoconf-${PV}.tar.gz"
-SRC_URI[md5sum] = "ee32c96e5db6c6d651c7c9b71082cf7c"
-SRC_URI[sha256sum] = "1d92ccfca5629701b207e57e86fdf0a01d8dca61c60e1246f92ec8d87408cf36"
+SRC_URI[md5sum] = "6d6cc639a4da04fbbdda7b1a1a01b386"
+SRC_URI[sha256sum] = "fca3a0a12f94dc92a6d9e700c3f6cab6cd4e79214bd7b6f13717a10f4bcfddb2"
S = "${WORKDIR}/sqlite-autoconf-${PV}"
--
1.8.3.1
^ permalink raw reply related [flat|nested] 19+ messages in thread* [PATCH 16/18] kconfig-frontends: Update to 3.11.0.0
2013-10-11 15:27 [PATCH 00/18] Package Updates and patches Saul Wold
` (14 preceding siblings ...)
2013-10-11 15:27 ` [PATCH 15/18] sqlite3: update to 3.8.0.2 Saul Wold
@ 2013-10-11 15:27 ` Saul Wold
2013-10-11 15:27 ` [PATCH 17/18] kmod: Add patch to fix seperate build dir of ptest Saul Wold
2013-10-11 15:27 ` [PATCH 18/18] kmod: Update to Rev 15 via git Saul Wold
17 siblings, 0 replies; 19+ messages in thread
From: Saul Wold @ 2013-10-11 15:27 UTC (permalink / raw)
To: openembedded-core
(From OE-Core rev: 83e265e23b258a8d5970841624f1d8d747c8f328)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
.../{kconfig-frontends_3.10.0.0.bb => kconfig-frontends_3.11.0.0.bb} | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
rename meta/recipes-devtools/kconfig-frontends/{kconfig-frontends_3.10.0.0.bb => kconfig-frontends_3.11.0.0.bb} (89%)
diff --git a/meta/recipes-devtools/kconfig-frontends/kconfig-frontends_3.10.0.0.bb b/meta/recipes-devtools/kconfig-frontends/kconfig-frontends_3.11.0.0.bb
similarity index 89%
rename from meta/recipes-devtools/kconfig-frontends/kconfig-frontends_3.10.0.0.bb
rename to meta/recipes-devtools/kconfig-frontends/kconfig-frontends_3.11.0.0.bb
index 901f115..e47c4d7 100644
--- a/meta/recipes-devtools/kconfig-frontends/kconfig-frontends_3.10.0.0.bb
+++ b/meta/recipes-devtools/kconfig-frontends/kconfig-frontends_3.11.0.0.bb
@@ -13,8 +13,8 @@ SECTION = "devel"
DEPENDS += "ncurses flex bison gperf pkgconfig-native"
SRC_URI = "http://ymorin.is-a-geek.org/download/${BPN}/${BP}.tar.xz"
-SRC_URI[md5sum] = "1ebf13983eb5b2ce960d131cae290cad"
-SRC_URI[sha256sum] = "442a3794b6dd9427f411ecec25dccab1a4bfcf07fe734f62d40e538afd1f0c8a"
+SRC_URI[md5sum] = "b6bd173a39cc32f5e4a580fb1db2e677"
+SRC_URI[sha256sum] = "f4bbd7a2727bef3bb0693b37756457c47f2a08e1ed534cb11e4c8640489e6c8e"
S = "${WORKDIR}/${BPN}-${PV}"
--
1.8.3.1
^ permalink raw reply related [flat|nested] 19+ messages in thread* [PATCH 17/18] kmod: Add patch to fix seperate build dir of ptest
2013-10-11 15:27 [PATCH 00/18] Package Updates and patches Saul Wold
` (15 preceding siblings ...)
2013-10-11 15:27 ` [PATCH 16/18] kconfig-frontends: Update to 3.11.0.0 Saul Wold
@ 2013-10-11 15:27 ` Saul Wold
2013-10-11 15:27 ` [PATCH 18/18] kmod: Update to Rev 15 via git Saul Wold
17 siblings, 0 replies; 19+ messages in thread
From: Saul Wold @ 2013-10-11 15:27 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
meta/recipes-kernel/kmod/kmod.inc | 1 +
.../kmod/kmod/fix-seperatebuilddir.patch | 34 ++++++++++++++++++++++
2 files changed, 35 insertions(+)
create mode 100644 meta/recipes-kernel/kmod/kmod/fix-seperatebuilddir.patch
diff --git a/meta/recipes-kernel/kmod/kmod.inc b/meta/recipes-kernel/kmod/kmod.inc
index 633258b..880a53a 100644
--- a/meta/recipes-kernel/kmod/kmod.inc
+++ b/meta/recipes-kernel/kmod/kmod.inc
@@ -20,6 +20,7 @@ SRC_URI = "git://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git \
file://run-ptest \
file://ptest.patch \
file://remove_parallel_tests.patch \
+ file://fix-seperatebuilddir.patch \
"
SRCREV = "3b38c7fcb58be4ddc34f90454c5f5dc3693d2d85"
diff --git a/meta/recipes-kernel/kmod/kmod/fix-seperatebuilddir.patch b/meta/recipes-kernel/kmod/kmod/fix-seperatebuilddir.patch
new file mode 100644
index 0000000..b090eb5
--- /dev/null
+++ b/meta/recipes-kernel/kmod/kmod/fix-seperatebuilddir.patch
@@ -0,0 +1,34 @@
+
+If we are not building in the existing source tree, the testsuite
+directory will not exist so the cp of the stamp-rootfs would fail.
+
+Also added buildtest-TESTS so they could be build in the cross env,
+without running the tests.
+
+Upstream-Status: Accepted
+
+Signed-off-by: Saul Wold <sgw@linux.intel.com>
+
+Index: git/Makefile.am
+===================================================================
+--- git.orig/Makefile.am
++++ git/Makefile.am
+@@ -131,7 +131,7 @@ endif
+
+ ROOTFS = testsuite/rootfs
+ ROOTFS_PRISTINE = $(top_srcdir)/testsuite/rootfs-pristine
+-CREATE_ROOTFS = $(AM_V_GEN) ( $(RM) -rf $(ROOTFS) && \
++CREATE_ROOTFS = $(AM_V_GEN) ( $(RM) -rf $(ROOTFS) && mkdir -p $(dir $(ROOTFS)) && \
+ cp -r $(ROOTFS_PRISTINE) $(ROOTFS) && \
+ touch testsuite/stamp-rootfs && \
+ find $(ROOTFS) -type d -exec chmod +w {} \; )
+@@ -217,6 +217,9 @@ DISTCHECK_CONFIGURE_FLAGS=--enable-gtk-d
+
+ distclean-local: $(DISTCLEAN_LOCAL_HOOKS)
+
++buildtest-TESTS:
++ $(MAKE) $(AM_MAKEFLAGS) $(check_LTLIBRARIES) $(check_PROGRAMS)
++
+ install-ptest:
+ @$(MKDIR_P) $(DESTDIR)/testsuite
+ @for file in $(TESTSUITE); do \
--
1.8.3.1
^ permalink raw reply related [flat|nested] 19+ messages in thread* [PATCH 18/18] kmod: Update to Rev 15 via git
2013-10-11 15:27 [PATCH 00/18] Package Updates and patches Saul Wold
` (16 preceding siblings ...)
2013-10-11 15:27 ` [PATCH 17/18] kmod: Add patch to fix seperate build dir of ptest Saul Wold
@ 2013-10-11 15:27 ` Saul Wold
17 siblings, 0 replies; 19+ messages in thread
From: Saul Wold @ 2013-10-11 15:27 UTC (permalink / raw)
To: openembedded-core
Also nail down a previously floating dependancy on zlib, which is required for ptest
Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
meta/recipes-kernel/kmod/kmod-native_git.bb | 3 +--
meta/recipes-kernel/kmod/kmod.inc | 12 ++++++------
meta/recipes-kernel/kmod/kmod_git.bb | 6 +++---
3 files changed, 10 insertions(+), 11 deletions(-)
diff --git a/meta/recipes-kernel/kmod/kmod-native_git.bb b/meta/recipes-kernel/kmod/kmod-native_git.bb
index d008cbf..fccc39b 100644
--- a/meta/recipes-kernel/kmod/kmod-native_git.bb
+++ b/meta/recipes-kernel/kmod/kmod-native_git.bb
@@ -4,8 +4,7 @@
require kmod.inc
inherit native
-SRC_URI += "file://fix-undefined-O_CLOEXEC.patch \
- file://0001-Fix-build-with-older-gcc-4.6.patch \
+SRC_URI += "file://0001-Fix-build-with-older-gcc-4.6.patch \
file://Change-to-calling-bswap_-instead-of-htobe-and-be-toh.patch \
"
diff --git a/meta/recipes-kernel/kmod/kmod.inc b/meta/recipes-kernel/kmod/kmod.inc
index 880a53a..8a18547 100644
--- a/meta/recipes-kernel/kmod/kmod.inc
+++ b/meta/recipes-kernel/kmod/kmod.inc
@@ -8,13 +8,17 @@ LICENSE = "GPL-2.0+ & LGPL-2.1+"
LICENSE_libkmod = "LGPL-2.1+"
SECTION = "base"
-DEPENDS += "pkgconfig-native"
+DEPENDS += "pkgconfig-native zlib"
LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe \
file://libkmod/COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343 \
"
inherit autotools gtk-doc ptest
+SRCREV = "18811d22e9923893555b88a482aa967db0e7892a"
+# Lookout for PV bump too when SRCREV is changed
+PV = "15+git${SRCPV}"
+
SRC_URI = "git://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git \
file://depmod-search.conf \
file://run-ptest \
@@ -23,14 +27,10 @@ SRC_URI = "git://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git \
file://fix-seperatebuilddir.patch \
"
-SRCREV = "3b38c7fcb58be4ddc34f90454c5f5dc3693d2d85"
-# Lookout for PV bump too when SRCREV is changed
-PV = "14"
-
S = "${WORKDIR}/git"
EXTRA_AUTORECONF += "--install --symlink"
-EXTRA_OECONF +="--enable-debug --enable-logging --enable-tools --disable-manpages"
+EXTRA_OECONF +="--enable-debug --enable-logging --enable-tools --disable-manpages --with-zlib"
do_configure_prepend () {
gtkdocize --docdir ${S}/libkmod/docs || touch ${S}/libkmod/docs/gtk-doc.make
diff --git a/meta/recipes-kernel/kmod/kmod_git.bb b/meta/recipes-kernel/kmod/kmod_git.bb
index ebecbcc..f90b9aa 100644
--- a/meta/recipes-kernel/kmod/kmod_git.bb
+++ b/meta/recipes-kernel/kmod/kmod_git.bb
@@ -3,8 +3,6 @@
require kmod.inc
-PV_append = "+git${SRCPV}"
-
PROVIDES += "module-init-tools-insmod-static module-init-tools-depmod module-init-tools"
RPROVIDES_${PN} += "module-init-tools-insmod-static module-init-tools-depmod module-init-tools"
RCONFLICTS_${PN} += "module-init-tools-insmod-static module-init-tools-depmod module-init-tools"
@@ -34,6 +32,7 @@ do_install_append () {
# install depmod.d file for search/ dir
install -Dm644 "${WORKDIR}/depmod-search.conf" "${D}${base_libdir}/depmod.d/search.conf"
+
}
do_compile_prepend() {
@@ -64,7 +63,8 @@ ALTERNATIVE_TARGET[lsmod] = "${base_bindir}/lsmod.${BPN}"
ALTERNATIVE_LINK_NAME[depmod] = "${base_sbindir}/depmod"
-PACKAGES =+ "libkmod"
+PACKAGES =+ "libkmod ${PN}-bash-completion"
FILES_libkmod = "${base_libdir}/libkmod*${SOLIBS} ${libdir}/libkmod*${SOLIBS}"
FILES_${PN} += "${base_libdir}/depmod.d ${base_libdir}/modprobe.d"
+FILES_${PN}-bash-completion = "${datadir}/bash-completion"
--
1.8.3.1
^ permalink raw reply related [flat|nested] 19+ messages in thread