All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] iproute2: upgrade 5.3.0 -> 5.5.0
@ 2020-01-27 21:59 Changhyeok Bae
  2020-01-27 21:59 ` [PATCH 2/3] iw: upgrade 5.3 -> 5.4 Changhyeok Bae
  2020-01-27 21:59 ` [PATCH 3/3] iptables: upgrade 1.8.3 -> 1.8.4 Changhyeok Bae
  0 siblings, 2 replies; 3+ messages in thread
From: Changhyeok Bae @ 2020-01-27 21:59 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Changhyeok Bae <changhyeok.bae@gmail.com>
---
 .../iproute2/{iproute2_5.3.0.bb => iproute2_5.5.0.bb}         | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-connectivity/iproute2/{iproute2_5.3.0.bb => iproute2_5.5.0.bb} (66%)

diff --git a/meta/recipes-connectivity/iproute2/iproute2_5.3.0.bb b/meta/recipes-connectivity/iproute2/iproute2_5.5.0.bb
similarity index 66%
rename from meta/recipes-connectivity/iproute2/iproute2_5.3.0.bb
rename to meta/recipes-connectivity/iproute2/iproute2_5.5.0.bb
index 75772d4696..ad0ab13c9a 100644
--- a/meta/recipes-connectivity/iproute2/iproute2_5.3.0.bb
+++ b/meta/recipes-connectivity/iproute2/iproute2_5.5.0.bb
@@ -4,8 +4,8 @@ SRC_URI = "${KERNELORG_MIRROR}/linux/utils/net/${BPN}/${BP}.tar.xz \
            file://0001-libc-compat.h-add-musl-workaround.patch \
           "
 
-SRC_URI[md5sum] = "227404413c8d6db649d6188ead1e5a6e"
-SRC_URI[sha256sum] = "cb1c1e45993a3bd2438543fd4332d70f1726a6e6ff97dc613a8258c993117b3f"
+SRC_URI[md5sum] = "ee8e2cdb416d4a8ef39525d39ab7c2d0"
+SRC_URI[sha256sum] = "bac543435cac208a11db44c9cc8e35aa902befef8750594654ee71941c388f7b"
 
 # CFLAGS are computed in Makefile and reference CCOPTS
 #
-- 
2.23.0



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH 2/3] iw: upgrade 5.3 -> 5.4
  2020-01-27 21:59 [PATCH 1/3] iproute2: upgrade 5.3.0 -> 5.5.0 Changhyeok Bae
@ 2020-01-27 21:59 ` Changhyeok Bae
  2020-01-27 21:59 ` [PATCH 3/3] iptables: upgrade 1.8.3 -> 1.8.4 Changhyeok Bae
  1 sibling, 0 replies; 3+ messages in thread
From: Changhyeok Bae @ 2020-01-27 21:59 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Changhyeok Bae <changhyeok.bae@gmail.com>
---
 .../iw/iw/separate-objdir.patch               | 24 ++++++++++++-------
 .../iw/{iw_5.3.bb => iw_5.4.bb}               |  4 ++--
 2 files changed, 18 insertions(+), 10 deletions(-)
 rename meta/recipes-connectivity/iw/{iw_5.3.bb => iw_5.4.bb} (85%)

diff --git a/meta/recipes-connectivity/iw/iw/separate-objdir.patch b/meta/recipes-connectivity/iw/iw/separate-objdir.patch
index eb01a5a14e..179fd90124 100644
--- a/meta/recipes-connectivity/iw/iw/separate-objdir.patch
+++ b/meta/recipes-connectivity/iw/iw/separate-objdir.patch
@@ -1,3 +1,6 @@
+From ff9f0a631c99fb6e2677c02bf572a5e69c70f5cf Mon Sep 17 00:00:00 2001
+From: Changhyeok Bae <changhyeok.bae@gmail.com>
+Date: Mon, 27 Jan 2020 22:48:03 +0100
 Subject: [PATCH] Support separation of SRCDIR and OBJDIR
 
 Typical use of VPATH to locate the sources.
@@ -11,12 +14,12 @@ Signed-off-by: Maxin B. John <maxin.john@intel.com>
  1 file changed, 6 insertions(+), 2 deletions(-)
 
 diff --git a/Makefile b/Makefile
-index 33aaf6a..9030796 100644
+index 90f2251..714cdb9 100644
 --- a/Makefile
 +++ b/Makefile
 @@ -1,5 +1,9 @@
  MAKEFLAGS += --no-print-directory
-
+ 
 +SRCDIR ?= $(dir $(lastword $(MAKEFILE_LIST)))
 +OBJDIR ?= $(PWD)
 +VPATH = $(SRCDIR)
@@ -24,19 +27,24 @@ index 33aaf6a..9030796 100644
  PREFIX ?= /usr
  SBINDIR ?= $(PREFIX)/sbin
  MANDIR ?= $(PREFIX)/share/man
