summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-support
diff options
context:
space:
mode:
authorMark Asselstine <mark.asselstine@windriver.com>2018-06-11 10:24:31 -0400
committerBruce Ashfield <bruce.ashfield@windriver.com>2018-06-11 12:06:40 -0400
commit4b37a01d3fc80310c6c46b3abc1cc3b4d4cf6457 (patch)
treec3ab815e90ae716c1d5b87b26fd2a66d7f8d6ec1 /meta-openstack/recipes-support
parent8067b919eb28c8e9b917b63b32dd90f6c5feef29 (diff)
downloadmeta-cloud-services-4b37a01d3fc80310c6c46b3abc1cc3b4d4cf6457.tar.gz
housekeeping: patch refresh
Bitbake now prints warnings when a patch is successfully applied but there is fuzz or an offset. The following refreshes patches for several packages which report warnings when openstack-image-controller is built. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta-openstack/recipes-support')
-rw-r--r--meta-openstack/recipes-support/tgt/files/0001-Correct-the-path-of-header-files-check-in-Yocto-buil.patch14
-rw-r--r--meta-openstack/recipes-support/tgt/files/0001-usr-Makefile-WARNING-fix.patch8
2 files changed, 9 insertions, 13 deletions
diff --git a/meta-openstack/recipes-support/tgt/files/0001-Correct-the-path-of-header-files-check-in-Yocto-buil.patch b/meta-openstack/recipes-support/tgt/files/0001-Correct-the-path-of-header-files-check-in-Yocto-buil.patch
index 6630163..173ecb6 100644
--- a/meta-openstack/recipes-support/tgt/files/0001-Correct-the-path-of-header-files-check-in-Yocto-buil.patch
+++ b/meta-openstack/recipes-support/tgt/files/0001-Correct-the-path-of-header-files-check-in-Yocto-buil.patch
@@ -1,4 +1,4 @@
1From 5f6a261e44fec387e66d8b89d69f9602de5d5c53 Mon Sep 17 00:00:00 2001 1From 93fea40915d01be6d02587a0b8be85a642e6a8d5 Mon Sep 17 00:00:00 2001
2From: Zhenhua Luo <zhenhua.luo@freescale.com> 2From: Zhenhua Luo <zhenhua.luo@freescale.com>
3Date: Thu, 10 Apr 2014 11:26:39 +0800 3Date: Thu, 10 Apr 2014 11:26:39 +0800
4Subject: [PATCH] Correct the path of header files check in Yocto build env 4Subject: [PATCH] Correct the path of header files check in Yocto build env
@@ -13,18 +13,19 @@ error appears. Change the path of header check.
13| compilation terminated. 13| compilation terminated.
14 14
15Signed-off-by: Zhenhua Luo <zhenhua.luo@freescale.com> 15Signed-off-by: Zhenhua Luo <zhenhua.luo@freescale.com>
16
16--- 17---
17 usr/Makefile | 6 +++--- 18 usr/Makefile | 6 +++---
18 1 file changed, 3 insertions(+), 3 deletions(-) 19 1 file changed, 3 insertions(+), 3 deletions(-)
19 20
20diff --git a/usr/Makefile b/usr/Makefile 21diff --git a/usr/Makefile b/usr/Makefile
21index 453eb1a..191503d 100644 22index decf13c..9ff8f15 100644
22--- a/usr/Makefile 23--- a/usr/Makefile
23+++ b/usr/Makefile 24+++ b/usr/Makefile
24@@ -1,11 +1,11 @@ 25@@ -1,11 +1,11 @@
25 sbindir ?= $(PREFIX)/sbin 26 sbindir ?= $(PREFIX)/sbin
26 libdir ?= $(PREFIX)/lib/tgt 27 libdir ?= $(PREFIX)/lib/tgt
27 28
28-ifneq ($(shell test -e /usr/include/linux/signalfd.h && echo 1),) 29-ifneq ($(shell test -e /usr/include/linux/signalfd.h && echo 1),)
29+ifneq ($(shell test -e $(SYSROOT)/usr/include/linux/signalfd.h && echo 1),) 30+ifneq ($(shell test -e $(SYSROOT)/usr/include/linux/signalfd.h && echo 1),)
30 CFLAGS += -DUSE_SIGNALFD 31 CFLAGS += -DUSE_SIGNALFD
@@ -35,8 +36,8 @@ index 453eb1a..191503d 100644
35 CFLAGS += -DUSE_TIMERFD 36 CFLAGS += -DUSE_TIMERFD
36 endif 37 endif
37 38
38@@ -25,7 +25,7 @@ TGTD_OBJS += bs_rbd.o 39@@ -25,7 +25,7 @@ ifneq ($(SD_NOTIFY),)
39 CFLAGS += -DUSE_TIMERFD 40 CFLAGS += -DUSE_SYSTEMD
40 endif 41 endif
41 42
42-ifneq ($(shell test -e /usr/include/sys/eventfd.h && test -e /usr/include/libaio.h && echo 1),) 43-ifneq ($(shell test -e /usr/include/sys/eventfd.h && test -e /usr/include/libaio.h && echo 1),)
@@ -44,6 +45,3 @@ index 453eb1a..191503d 100644
44 CFLAGS += -DUSE_EVENTFD 45 CFLAGS += -DUSE_EVENTFD
45 TGTD_OBJS += bs_aio.o 46 TGTD_OBJS += bs_aio.o
46 LIBS += -laio 47 LIBS += -laio
47--
481.9.1
49
diff --git a/meta-openstack/recipes-support/tgt/files/0001-usr-Makefile-WARNING-fix.patch b/meta-openstack/recipes-support/tgt/files/0001-usr-Makefile-WARNING-fix.patch
index f749101..078ba9e 100644
--- a/meta-openstack/recipes-support/tgt/files/0001-usr-Makefile-WARNING-fix.patch
+++ b/meta-openstack/recipes-support/tgt/files/0001-usr-Makefile-WARNING-fix.patch
@@ -1,4 +1,4 @@
1From 2a336ec5bf939d86425570617471df60140d839e Mon Sep 17 00:00:00 2001 1From 6f4e3b11c7dccf83e2d18635c84837b212dfcc1c Mon Sep 17 00:00:00 2001
2From: Li xin <lixin.fnst@cn.fujitsu.com> 2From: Li xin <lixin.fnst@cn.fujitsu.com>
3Date: Sun, 26 Jul 2015 04:23:51 +0900 3Date: Sun, 26 Jul 2015 04:23:51 +0900
4Subject: [PATCH] usr/Makefile: WARNING fix WARNING: QA Issue: tgt: 4Subject: [PATCH] usr/Makefile: WARNING fix WARNING: QA Issue: tgt:
@@ -9,12 +9,13 @@ Subject: [PATCH] usr/Makefile: WARNING fix WARNING: QA Issue: tgt:
9Upstream-Status: pending 9Upstream-Status: pending
10 10
11Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com> 11Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com>
12
12--- 13---
13 usr/Makefile | 2 +- 14 usr/Makefile | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-) 15 1 file changed, 1 insertion(+), 1 deletion(-)
15 16
16diff --git a/usr/Makefile b/usr/Makefile 17diff --git a/usr/Makefile b/usr/Makefile
17index 1fae7e7..2db109c 100644 18index 9ff8f15..cc8df11 100644
18--- a/usr/Makefile 19--- a/usr/Makefile
19+++ b/usr/Makefile 20+++ b/usr/Makefile
20@@ -63,7 +63,7 @@ TGTD_OBJS += tgtd.o mgmt.o target.o scsi.o log.o driver.o util.o work.o \ 21@@ -63,7 +63,7 @@ TGTD_OBJS += tgtd.o mgmt.o target.o scsi.o log.o driver.o util.o work.o \
@@ -26,6 +27,3 @@ index 1fae7e7..2db109c 100644
26 27
27 .PHONY:all 28 .PHONY:all
28 all: $(PROGRAMS) $(MODULES) 29 all: $(PROGRAMS) $(MODULES)
29--
301.8.4.2
31