* [Buildroot] [PATCH 0/2] Update Xen and fix build issue @ 2016-12-07 19:48 Alistair Francis 2016-12-07 19:48 ` [Buildroot] [PATCH 1/2] package/xen: Bump Xen to 4.7.1 Alistair Francis 2016-12-07 19:48 ` [Buildroot] [PATCH 2/2] package/xen: Disable strict unused-const-variable checking Alistair Francis 0 siblings, 2 replies; 7+ messages in thread From: Alistair Francis @ 2016-12-07 19:48 UTC (permalink / raw) To: buildroot This patch series updates Xen to 4.7.1 and fixes a build issue that previously existed. NOTE: Xen 4.8.0 was released today, but that failed to compile so it will be more work. At the moment Xen doesn't build so fix that first. Alistair Francis (2): package/xen: Bump Xen to 4.7.1 package/xen: Disable strict unused-const-variable checking ...-Disable-strtict-unused-const-variable-ch.patch | 27 ++++++++++++++++++++++ package/xen/xen.hash | 2 +- package/xen/xen.mk | 2 +- 3 files changed, 29 insertions(+), 2 deletions(-) create mode 100644 package/xen/0003-tools-libxl-Disable-strtict-unused-const-variable-ch.patch -- 2.7.4 ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH 1/2] package/xen: Bump Xen to 4.7.1 2016-12-07 19:48 [Buildroot] [PATCH 0/2] Update Xen and fix build issue Alistair Francis @ 2016-12-07 19:48 ` Alistair Francis 2016-12-07 19:48 ` [Buildroot] [PATCH 2/2] package/xen: Disable strict unused-const-variable checking Alistair Francis 1 sibling, 0 replies; 7+ messages in thread From: Alistair Francis @ 2016-12-07 19:48 UTC (permalink / raw) To: buildroot Signed-off-by: Alistair Francis <alistair.francis@xilinx.com> --- package/xen/xen.hash | 2 +- package/xen/xen.mk | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package/xen/xen.hash b/package/xen/xen.hash index 602e6c7..c3df243 100644 --- a/package/xen/xen.hash +++ b/package/xen/xen.hash @@ -1,2 +1,2 @@ # Locally computed -sha256 be5876144d49729572ae06142e0bb93f1c1f2695578141eff2931995add24623 xen-4.7.0.tar.gz +sha256 e87f4b0575e78657ee23d31470a15ecf1ce8c3a92a771cda46bbcd4d0d671ffe xen-4.7.1.tar.gz diff --git a/package/xen/xen.mk b/package/xen/xen.mk index e2c797f..7d32e52 100644 --- a/package/xen/xen.mk +++ b/package/xen/xen.mk @@ -4,7 +4,7 @@ # ################################################################################ -XEN_VERSION = 4.7.0 +XEN_VERSION = 4.7.1 XEN_SITE = http://bits.xensource.com/oss-xen/release/$(XEN_VERSION) XEN_LICENSE = GPLv2 XEN_LICENSE_FILES = COPYING -- 2.7.4 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH 2/2] package/xen: Disable strict unused-const-variable checking 2016-12-07 19:48 [Buildroot] [PATCH 0/2] Update Xen and fix build issue Alistair Francis 2016-12-07 19:48 ` [Buildroot] [PATCH 1/2] package/xen: Bump Xen to 4.7.1 Alistair Francis @ 2016-12-07 19:48 ` Alistair Francis 2016-12-07 20:50 ` Thomas Petazzoni 1 sibling, 1 reply; 7+ messages in thread From: Alistair Francis @ 2016-12-07 19:48 UTC (permalink / raw) To: buildroot Signed-off-by: Alistair Francis <alistair.francis@xilinx.com> --- ...-Disable-strtict-unused-const-variable-ch.patch | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 package/xen/0003-tools-libxl-Disable-strtict-unused-const-variable-ch.patch diff --git a/package/xen/0003-tools-libxl-Disable-strtict-unused-const-variable-ch.patch b/package/xen/0003-tools-libxl-Disable-strtict-unused-const-variable-ch.patch new file mode 100644 index 0000000..2bca456 --- /dev/null +++ b/package/xen/0003-tools-libxl-Disable-strtict-unused-const-variable-ch.patch @@ -0,0 +1,27 @@ +From 3215099e9db9716dfade78880adb169bd7866192 Mon Sep 17 00:00:00 2001 +From: Alistair Francis <alistair.francis@xilinx.com> +Date: Wed, 7 Dec 2016 11:35:10 -0800 +Subject: [PATCH] tools/libxl: Disable strtict unused-const-variable checking + +Signed-off-by: Alistair Francis <alistair.francis@xilinx.com> +--- + tools/libxl/Makefile | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +diff --git a/tools/libxl/Makefile b/tools/libxl/Makefile +index defeb40..9d320d1 100644 +--- a/tools/libxl/Makefile ++++ b/tools/libxl/Makefile +@@ -12,7 +12,8 @@ XLUMAJOR = 4.7 + XLUMINOR = 0 + + CFLAGS += -Werror -Wno-format-zero-length -Wmissing-declarations \ +- -Wno-declaration-after-statement -Wformat-nonliteral ++ -Wno-declaration-after-statement -Wformat-nonliteral \ ++ -Werror=unused-const-variable=0 + CFLAGS += -I. -fPIC + + ifeq ($(CONFIG_Linux),y) +-- +2.7.4 + -- 2.7.4 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH 2/2] package/xen: Disable strict unused-const-variable checking 2016-12-07 19:48 ` [Buildroot] [PATCH 2/2] package/xen: Disable strict unused-const-variable checking Alistair Francis @ 2016-12-07 20:50 ` Thomas Petazzoni 2016-12-07 23:39 ` Alistair Francis 0 siblings, 1 reply; 7+ messages in thread From: Thomas Petazzoni @ 2016-12-07 20:50 UTC (permalink / raw) To: buildroot Hello, On Wed, 7 Dec 2016 11:48:17 -0800, Alistair Francis wrote: > Signed-off-by: Alistair Francis <alistair.francis@xilinx.com> What is this patch fixing? The commit log shouldn't be empty. Is this fixing an autobuilder issue? If so, there should be a reference to it. > --- > ...-Disable-strtict-unused-const-variable-ch.patch | 27 ++++++++++++++++++++++ > 1 file changed, 27 insertions(+) > create mode 100644 package/xen/0003-tools-libxl-Disable-strtict-unused-const-variable-ch.patch > > diff --git a/package/xen/0003-tools-libxl-Disable-strtict-unused-const-variable-ch.patch b/package/xen/0003-tools-libxl-Disable-strtict-unused-const-variable-ch.patch > new file mode 100644 > index 0000000..2bca456 > --- /dev/null > +++ b/package/xen/0003-tools-libxl-Disable-strtict-unused-const-variable-ch.patch > @@ -0,0 +1,27 @@ > +From 3215099e9db9716dfade78880adb169bd7866192 Mon Sep 17 00:00:00 2001 > +From: Alistair Francis <alistair.francis@xilinx.com> > +Date: Wed, 7 Dec 2016 11:35:10 -0800 > +Subject: [PATCH] tools/libxl: Disable strtict unused-const-variable checking Typo in the tittle: strtict -> strict. Thomas -- Thomas Petazzoni, CTO, Free Electrons Embedded Linux and Kernel engineering http://free-electrons.com ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH 2/2] package/xen: Disable strict unused-const-variable checking 2016-12-07 20:50 ` Thomas Petazzoni @ 2016-12-07 23:39 ` Alistair Francis 2016-12-08 8:31 ` Thomas Petazzoni 0 siblings, 1 reply; 7+ messages in thread From: Alistair Francis @ 2016-12-07 23:39 UTC (permalink / raw) To: buildroot On Wed, Dec 7, 2016 at 12:50 PM, Thomas Petazzoni <thomas.petazzoni@free-electrons.com> wrote: > Hello, > > On Wed, 7 Dec 2016 11:48:17 -0800, Alistair Francis wrote: >> Signed-off-by: Alistair Francis <alistair.francis@xilinx.com> > > What is this patch fixing? The commit log shouldn't be empty. > > Is this fixing an autobuilder issue? If so, there should be a reference > to it. It is fixing an autobuilder issue, I have added a commit message with more details. > >> --- >> ...-Disable-strtict-unused-const-variable-ch.patch | 27 ++++++++++++++++++++++ >> 1 file changed, 27 insertions(+) >> create mode 100644 package/xen/0003-tools-libxl-Disable-strtict-unused-const-variable-ch.patch >> >> diff --git a/package/xen/0003-tools-libxl-Disable-strtict-unused-const-variable-ch.patch b/package/xen/0003-tools-libxl-Disable-strtict-unused-const-variable-ch.patch >> new file mode 100644 >> index 0000000..2bca456 >> --- /dev/null >> +++ b/package/xen/0003-tools-libxl-Disable-strtict-unused-const-variable-ch.patch >> @@ -0,0 +1,27 @@ >> +From 3215099e9db9716dfade78880adb169bd7866192 Mon Sep 17 00:00:00 2001 >> +From: Alistair Francis <alistair.francis@xilinx.com> >> +Date: Wed, 7 Dec 2016 11:35:10 -0800 >> +Subject: [PATCH] tools/libxl: Disable strtict unused-const-variable checking > > Typo in the tittle: strtict -> strict. Good catch, fixed in v2. Thanks, Alistair > > Thomas > -- > Thomas Petazzoni, CTO, Free Electrons > Embedded Linux and Kernel engineering > http://free-electrons.com ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH 2/2] package/xen: Disable strict unused-const-variable checking 2016-12-07 23:39 ` Alistair Francis @ 2016-12-08 8:31 ` Thomas Petazzoni 2016-12-08 20:11 ` Alistair Francis 0 siblings, 1 reply; 7+ messages in thread From: Thomas Petazzoni @ 2016-12-08 8:31 UTC (permalink / raw) To: buildroot Hello, On Wed, 7 Dec 2016 15:39:26 -0800, Alistair Francis wrote: > > > > What is this patch fixing? The commit log shouldn't be empty. > > > > Is this fixing an autobuilder issue? If so, there should be a reference > > to it. > > It is fixing an autobuilder issue, I have added a commit message with > more details. Good, but you still forgot (in your v2) a link to the autobuilder issue being fixed. See https://git.buildroot.org/buildroot/commit/?id=041c717ec8c251b7bca675086510840f02274967 for an example of how we reference autobuilder issues. Thanks! Thomas -- Thomas Petazzoni, CTO, Free Electrons Embedded Linux and Kernel engineering http://free-electrons.com ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH 2/2] package/xen: Disable strict unused-const-variable checking 2016-12-08 8:31 ` Thomas Petazzoni @ 2016-12-08 20:11 ` Alistair Francis 0 siblings, 0 replies; 7+ messages in thread From: Alistair Francis @ 2016-12-08 20:11 UTC (permalink / raw) To: buildroot On Thu, Dec 8, 2016 at 12:31 AM, Thomas Petazzoni <thomas.petazzoni@free-electrons.com> wrote: > Hello, > > On Wed, 7 Dec 2016 15:39:26 -0800, Alistair Francis wrote: > >> > >> > What is this patch fixing? The commit log shouldn't be empty. >> > >> > Is this fixing an autobuilder issue? If so, there should be a reference >> > to it. >> >> It is fixing an autobuilder issue, I have added a commit message with >> more details. > > Good, but you still forgot (in your v2) a link to the autobuilder issue > being fixed. See > https://git.buildroot.org/buildroot/commit/?id=041c717ec8c251b7bca675086510840f02274967 > for an example of how we reference autobuilder issues. Thanks for the example. I am sending a V3 with the autobuilder issue referenced. Thanks, Alistair > > Thanks! > > Thomas > -- > Thomas Petazzoni, CTO, Free Electrons > Embedded Linux and Kernel engineering > http://free-electrons.com > _______________________________________________ > buildroot mailing list > buildroot at busybox.net > http://lists.busybox.net/mailman/listinfo/buildroot ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2016-12-08 20:11 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2016-12-07 19:48 [Buildroot] [PATCH 0/2] Update Xen and fix build issue Alistair Francis 2016-12-07 19:48 ` [Buildroot] [PATCH 1/2] package/xen: Bump Xen to 4.7.1 Alistair Francis 2016-12-07 19:48 ` [Buildroot] [PATCH 2/2] package/xen: Disable strict unused-const-variable checking Alistair Francis 2016-12-07 20:50 ` Thomas Petazzoni 2016-12-07 23:39 ` Alistair Francis 2016-12-08 8:31 ` Thomas Petazzoni 2016-12-08 20:11 ` Alistair Francis
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox