diff options
author | Tadao Tanikawa <tanikawa.tadao@jp.panasonic.com> | 2016-01-19 13:47:35 +0900 |
---|---|---|
committer | Tadao Tanikawa <tanikawa.tadao@jp.panasonic.com> | 2016-01-20 14:11:01 +0900 |
commit | 75f103846494e30b6fea489bd9020f17e4256f74 (patch) | |
tree | b7a214a8355b6c6c208e935f0364680f2c1335f4 /templates/qemux86/conf/bblayers.conf.sample | |
parent | fb2a42e77e551a2f9952a7544da297f5dfa9e4f6 (diff) |
Provide template configuration for each machine or board
In previous patch, meta-intel layer is added to BBLAYERS for
both QEMU(qemux86/qemux86-64) and Minnowboard MAX(intel-corei7-64)
although QEMU target doesn't need it.
It is preffered to prepare a template configuration
for each machine or board.
Change-Id: Ic88131eb6413b29757916cc5166b8d950d0096fc
Signed-off-by: Tadao Tanikawa <tanikawa.tadao@jp.panasonic.com>
Diffstat (limited to 'templates/qemux86/conf/bblayers.conf.sample')
-rw-r--r-- | templates/qemux86/conf/bblayers.conf.sample | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/templates/qemux86/conf/bblayers.conf.sample b/templates/qemux86/conf/bblayers.conf.sample new file mode 100644 index 000000000..125776100 --- /dev/null +++ b/templates/qemux86/conf/bblayers.conf.sample @@ -0,0 +1,26 @@ +# LAYER_CONF_VERSION is increased each time build/conf/bblayers.conf +# changes incompatibly +LCONF_VERSION = "6" + +BBPATH = "${TOPDIR}" +BBFILES ?= "" + +# AGL layers for QEMUx86-64 +BBLAYERS ?= " \ + ##OEROOT##/meta \ + ##OEROOT##/meta-yocto \ + ##OEROOT##/meta-yocto-bsp \ + ##OEROOT##/../meta-agl/meta-ivi-common \ + ##OEROOT##/../meta-agl/meta-agl \ + ##OEROOT##/../meta-agl/meta-agl-bsp \ + ##OEROOT##/../meta-openembedded/meta-oe \ + ##OEROOT##/../meta-openembedded/meta-multimedia \ + ##OEROOT##/../meta-openembedded/meta-ruby \ + ##OEROOT##/../meta-agl-demo \ + ##OEROOT##/../meta-qt5 \ + " +BBLAYERS_NON_REMOVABLE ?= " \ + ##OEROOT##/meta \ + ##OEROOT##/meta-yocto \ + ##OEROOT##/../meta-agl/meta-agl \ + " |