summaryrefslogtreecommitdiffstats
path: root/meta-isg/common/recipes-extended/dpdk/dpdk/dpdk-1.8.0-and-2.0.0-add-sysroot-option-within-app-makefile.patch
diff options
context:
space:
mode:
authorRahul Kumar Gupta <rahul.kumarxx.gupta@intel.com>2016-01-12 19:06:10 +0800
committerSaul Wold <sgw@linux.intel.com>2016-01-12 11:07:00 -0800
commit9f8ebe73d8cfa501942eff024dee8d764cf8b24d (patch)
tree6eb42fddf4df1d708c3a32f9c7e6e6fd3bf638e1 /meta-isg/common/recipes-extended/dpdk/dpdk/dpdk-1.8.0-and-2.0.0-add-sysroot-option-within-app-makefile.patch
parent10b977e715baa0cd897a416ef3e206bad2ae34b3 (diff)
downloadmeta-intel-9f8ebe73d8cfa501942eff024dee8d764cf8b24d.tar.gz
meta-isg: dpdk v2.2.0: rename the patches used
This will rename the patches according to the dpdk version. modify the .inc and .bb according to modified name of patches. change the commit msg for patch: dpdk-2.2.0-add-sysroot-option-within-app-makefile.patch since it have mentioned the version not in use. Signed-off-by: Rahul Kumar Gupta <rahul.kumarxx.gupta@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta-isg/common/recipes-extended/dpdk/dpdk/dpdk-1.8.0-and-2.0.0-add-sysroot-option-within-app-makefile.patch')
-rw-r--r--meta-isg/common/recipes-extended/dpdk/dpdk/dpdk-1.8.0-and-2.0.0-add-sysroot-option-within-app-makefile.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/meta-isg/common/recipes-extended/dpdk/dpdk/dpdk-1.8.0-and-2.0.0-add-sysroot-option-within-app-makefile.patch b/meta-isg/common/recipes-extended/dpdk/dpdk/dpdk-1.8.0-and-2.0.0-add-sysroot-option-within-app-makefile.patch
deleted file mode 100644
index 02c7dc3c..00000000
--- a/meta-isg/common/recipes-extended/dpdk/dpdk/dpdk-1.8.0-and-2.0.0-add-sysroot-option-within-app-makefile.patch
+++ /dev/null
@@ -1,33 +0,0 @@
1From 3112250f6452215890fc7db73c8127e111af956f Mon Sep 17 00:00:00 2001
2From: Ong Boon Leong <boon.leong.ong@intel.com>
3Date: Thu, 2 Jul 2015 23:51:01 +0800
4Subject: [PATCH] dpdk v1.8.0: add --sysroot option within app makefile
5
6Upstream-Status: Inappropriate [configuration]
7
8in DPDK v1.8.0, rte.app.mk has been changed to add -Wl, to
9all items listed under EXTRA_LDFLAGS. It causes --sysroot=
10<path> to not setup correctly when we depends on gcc to setup
11for GNU ld.
12
13Signed-off-by: Ong Boon Leong <boon.leong.ong@intel.com>
14---
15 mk/rte.app.mk | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18diff --git a/mk/rte.app.mk b/mk/rte.app.mk
19index e1a0dbf..9528588 100644
20--- a/mk/rte.app.mk
21+++ b/mk/rte.app.mk
22@@ -259,7 +259,7 @@ ifeq ($(LINK_USING_CC),1)
23 override EXTRA_LDFLAGS := $(call linkerprefix,$(EXTRA_LDFLAGS))
24 O_TO_EXE = $(CC) $(CFLAGS) $(LDFLAGS_$(@)) \
25 -Wl,-Map=$(@).map,--cref -o $@ $(OBJS-y) $(call linkerprefix,$(LDFLAGS)) \
26- $(EXTRA_LDFLAGS) $(call linkerprefix,$(LDLIBS))
27+ $(EXTRA_LDFLAGS) $(SYSROOTPATH) $(call linkerprefix,$(LDLIBS))
28 else
29 O_TO_EXE = $(LD) $(LDFLAGS) $(LDFLAGS_$(@)) $(EXTRA_LDFLAGS) \
30 -Map=$(@).map --cref -o $@ $(OBJS-y) $(LDLIBS)
31--
321.7.9.5
33