diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2013-04-22 13:50:22 -0500 |
---|---|---|
committer | Mark Hatle <mark.hatle@windriver.com> | 2013-08-01 15:53:34 -0500 |
commit | fc2de0740ddcd32dfdbf7563005f25a4531b558a (patch) | |
tree | 4734e224279b908da8a1bd5e51cb86588585df32 | |
parent | 4d840e5e841f013cc8e00409db2e275ebda2e641 (diff) | |
download | meta-selinux-fc2de0740ddcd32dfdbf7563005f25a4531b558a.tar.gz |
packagegroup-core-selinux: Rename from task to packagegroup
Also fix ALLOW_EMPTY, oe-core does not allow ALLOW_EMPTY w/o a package
name.
Adjust references in core-image-selinux to the new packagegroup filename.
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
-rw-r--r-- | recipes-security/images/core-image-selinux.bb | 2 | ||||
-rw-r--r-- | recipes-security/packagegroups/packagegroup-core-selinux.bb (renamed from recipes-security/tasks/task-core-selinux.bb) | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/recipes-security/images/core-image-selinux.bb b/recipes-security/images/core-image-selinux.bb index d3acb0f..0109933 100644 --- a/recipes-security/images/core-image-selinux.bb +++ b/recipes-security/images/core-image-selinux.bb | |||
@@ -7,7 +7,7 @@ LICENSE = "MIT" | |||
7 | IMAGE_INSTALL = "\ | 7 | IMAGE_INSTALL = "\ |
8 | ${CORE_IMAGE_BASE_INSTALL} \ | 8 | ${CORE_IMAGE_BASE_INSTALL} \ |
9 | packagegroup-core-basic \ | 9 | packagegroup-core-basic \ |
10 | task-core-selinux \ | 10 | packagegroup-core-selinux \ |
11 | " | 11 | " |
12 | 12 | ||
13 | inherit core-image | 13 | inherit core-image |
diff --git a/recipes-security/tasks/task-core-selinux.bb b/recipes-security/packagegroups/packagegroup-core-selinux.bb index 05f8dfc..7cd7409 100644 --- a/recipes-security/tasks/task-core-selinux.bb +++ b/recipes-security/packagegroups/packagegroup-core-selinux.bb | |||
@@ -1,16 +1,16 @@ | |||
1 | DESCRIPTION = "SELinux task for Poky" | 1 | DESCRIPTION = "SELinux packagegroup for Poky" |
2 | LICENSE = "MIT" | 2 | LICENSE = "MIT" |
3 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ | 3 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ |
4 | file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | 4 | file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" |
5 | PR = "r0" | 5 | PR = "r0" |
6 | 6 | ||
7 | PACKAGES = "\ | 7 | PACKAGES = "\ |
8 | task-core-selinux \ | 8 | ${PN} \ |
9 | " | 9 | " |
10 | 10 | ||
11 | ALLOW_EMPTY = "1" | 11 | ALLOW_EMPTY_${PN} = "1" |
12 | 12 | ||
13 | RDEPENDS_task-core-selinux = " \ | 13 | RDEPENDS_${PN} = " \ |
14 | ustr \ | 14 | ustr \ |
15 | libsepol \ | 15 | libsepol \ |
16 | libsepol-bin \ | 16 | libsepol-bin \ |