summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOng Boon Leong <boon.leong.ong@intel.com>2015-07-24 07:48:37 +0800
committerDarren Hart <dvhart@linux.intel.com>2015-07-29 13:17:47 -0700
commitf023a7723fae35bf066ba9507c2221d2325cdeff (patch)
tree0da6248e2bf8eddceeda19e7a8563b01625f6fa3
parent157569867805b623d87fb7d900aa63ef66e07f60 (diff)
downloadmeta-intel-f023a7723fae35bf066ba9507c2221d2325cdeff.tar.gz
meta-crystalforest: add in clarity around how to pick the right QAT version
Add explanation on how to override the default setting under crystalforest.conf on PREFERRED_PROVIDER_virtual/qat. Signed-off-by: Ong Boon Leong <boon.leong.ong@intel.com> Signed-off-by: Darren Hart <dvhart@linux.intel.com> (cherry picked from commit 3577c351cd82fabd95fb3520c3e4d5809091cb30) Signed-off-by: Darren Hart <dvhart@linux.intel.com>
-rw-r--r--meta-crystalforest/README25
1 files changed, 25 insertions, 0 deletions
diff --git a/meta-crystalforest/README b/meta-crystalforest/README
index 2053a3c2..f549f907 100644
--- a/meta-crystalforest/README
+++ b/meta-crystalforest/README
@@ -204,12 +204,37 @@ Note:
204qat16 recipe is meant for platform with Coleto Creek chipset. 204qat16 recipe is meant for platform with Coleto Creek chipset.
205qat15 recipe is meant for platform with Cave Creek chipset. 205qat15 recipe is meant for platform with Cave Creek chipset.
206 206
207conf/machine/crystalforest.conf is the common machine configuration
208to support Crystal Forest/server, Crystal Forest/gladden, Highland Forest and
209River Forest. In order to generate the right binary for these platforms which
210have different QAT technology, user could change the default config accordingly
211within crystalforest.conf as below:
212
213For Coleto Creek chipset:
214PREFERRED_PROVIDER_virtual/qat ?= "qat16"
215
216For Cave Creek chipset:
217PREFERRED_PROVIDER_virtual/qat ?= "qat15"
218
219Another option and preferred approach for above setting is to override
220configuration under build/conf/local.conf as follow:
221
222For Coleto Creek chipset:
223PREFERRED_PROVIDER_virtual/qat = "qat16"
224
225For Cave Creek chipset:
226PREFERRED_PROVIDER_virtual/qat = "qat15"
227
207By default, the machine configuration does not assume that the above 228By default, the machine configuration does not assume that the above
208ingredients are pre-installed onto the BSP. Developers are required 229ingredients are pre-installed onto the BSP. Developers are required
209to either use smart tool to install those software packages or 230to either use smart tool to install those software packages or
210configure IMAGE_INSTALL under build/conf/local.conf, for example. 231configure IMAGE_INSTALL under build/conf/local.conf, for example.
211 232
233For Coleto Creek chipset:
212IMAGE_INSTALL += "dpdk qat16 zlib-qat" 234IMAGE_INSTALL += "dpdk qat16 zlib-qat"
213 235
236For Cavecreek Creek chipset:
237IMAGE_INSTALL += "dpdk qat15 zlib-qat"
238
214The list of packages can be searched under tmp/deploy/<package-type> 239The list of packages can be searched under tmp/deploy/<package-type>
215folder. 240folder.