diff options
author | Tadao Tanikawa <tanikawa.tadao@jp.panasonic.com> | 2016-02-10 19:43:55 +0900 |
---|---|---|
committer | Tadao Tanikawa <tanikawa.tadao@jp.panasonic.com> | 2016-02-10 13:02:11 +0000 |
commit | af16a40f5c45cb34c1bc7efbe9700d29191d81bf (patch) | |
tree | 84b38e7bd30a20a3a4dd42b68db3d5db8143982e /recipes-platform | |
parent | d7dc839ad442145e364fca6f9cfd7938fe0e2db9 (diff) |
Add package group and bitbake target for Quality Assurance
New packagegroup and bitbake target are added which
includes utilities for testing distribution.
It is assumed to be used in the Quality Assurance of AGL Distro.
New package group: packagegroup-agl-demo-platform-qa
New target: agl-demo-platform-qa
Change-Id: I96efde8348037821a6dfcd653e9fcbc87408f183
Signed-off-by: Tadao Tanikawa <tanikawa.tadao@jp.panasonic.com>
Diffstat (limited to 'recipes-platform')
-rw-r--r-- | recipes-platform/images/agl-demo-platform-qa.bb | 11 | ||||
-rw-r--r-- | recipes-platform/packagegroups/packagegroup-agl-demo-platform-qa.bb | 15 |
2 files changed, 26 insertions, 0 deletions
diff --git a/recipes-platform/images/agl-demo-platform-qa.bb b/recipes-platform/images/agl-demo-platform-qa.bb new file mode 100644 index 000000000..bec5e870f --- /dev/null +++ b/recipes-platform/images/agl-demo-platform-qa.bb @@ -0,0 +1,11 @@ +SUMMARY = "A full set of AGL Distribution for testing as Quality Assurance" + +DESCRIPTION = "A full set of AGL Distribution. This image also has additional \ +packages (e.g. commandline tools) for Quality Assurance(QA)." + +require agl-demo-platform.bb + +IMAGE_INSTALL_append = " \ + packagegroup-ivi-common-test \ + packagegroup-agl-demo-platform-qa \ + " diff --git a/recipes-platform/packagegroups/packagegroup-agl-demo-platform-qa.bb b/recipes-platform/packagegroups/packagegroup-agl-demo-platform-qa.bb new file mode 100644 index 000000000..739f859b9 --- /dev/null +++ b/recipes-platform/packagegroups/packagegroup-agl-demo-platform-qa.bb @@ -0,0 +1,15 @@ +SUMMARY = "The software for DEMO platform of AGL IVI profile" +DESCRIPTION = "A set of packages belong to AGL Demo Platform includes utilities for testing distribution as Quality Assurance" + +LICENSE = "MIT" + +inherit packagegroup + +PACKAGES = "\ + packagegroup-agl-demo-platform-qa \ + " + +ALLOW_EMPTY_${PN} = "1" + +RDEPENDS_${PN} += "\ + " |