summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSaul Wold <sgw@linux.intel.com>2017-09-08 16:14:40 -0700
committerSaul Wold <sgw@linux.intel.com>2017-09-08 16:14:40 -0700
commit78949bf8cebfd7db16867bfe995dde240a68cc7a (patch)
tree99337804215d300bcce6b2be2cb121fd32be5e8e
parent0346318e816c04fbcdcb0cf75854b1d40f5afbfc (diff)
downloadmeta-intel-78949bf8cebfd7db16867bfe995dde240a68cc7a.tar.gz
dpdk: return 'default' instead of empty string
Since it's possible for other BSPs to also use the DPDK, this can allow that BSP to be repsonsible for handling it if there is a more optimized version. Signed-off-by: Saul Wold <sgw@linux.intel.com>
-rw-r--r--common/recipes-extended/dpdk/dpdk.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/recipes-extended/dpdk/dpdk.inc b/common/recipes-extended/dpdk/dpdk.inc
index fd0e1c95..ba382675 100644
--- a/common/recipes-extended/dpdk/dpdk.inc
+++ b/common/recipes-extended/dpdk/dpdk.inc
@@ -65,7 +65,7 @@ def get_dpdk_target_mach(bb, d):
65 65
66 if target_arch in multiarch_options : 66 if target_arch in multiarch_options :
67 return multiarch_options[target_arch] 67 return multiarch_options[target_arch]
68 return "" 68 return "default"
69 69
70do_configure () { 70do_configure () {
71 ############################################################# 71 #############################################################