* [PATCH 0/1] Upgrade bind to fix CVE issues
@ 2015-09-18 3:22 kai.kang
2015-09-18 3:22 ` [PATCH 1/1] bind: 9.10.2-P4 -> 9.10.3 kai.kang
0 siblings, 1 reply; 7+ messages in thread
From: kai.kang @ 2015-09-18 3:22 UTC (permalink / raw)
To: openembedded-core
From: Kai Kang <kai.kang@windriver.com>
Build for qemumips and qemux86-64.
The following changes since commit ea562de57590c966cd5a75fda8defecd397e6436:
qemu: Update to upstream patches (2015-09-14 20:46:40 +0100)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib kangkai/bind
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=kangkai/bind
Kai Kang (1):
bind: 9.10.2-P4 -> 9.10.3
.../0001-build-use-pkg-config-to-find-libxml2.patch | 20 ++++++++++++++------
.../bind/{bind_9.10.2-P4.bb => bind_9.10.3.bb} | 4 ++--
2 files changed, 16 insertions(+), 8 deletions(-)
rename meta/recipes-connectivity/bind/{bind_9.10.2-P4.bb => bind_9.10.3.bb} (96%)
--
1.9.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH 1/1] bind: 9.10.2-P4 -> 9.10.3
2015-09-18 3:22 [PATCH 0/1] Upgrade bind to fix CVE issues kai.kang
@ 2015-09-18 3:22 ` kai.kang
2015-09-18 10:53 ` Burton, Ross
0 siblings, 1 reply; 7+ messages in thread
From: kai.kang @ 2015-09-18 3:22 UTC (permalink / raw)
To: openembedded-core
From: Kai Kang <kai.kang@windriver.com>
Upgrade bind to 9.10.3 to fix CVE issues.
* update context of 0001-build-use-pkg-config-to-find-libxml2.patch for
new version.
[YOCTO #8281]
Signed-off-by: Kai Kang <kai.kang@windriver.com>
---
.../0001-build-use-pkg-config-to-find-libxml2.patch | 20 ++++++++++++++------
.../bind/{bind_9.10.2-P4.bb => bind_9.10.3.bb} | 4 ++--
2 files changed, 16 insertions(+), 8 deletions(-)
rename meta/recipes-connectivity/bind/{bind_9.10.2-P4.bb => bind_9.10.3.bb} (96%)
diff --git a/meta/recipes-connectivity/bind/bind/0001-build-use-pkg-config-to-find-libxml2.patch b/meta/recipes-connectivity/bind/bind/0001-build-use-pkg-config-to-find-libxml2.patch
index cb5251d..7f2f514 100644
--- a/meta/recipes-connectivity/bind/bind/0001-build-use-pkg-config-to-find-libxml2.patch
+++ b/meta/recipes-connectivity/bind/bind/0001-build-use-pkg-config-to-find-libxml2.patch
@@ -4,15 +4,18 @@ libxml2.
Upstream-Status: Inappropriate
Signed-off-by: Ross Burton <ross.burton@intel.com>
+Update context for version 9.10.3.
+
+Signed-off-by: Kai Kang <kai.kang@windriver.com>
---
- configure.in | 18 +++---------------
- 1 file changed, 3 insertions(+), 15 deletions(-)
+ configure.in | 23 +++--------------------
+ 1 file changed, 3 insertions(+), 20 deletions(-)
diff --git a/configure.in b/configure.in
-index d566e1c..c9ef3a6 100644
+index 0db826d..75819eb 100644
--- a/configure.in
+++ b/configure.in
-@@ -2102,21 +2102,9 @@ case "$use_libxml2" in
+@@ -2107,26 +2107,9 @@ case "$use_libxml2" in
DST_LIBXML2_INC=""
;;
auto|yes)
@@ -22,8 +25,13 @@ index d566e1c..c9ef3a6 100644
- libxml2_cflags=`xml2-config --cflags`
- ;;
- *)
-- libxml2_libs=
-- libxml2_cflags=
+- if test "$use_libxml2" = "yes" ; then
+- AC_MSG_RESULT(no)
+- AC_MSG_ERROR(required libxml2 version not available)
+- else
+- libxml2_libs=
+- libxml2_cflags=
+- fi
- ;;
- esac
- ;;
diff --git a/meta/recipes-connectivity/bind/bind_9.10.2-P4.bb b/meta/recipes-connectivity/bind/bind_9.10.3.bb
similarity index 96%
rename from meta/recipes-connectivity/bind/bind_9.10.2-P4.bb
rename to meta/recipes-connectivity/bind/bind_9.10.3.bb
index efae289..1d3c6ff 100644
--- a/meta/recipes-connectivity/bind/bind_9.10.2-P4.bb
+++ b/meta/recipes-connectivity/bind/bind_9.10.3.bb
@@ -22,8 +22,8 @@ SRC_URI = "ftp://ftp.isc.org/isc/bind9/${PV}/${BPN}-${PV}.tar.gz \
file://0001-gen.c-extend-DIRNAMESIZE-from-256-to-512.patch \
"
-SRC_URI[md5sum] = "8b1f5064837756c938eadc1537dec5c7"
-SRC_URI[sha256sum] = "c00b21ec1def212957f28efe9d10aac52d6ec515e84fbf2c42143f5d71429cb8"
+SRC_URI[md5sum] = "d8cbf04a62a139a841d4bf878087a555"
+SRC_URI[sha256sum] = "9ac33bd8754ab4b6ee449b1b2aa88e09f51cda088486f4ab1585acd920b98ff0"
ENABLE_IPV6 = "--enable-ipv6=${@bb.utils.contains('DISTRO_FEATURES', 'ipv6', 'yes', 'no', d)}"
EXTRA_OECONF = " ${ENABLE_IPV6} --with-randomdev=/dev/random --disable-threads \
--
1.9.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH 1/1] bind: 9.10.2-P4 -> 9.10.3
2015-09-18 3:22 ` [PATCH 1/1] bind: 9.10.2-P4 -> 9.10.3 kai.kang
@ 2015-09-18 10:53 ` Burton, Ross
2015-09-21 2:01 ` Kang Kai
2015-12-03 2:20 ` Kang Kai
0 siblings, 2 replies; 7+ messages in thread
From: Burton, Ross @ 2015-09-18 10:53 UTC (permalink / raw)
To: Kang Kai; +Cc: OE-core
[-- Attachment #1: Type: text/plain, Size: 232 bytes --]
On 18 September 2015 at 04:22, <kai.kang@windriver.com> wrote:
> Upgrade bind to 9.10.3 to fix CVE issues.
>
Sorry, but we just had the M3 build so can you submit this as a patch to
9.10.2-P4 instead of an upgrade?
Ross
[-- Attachment #2: Type: text/html, Size: 619 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 1/1] bind: 9.10.2-P4 -> 9.10.3
2015-09-18 10:53 ` Burton, Ross
@ 2015-09-21 2:01 ` Kang Kai
2015-10-29 14:33 ` Randy MacLeod
2015-12-03 2:20 ` Kang Kai
1 sibling, 1 reply; 7+ messages in thread
From: Kang Kai @ 2015-09-21 2:01 UTC (permalink / raw)
To: Burton, Ross; +Cc: OE-core
[-- Attachment #1: Type: text/plain, Size: 393 bytes --]
On 2015年09月18日 18:53, Burton, Ross wrote:
>
> On 18 September 2015 at 04:22, <kai.kang@windriver.com
> <mailto:kai.kang@windriver.com>> wrote:
>
> Upgrade bind to 9.10.3 to fix CVE issues.
>
>
> Sorry, but we just had the M3 build so can you submit this as a patch
> to 9.10.2-P4 instead of an upgrade?
>
> Ross
OK. I'll do that.
--
Regards,
Neil | Kai Kang
[-- Attachment #2: Type: text/html, Size: 1529 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 1/1] bind: 9.10.2-P4 -> 9.10.3
2015-09-21 2:01 ` Kang Kai
@ 2015-10-29 14:33 ` Randy MacLeod
0 siblings, 0 replies; 7+ messages in thread
From: Randy MacLeod @ 2015-10-29 14:33 UTC (permalink / raw)
To: Kang Kai, Burton, Ross; +Cc: OE-core
On 2015-09-20 10:01 PM, Kang Kai wrote:
> On 2015年09月18日 18:53, Burton, Ross wrote:
>>
>> On 18 September 2015 at 04:22, <kai.kang@windriver.com
>> <mailto:kai.kang@windriver.com>> wrote:
>>
>> Upgrade bind to 9.10.3 to fix CVE issues.
>>
>>
>> Sorry, but we just had the M3 build so can you submit this as a patch
>> to 9.10.2-P4 instead of an upgrade?
>>
>> Ross
>
> OK. I'll do that.
Ross,
Kai has been working on other things.
9.10.3 appears to be a bug fix only minor upgev.
If Kai can show that there are only bug fixes can
we accept that version for oe-core-2.0.1?
../Randy
>
> --
> Regards,
> Neil | Kai Kang
>
>
>
--
# Randy MacLeod. SMTS, Linux, Wind River
Direct: 613.963.1350 | 350 Terry Fox Drive, Suite 200, Ottawa, ON,
Canada, K2K 2W5
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 1/1] bind: 9.10.2-P4 -> 9.10.3
2015-09-18 10:53 ` Burton, Ross
2015-09-21 2:01 ` Kang Kai
@ 2015-12-03 2:20 ` Kang Kai
2015-12-07 14:05 ` Burton, Ross
1 sibling, 1 reply; 7+ messages in thread
From: Kang Kai @ 2015-12-03 2:20 UTC (permalink / raw)
To: Burton, Ross; +Cc: OE-core
[-- Attachment #1: Type: text/plain, Size: 416 bytes --]
On 2015年09月18日 18:53, Burton, Ross wrote:
>
> On 18 September 2015 at 04:22, <kai.kang@windriver.com
> <mailto:kai.kang@windriver.com>> wrote:
>
> Upgrade bind to 9.10.3 to fix CVE issues.
>
>
> Sorry, but we just had the M3 build so can you submit this as a patch
> to 9.10.2-P4 instead of an upgrade?
>
> Ross
Could we discuss this patch now? Thanks.
--
Regards,
Neil | Kai Kang
[-- Attachment #2: Type: text/html, Size: 1543 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 1/1] bind: 9.10.2-P4 -> 9.10.3
2015-12-03 2:20 ` Kang Kai
@ 2015-12-07 14:05 ` Burton, Ross
0 siblings, 0 replies; 7+ messages in thread
From: Burton, Ross @ 2015-12-07 14:05 UTC (permalink / raw)
To: Kang Kai; +Cc: OE-core
[-- Attachment #1: Type: text/plain, Size: 187 bytes --]
On 3 December 2015 at 02:20, Kang Kai <Kai.Kang@windriver.com> wrote:
> Could we discuss this patch now? Thanks.
>
Certainly. Can you rebase it to current master please?
Ross
[-- Attachment #2: Type: text/html, Size: 563 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2015-12-07 14:05 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-18 3:22 [PATCH 0/1] Upgrade bind to fix CVE issues kai.kang
2015-09-18 3:22 ` [PATCH 1/1] bind: 9.10.2-P4 -> 9.10.3 kai.kang
2015-09-18 10:53 ` Burton, Ross
2015-09-21 2:01 ` Kang Kai
2015-10-29 14:33 ` Randy MacLeod
2015-12-03 2:20 ` Kang Kai
2015-12-07 14:05 ` Burton, Ross
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox