diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2012-07-26 18:16:14 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-04 12:52:57 +0100 |
commit | 9bb6f42763d7c3aa4d59ac08b2b4252d2e2b00a2 (patch) | |
tree | 43b3913030dff1ed7d0949bc1adc13df60a7f2ed /meta/recipes-core | |
parent | 073a12c9cbedd210499835d608d98005251f7d6a (diff) | |
download | poky-9bb6f42763d7c3aa4d59ac08b2b4252d2e2b00a2.tar.gz |
packagegroup-*: change to inherit from packagegroup.bbclass
Also clean out items already handled by that class (dev/dbg packages,
ALLOW_EMPTY, etc.)
(From OE-Core rev: 65fca4458cfe1d647c7ea1d4588dc449739a73eb)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
14 files changed, 27 insertions, 83 deletions
diff --git a/meta/recipes-core/packagegroups/nativesdk-packagegroup-sdk-host.bb b/meta/recipes-core/packagegroups/nativesdk-packagegroup-sdk-host.bb index ea054bc9c9..ef05004e30 100644 --- a/meta/recipes-core/packagegroups/nativesdk-packagegroup-sdk-host.bb +++ b/meta/recipes-core/packagegroups/nativesdk-packagegroup-sdk-host.bb | |||
@@ -5,14 +5,13 @@ | |||
5 | DESCRIPTION = "Host packages for the standalone SDK or external toolchain" | 5 | DESCRIPTION = "Host packages for the standalone SDK or external toolchain" |
6 | PR = "r11" | 6 | PR = "r11" |
7 | LICENSE = "MIT" | 7 | LICENSE = "MIT" |
8 | ALLOW_EMPTY = "1" | ||
9 | 8 | ||
10 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ | 9 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ |
11 | file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | 10 | file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" |
12 | 11 | ||
13 | inherit nativesdk | 12 | inherit nativesdk packagegroup |
14 | 13 | ||
15 | PACKAGES = "${PN}" | 14 | PACKAGEGROUP_DISABLE_COMPLEMENTARY = "1" |
16 | 15 | ||
17 | RDEPENDS_${PN} = "\ | 16 | RDEPENDS_${PN} = "\ |
18 | nativesdk-pkgconfig \ | 17 | nativesdk-pkgconfig \ |
diff --git a/meta/recipes-core/packagegroups/packagegroup-base.bb b/meta/recipes-core/packagegroups/packagegroup-base.bb index 85acd1fe72..7e2bd69f30 100644 --- a/meta/recipes-core/packagegroups/packagegroup-base.bb +++ b/meta/recipes-core/packagegroups/packagegroup-base.bb | |||
@@ -40,8 +40,6 @@ PACKAGES = ' \ | |||
40 | \ | 40 | \ |
41 | ' | 41 | ' |
42 | 42 | ||
43 | ALLOW_EMPTY = "1" | ||
44 | |||
45 | # | 43 | # |
46 | # packages which content depend on MACHINE_FEATURES need to be MACHINE_ARCH | 44 | # packages which content depend on MACHINE_FEATURES need to be MACHINE_ARCH |
47 | # | 45 | # |
diff --git a/meta/recipes-core/packagegroups/packagegroup-core-boot.bb b/meta/recipes-core/packagegroups/packagegroup-core-boot.bb index 7e80fffe4a..b49fb3f291 100644 --- a/meta/recipes-core/packagegroups/packagegroup-core-boot.bb +++ b/meta/recipes-core/packagegroups/packagegroup-core-boot.bb | |||
@@ -6,11 +6,13 @@ DESCRIPTION = "Task for OpenedHand Poky - minimal bootable image" | |||
6 | LICENSE = "MIT" | 6 | LICENSE = "MIT" |
7 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ | 7 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ |
8 | file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | 8 | file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" |
9 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
10 | DEPENDS = "virtual/kernel" | 9 | DEPENDS = "virtual/kernel" |
11 | ALLOW_EMPTY = "1" | ||
12 | PR = "r9" | 10 | PR = "r9" |
13 | 11 | ||
12 | inherit packagegroup | ||
13 | |||
14 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
15 | |||
14 | # | 16 | # |
15 | # Set by the machine configuration with packages essential for device bootup | 17 | # Set by the machine configuration with packages essential for device bootup |
16 | # | 18 | # |
@@ -24,13 +26,7 @@ VIRTUAL-RUNTIME_init_manager ?= "sysvinit" | |||
24 | VIRTUAL-RUNTIME_initscripts ?= "initscripts" | 26 | VIRTUAL-RUNTIME_initscripts ?= "initscripts" |
25 | VIRTUAL-RUNTIME_keymaps ?= "keymaps" | 27 | VIRTUAL-RUNTIME_keymaps ?= "keymaps" |
26 | 28 | ||
27 | PACKAGES = "\ | 29 | RDEPENDS_${PN} = "\ |
28 | packagegroup-core-boot \ | ||
29 | packagegroup-core-boot-dbg \ | ||
30 | packagegroup-core-boot-dev \ | ||
31 | " | ||
32 | |||
33 | RDEPENDS_packagegroup-core-boot = "\ | ||
34 | base-files \ | 30 | base-files \ |
35 | base-passwd \ | 31 | base-passwd \ |
36 | busybox \ | 32 | busybox \ |
@@ -45,5 +41,5 @@ RDEPENDS_packagegroup-core-boot = "\ | |||
45 | ${VIRTUAL-RUNTIME_update-alternatives} \ | 41 | ${VIRTUAL-RUNTIME_update-alternatives} \ |
46 | ${MACHINE_ESSENTIAL_EXTRA_RDEPENDS}" | 42 | ${MACHINE_ESSENTIAL_EXTRA_RDEPENDS}" |
47 | 43 | ||
48 | RRECOMMENDS_packagegroup-core-boot = "\ | 44 | RRECOMMENDS_${PN} = "\ |
49 | ${MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS}" | 45 | ${MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS}" |
diff --git a/meta/recipes-core/packagegroups/packagegroup-core-console.bb b/meta/recipes-core/packagegroups/packagegroup-core-console.bb index fd8eb252db..63003d0b95 100644 --- a/meta/recipes-core/packagegroups/packagegroup-core-console.bb +++ b/meta/recipes-core/packagegroups/packagegroup-core-console.bb | |||
@@ -8,16 +8,10 @@ LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3 | |||
8 | file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | 8 | file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" |
9 | PR = "r35" | 9 | PR = "r35" |
10 | 10 | ||
11 | PACKAGES = "\ | 11 | inherit packagegroup |
12 | packagegroup-core-apps-console \ | ||
13 | packagegroup-core-apps-console-dbg \ | ||
14 | packagegroup-core-apps-console-dev \ | ||
15 | " | ||
16 | 12 | ||
17 | PACKAGE_ARCH = "${MACHINE_ARCH}" | 13 | PACKAGE_ARCH = "${MACHINE_ARCH}" |
18 | 14 | ||
19 | ALLOW_EMPTY = "1" | ||
20 | |||
21 | SPLASH ?= "psplash" | 15 | SPLASH ?= "psplash" |
22 | 16 | ||
23 | RDEPENDS_packagegroup-core-apps-console = "\ | 17 | RDEPENDS_packagegroup-core-apps-console = "\ |
diff --git a/meta/recipes-core/packagegroups/packagegroup-core-nfs.bb b/meta/recipes-core/packagegroups/packagegroup-core-nfs.bb index 4b1059c9f2..8b2318ea66 100644 --- a/meta/recipes-core/packagegroups/packagegroup-core-nfs.bb +++ b/meta/recipes-core/packagegroups/packagegroup-core-nfs.bb | |||
@@ -8,15 +8,11 @@ LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3 | |||
8 | file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | 8 | file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" |
9 | PR = "r1" | 9 | PR = "r1" |
10 | 10 | ||
11 | PACKAGES = "\ | 11 | inherit packagegroup |
12 | packagegroup-core-nfs-server \ | ||
13 | packagegroup-core-nfs-server-dbg \ | ||
14 | packagegroup-core-nfs-server-dev \ | ||
15 | " | ||
16 | 12 | ||
17 | ALLOW_EMPTY = "1" | 13 | PACKAGES = "${PN}-server" |
18 | 14 | ||
19 | RDEPENDS_packagegroup-core-nfs-server = "\ | 15 | RDEPENDS_${PN}-server = "\ |
20 | nfs-utils \ | 16 | nfs-utils \ |
21 | nfs-utils-client \ | 17 | nfs-utils-client \ |
22 | " | 18 | " |
diff --git a/meta/recipes-core/packagegroups/packagegroup-core-sdk.bb b/meta/recipes-core/packagegroups/packagegroup-core-sdk.bb index 663f7057de..4ee802f9d9 100644 --- a/meta/recipes-core/packagegroups/packagegroup-core-sdk.bb +++ b/meta/recipes-core/packagegroups/packagegroup-core-sdk.bb | |||
@@ -9,13 +9,9 @@ LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3 | |||
9 | DEPENDS = "packagegroup-core-console" | 9 | DEPENDS = "packagegroup-core-console" |
10 | PR = "r8" | 10 | PR = "r8" |
11 | 11 | ||
12 | ALLOW_EMPTY = "1" | 12 | inherit packagegroup |
13 | #PACKAGEFUNCS =+ 'generate_sdk_pkgs' | ||
14 | 13 | ||
15 | PACKAGES = "\ | 14 | #PACKAGEFUNCS =+ 'generate_sdk_pkgs' |
16 | packagegroup-core-sdk \ | ||
17 | packagegroup-core-sdk-dbg \ | ||
18 | packagegroup-core-sdk-dev" | ||
19 | 15 | ||
20 | RDEPENDS_packagegroup-core-sdk = "\ | 16 | RDEPENDS_packagegroup-core-sdk = "\ |
21 | autoconf \ | 17 | autoconf \ |
diff --git a/meta/recipes-core/packagegroups/packagegroup-core-ssh-dropbear.bb b/meta/recipes-core/packagegroups/packagegroup-core-ssh-dropbear.bb index 9dcc342dc4..a07e2badf9 100644 --- a/meta/recipes-core/packagegroups/packagegroup-core-ssh-dropbear.bb +++ b/meta/recipes-core/packagegroups/packagegroup-core-ssh-dropbear.bb | |||
@@ -4,14 +4,6 @@ LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3 | |||
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 | inherit packagegroup |
8 | packagegroup-core-ssh-dropbear \ | ||
9 | packagegroup-core-ssh-dropbear-dbg \ | ||
10 | packagegroup-core-ssh-dropbear-dev \ | ||
11 | " | ||
12 | 8 | ||
13 | ALLOW_EMPTY = "1" | 9 | RDEPENDS_${PN} = "dropbear" |
14 | |||
15 | RDEPENDS_packagegroup-core-ssh-dropbear = "dropbear" | ||
16 | RDEPENDS_packagegroup-core-ssh-dropbear-dbg = "dropbear-dbg" | ||
17 | RDEPENDS_packagegroup-core-ssh-dropbear-dev = "dropbear-dev" | ||
diff --git a/meta/recipes-core/packagegroups/packagegroup-core-ssh-openssh.bb b/meta/recipes-core/packagegroups/packagegroup-core-ssh-openssh.bb index 7e85b29ad8..89f8c93ec7 100644 --- a/meta/recipes-core/packagegroups/packagegroup-core-ssh-openssh.bb +++ b/meta/recipes-core/packagegroups/packagegroup-core-ssh-openssh.bb | |||
@@ -4,14 +4,6 @@ LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3 | |||
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 | inherit packagegroup |
8 | packagegroup-core-ssh-openssh \ | ||
9 | packagegroup-core-ssh-openssh-dbg \ | ||
10 | packagegroup-core-ssh-openssh-dev \ | ||
11 | " | ||
12 | 8 | ||
13 | ALLOW_EMPTY = "1" | 9 | RDEPENDS_${PN} = "openssh" |
14 | |||
15 | RDEPENDS_packagegroup-core-ssh-openssh = "openssh" | ||
16 | RDEPENDS_packagegroup-core-ssh-openssh-dbg = "openssh-dbg" | ||
17 | RDEPENDS_packagegroup-core-ssh-openssh-dev = "openssh-dev" | ||
diff --git a/meta/recipes-core/packagegroups/packagegroup-core-standalone-sdk-target.bb b/meta/recipes-core/packagegroups/packagegroup-core-standalone-sdk-target.bb index 03628a167d..d912018581 100644 --- a/meta/recipes-core/packagegroups/packagegroup-core-standalone-sdk-target.bb +++ b/meta/recipes-core/packagegroups/packagegroup-core-standalone-sdk-target.bb | |||
@@ -3,9 +3,8 @@ PR = "r7" | |||
3 | LICENSE = "MIT" | 3 | LICENSE = "MIT" |
4 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ | 4 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ |
5 | file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | 5 | file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" |
6 | ALLOW_EMPTY = "1" | ||
7 | 6 | ||
8 | PACKAGES = "${PN} ${PN}-dbg" | 7 | inherit packagegroup |
9 | 8 | ||
10 | RDEPENDS_${PN} = "\ | 9 | RDEPENDS_${PN} = "\ |
11 | libgcc \ | 10 | libgcc \ |
diff --git a/meta/recipes-core/packagegroups/packagegroup-core-tools-debug.bb b/meta/recipes-core/packagegroups/packagegroup-core-tools-debug.bb index b7eff21622..be424a30ee 100644 --- a/meta/recipes-core/packagegroups/packagegroup-core-tools-debug.bb +++ b/meta/recipes-core/packagegroups/packagegroup-core-tools-debug.bb | |||
@@ -7,18 +7,12 @@ LICENSE = "MIT" | |||
7 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ | 7 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ |
8 | file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | 8 | file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" |
9 | 9 | ||
10 | PACKAGES = "\ | 10 | inherit packagegroup |
11 | ${PN} \ | ||
12 | ${PN}-dbg \ | ||
13 | ${PN}-dev \ | ||
14 | " | ||
15 | 11 | ||
16 | PR = "r1" | 12 | PR = "r1" |
17 | 13 | ||
18 | PACKAGE_ARCH = "${MACHINE_ARCH}" | 14 | PACKAGE_ARCH = "${MACHINE_ARCH}" |
19 | 15 | ||
20 | ALLOW_EMPTY = "1" | ||
21 | |||
22 | MTRACE = "" | 16 | MTRACE = "" |
23 | MTRACE_libc-glibc = "libc-mtrace" | 17 | MTRACE_libc-glibc = "libc-mtrace" |
24 | 18 | ||
diff --git a/meta/recipes-core/packagegroups/packagegroup-core-tools-profile.bb b/meta/recipes-core/packagegroups/packagegroup-core-tools-profile.bb index 30776ef658..24a99c7eb9 100644 --- a/meta/recipes-core/packagegroups/packagegroup-core-tools-profile.bb +++ b/meta/recipes-core/packagegroups/packagegroup-core-tools-profile.bb | |||
@@ -7,16 +7,10 @@ LICENSE = "MIT" | |||
7 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ | 7 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ |
8 | file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | 8 | file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" |
9 | 9 | ||
10 | PACKAGES = "\ | 10 | inherit packagegroup |
11 | ${PN} \ | ||
12 | ${PN}-dbg \ | ||
13 | ${PN}-dev \ | ||
14 | " | ||
15 | 11 | ||
16 | PACKAGE_ARCH = "${MACHINE_ARCH}" | 12 | PACKAGE_ARCH = "${MACHINE_ARCH}" |
17 | 13 | ||
18 | ALLOW_EMPTY = "1" | ||
19 | |||
20 | RRECOMMENDS_${PN} = "\ | 14 | RRECOMMENDS_${PN} = "\ |
21 | perf \ | 15 | perf \ |
22 | trace-cmd \ | 16 | trace-cmd \ |
diff --git a/meta/recipes-core/packagegroups/packagegroup-core-tools-testapps.bb b/meta/recipes-core/packagegroups/packagegroup-core-tools-testapps.bb index bdd0d058f9..52c278a53c 100644 --- a/meta/recipes-core/packagegroups/packagegroup-core-tools-testapps.bb +++ b/meta/recipes-core/packagegroups/packagegroup-core-tools-testapps.bb | |||
@@ -7,16 +7,10 @@ LICENSE = "MIT" | |||
7 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ | 7 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ |
8 | file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | 8 | file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" |
9 | 9 | ||
10 | PACKAGES = "\ | 10 | inherit packagegroup |
11 | ${PN} \ | ||
12 | ${PN}-dbg \ | ||
13 | ${PN}-dev \ | ||
14 | " | ||
15 | 11 | ||
16 | PACKAGE_ARCH = "${MACHINE_ARCH}" | 12 | PACKAGE_ARCH = "${MACHINE_ARCH}" |
17 | 13 | ||
18 | ALLOW_EMPTY = "1" | ||
19 | |||
20 | # kexec-tools doesn't work on Mips | 14 | # kexec-tools doesn't work on Mips |
21 | KEXECTOOLS ?= "kexec" | 15 | KEXECTOOLS ?= "kexec" |
22 | KEXECTOOLS_mips ?= "" | 16 | KEXECTOOLS_mips ?= "" |
diff --git a/meta/recipes-core/packagegroups/packagegroup-cross-canadian.bb b/meta/recipes-core/packagegroups/packagegroup-cross-canadian.bb index 6ab4a95846..8870ccc8c8 100644 --- a/meta/recipes-core/packagegroups/packagegroup-cross-canadian.bb +++ b/meta/recipes-core/packagegroups/packagegroup-cross-canadian.bb | |||
@@ -2,13 +2,13 @@ DESCRIPTION = "Host SDK package for cross canadian toolchain" | |||
2 | PN = "packagegroup-cross-canadian-${TRANSLATED_TARGET_ARCH}" | 2 | PN = "packagegroup-cross-canadian-${TRANSLATED_TARGET_ARCH}" |
3 | PR = "r0" | 3 | PR = "r0" |
4 | LICENSE = "MIT" | 4 | LICENSE = "MIT" |
5 | ALLOW_EMPTY = "1" | ||
6 | 5 | ||
7 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ | 6 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ |
8 | file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | 7 | file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" |
9 | inherit cross-canadian | ||
10 | 8 | ||
11 | PACKAGES = "${PN}" | 9 | inherit cross-canadian packagegroup |
10 | |||
11 | PACKAGEGROUP_DISABLE_COMPLEMENTARY = "1" | ||
12 | 12 | ||
13 | RDEPENDS_${PN} = "\ | 13 | RDEPENDS_${PN} = "\ |
14 | binutils-cross-canadian-${TRANSLATED_TARGET_ARCH} \ | 14 | binutils-cross-canadian-${TRANSLATED_TARGET_ARCH} \ |
diff --git a/meta/recipes-core/packagegroups/packagegroup-self-hosted.bb b/meta/recipes-core/packagegroups/packagegroup-self-hosted.bb index 118ff7d48b..7567457d2e 100644 --- a/meta/recipes-core/packagegroups/packagegroup-self-hosted.bb +++ b/meta/recipes-core/packagegroups/packagegroup-self-hosted.bb | |||
@@ -8,6 +8,8 @@ LICENSE = "MIT" | |||
8 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ | 8 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ |
9 | file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | 9 | file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" |
10 | 10 | ||
11 | inherit packagegroup | ||
12 | |||
11 | PACKAGES = "\ | 13 | PACKAGES = "\ |
12 | packagegroup-self-hosted \ | 14 | packagegroup-self-hosted \ |
13 | packagegroup-self-hosted-debug \ | 15 | packagegroup-self-hosted-debug \ |
@@ -17,8 +19,6 @@ PACKAGES = "\ | |||
17 | packagegroup-self-hosted-host-tools \ | 19 | packagegroup-self-hosted-host-tools \ |
18 | " | 20 | " |
19 | 21 | ||
20 | ALLOW_EMPTY = "1" | ||
21 | |||
22 | RDEPENDS_packagegroup-self-hosted = "\ | 22 | RDEPENDS_packagegroup-self-hosted = "\ |
23 | packagegroup-self-hosted-debug \ | 23 | packagegroup-self-hosted-debug \ |
24 | packagegroup-self-hosted-sdk \ | 24 | packagegroup-self-hosted-sdk \ |