diff options
author | Pascal Bach <pascal.bach@siemens.com> | 2017-05-03 17:28:40 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-05-16 14:08:28 +0100 |
commit | 66ecc9354fa8e28de5a89cf9c6a83753b2934c88 (patch) | |
tree | 64bc572fb6fd690b7a45cededeefb8b749de7592 /meta/classes | |
parent | 6ea5de4433a3040070582496ca16c17019cee233 (diff) | |
download | poky-66ecc9354fa8e28de5a89cf9c6a83753b2934c88.tar.gz |
image.bbclass: allow override of image LICENSE
Currently the LICENSE of every image is hard set to MIT.
This allows this to be overriden in derived images.
(From OE-Core rev: 62454568c12d4fd19bb69b1b679e9c7b6dc95927)
Signed-off-by: Pascal Bach <pascal.bach@siemens.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/image.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index 58cd608d14..85f6b9a87b 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass | |||
@@ -9,7 +9,7 @@ TOOLCHAIN_TARGET_TASK += "${PACKAGE_INSTALL}" | |||
9 | TOOLCHAIN_TARGET_TASK_ATTEMPTONLY += "${PACKAGE_INSTALL_ATTEMPTONLY}" | 9 | TOOLCHAIN_TARGET_TASK_ATTEMPTONLY += "${PACKAGE_INSTALL_ATTEMPTONLY}" |
10 | POPULATE_SDK_POST_TARGET_COMMAND += "rootfs_sysroot_relativelinks; " | 10 | POPULATE_SDK_POST_TARGET_COMMAND += "rootfs_sysroot_relativelinks; " |
11 | 11 | ||
12 | LICENSE = "MIT" | 12 | LICENSE ?= "MIT" |
13 | PACKAGES = "" | 13 | PACKAGES = "" |
14 | DEPENDS += "${MLPREFIX}qemuwrapper-cross depmodwrapper-cross" | 14 | DEPENDS += "${MLPREFIX}qemuwrapper-cross depmodwrapper-cross" |
15 | RDEPENDS += "${PACKAGE_INSTALL} ${LINGUAS_INSTALL}" | 15 | RDEPENDS += "${PACKAGE_INSTALL} ${LINGUAS_INSTALL}" |