-@@ -103,11 +107,11 @@ VERSION_OBJS := $(filter-out version.o, $(OBJS))
+@@ -92,7 +96,7 @@ all: $(ALL)
  version.c: version.sh $(patsubst %.o,%.c,$(VERSION_OBJS)) nl80211.h iw.h Makefile \
  		$(wildcard .git/index .git/refs/tags)
  	@$(NQ) ' GEN ' $@
 -	$(Q)./version.sh $@
 +	$(Q)cd $(SRCDIR) && ./version.sh $(OBJDIR)/$@
-
- %.o: %.c iw.h nl80211.h
+ 
+ nl80211-commands.inc: nl80211.h
+ 	@$(NQ) ' GEN ' $@
+@@ -100,7 +104,7 @@ nl80211-commands.inc: nl80211.h
+ 
+ %.o: %.c iw.h nl80211.h nl80211-commands.inc
  	@$(NQ) ' CC  ' $@
 -	$(Q)$(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
 +	$(Q)$(CC) -I$(SRCDIR) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
-
+ 
  ifeq ($(IW_ANDROID_BUILD),)
  iw:	$(OBJS)
---
-2.20.1 (Apple Git-117)
+-- 
+2.23.0
+
diff --git a/meta/recipes-connectivity/iw/iw_5.3.bb b/meta/recipes-connectivity/iw/iw_5.4.bb
similarity index 85%
rename from meta/recipes-connectivity/iw/iw_5.3.bb
rename to meta/recipes-connectivity/iw/iw_5.4.bb
index f7f13f5a30..9f58e49709 100644
--- a/meta/recipes-connectivity/iw/iw_5.3.bb
+++ b/meta/recipes-connectivity/iw/iw_5.4.bb
@@ -14,8 +14,8 @@ SRC_URI = "http://www.kernel.org/pub/software/network/iw/${BP}.tar.gz \
            file://separate-objdir.patch \
 "
 
-SRC_URI[md5sum] = "6d4d1c0ee34f3a7bda0e6aafcd7aaf31"
-SRC_URI[sha256sum] = "175abbfce86348c0b70e778c13a94c0bfc9abc7a506d2bd608261583aeedf64a"
+SRC_URI[md5sum] = "08a4f581a39dc62fa85d3af796d844b6"
+SRC_URI[sha256sum] = "943cd2446a6c7242fded3766d054ab2a214a3514b9a8b7e942fed8fb13c1370c"
 
 inherit pkgconfig
 
-- 
2.23.0



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH 3/3] iptables: upgrade 1.8.3 -> 1.8.4
  2020-01-27 21:59 [PATCH 1/3] iproute2: upgrade 5.3.0 -> 5.5.0 Changhyeok Bae
  2020-01-27 21:59 ` [PATCH 2/3] iw: upgrade 5.3 -> 5.4 Changhyeok Bae
@ 2020-01-27 21:59 ` Changhyeok Bae
  1 sibling, 0 replies; 3+ messages in thread
From: Changhyeok Bae @ 2020-01-27 21:59 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Changhyeok Bae <changhyeok.bae@gmail.com>
---
 .../iptables/{iptables_1.8.3.bb => iptables_1.8.4.bb}         | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-extended/iptables/{iptables_1.8.3.bb => iptables_1.8.4.bb} (96%)

diff --git a/meta/recipes-extended/iptables/iptables_1.8.3.bb b/meta/recipes-extended/iptables/iptables_1.8.4.bb
similarity index 96%
rename from meta/recipes-extended/iptables/iptables_1.8.3.bb
rename to meta/recipes-extended/iptables/iptables_1.8.4.bb
index 96d195d9d0..cf1388ce9c 100644
--- a/meta/recipes-extended/iptables/iptables_1.8.3.bb
+++ b/meta/recipes-extended/iptables/iptables_1.8.4.bb
@@ -16,8 +16,8 @@ SRC_URI = "http://netfilter.org/projects/iptables/files/iptables-${PV}.tar.bz2 \
            file://ip6tables.service \
            file://ip6tables.rules \
 "
-SRC_URI[md5sum] = "29de711d15c040c402cf3038c69ff513"
-SRC_URI[sha256sum] = "a23cac034181206b4545f4e7e730e76e08b5f3dd78771ba9645a6756de9cdd80"
+SRC_URI[md5sum] = "9b201107957fbf62709c3d8226239b0d"
+SRC_URI[sha256sum] = "993a3a5490a544c2cbf2ef15cf7e7ed21af1845baf228318d5c36ef8827e157c"
 
 SYSTEMD_SERVICE_${PN} = "\
     iptables.service \
-- 
2.23.0



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-01-27 21:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-27 21:59 [PATCH 1/3] iproute2: upgrade 5.3.0 -> 5.5.0 Changhyeok Bae
2020-01-27 21:59 ` [PATCH 2/3] iw: upgrade 5.3 -> 5.4 Changhyeok Bae
2020-01-27 21:59 ` [PATCH 3/3] iptables: upgrade 1.8.3 -> 1.8.4 Changhyeok Bae

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.