summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLi Wang <li.wang@windriver.com>2021-03-12 17:52:50 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-03-20 18:54:56 +0000
commit4b382a05dde38704ed1448e658c54d3baf7aeb19 (patch)
treef8fef76fe7ce37afd53422b3e7241eb61c8c8608
parent8a59808e192256c27b391ba37cd778741a5848f1 (diff)
downloadpoky-4b382a05dde38704ed1448e658c54d3baf7aeb19.tar.gz
linux-dummy: add empty dependent packages
some kernel includes kernel-image-image and kernel-devicetree packages. these patckages are defined in kernel.bbclass but, when use linux-dummy, these packages are not defined. so, define them as empty packages for avoiding compile error: ERROR: Nothing RPROVIDES 'kernel-devicetree' (From OE-Core rev: 8dbae2dd5ac3de629957ca699f823f5438e80163) Signed-off-by: Li Wang <li.wang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/classes/linux-dummy.bbclass26
-rw-r--r--meta/recipes-kernel/linux/linux-dummy.bb2
2 files changed, 27 insertions, 1 deletions
diff --git a/meta/classes/linux-dummy.bbclass b/meta/classes/linux-dummy.bbclass
new file mode 100644
index 0000000000..cd8791557d
--- /dev/null
+++ b/meta/classes/linux-dummy.bbclass
@@ -0,0 +1,26 @@
1
2python __anonymous () {
3 if d.getVar('PREFERRED_PROVIDER_virtual/kernel') == 'linux-dummy':
4 # copy part codes from kernel.bbclass
5 kname = d.getVar('KERNEL_PACKAGE_NAME') or "kernel"
6
7 # set an empty package of kernel-devicetree
8 d.appendVar('PACKAGES', ' %s-devicetree' % kname)
9 d.setVar('ALLOW_EMPTY_%s-devicetree' % kname, '1')
10
11 # Merge KERNEL_IMAGETYPE and KERNEL_ALT_IMAGETYPE into KERNEL_IMAGETYPES
12 type = d.getVar('KERNEL_IMAGETYPE') or ""
13 alttype = d.getVar('KERNEL_ALT_IMAGETYPE') or ""
14 types = d.getVar('KERNEL_IMAGETYPES') or ""
15 if type not in types.split():
16 types = (type + ' ' + types).strip()
17 if alttype not in types.split():
18 types = (alttype + ' ' + types).strip()
19
20 # set empty packages of kernel-image-*
21 for type in types.split():
22 typelower = type.lower()
23 d.appendVar('PACKAGES', ' %s-image-%s' % (kname, typelower))
24 d.setVar('ALLOW_EMPTY_%s-image-%s' % (kname, typelower), '1')
25}
26
diff --git a/meta/recipes-kernel/linux/linux-dummy.bb b/meta/recipes-kernel/linux/linux-dummy.bb
index 95dc85ff2f..c56f8990de 100644
--- a/meta/recipes-kernel/linux/linux-dummy.bb
+++ b/meta/recipes-kernel/linux/linux-dummy.bb
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://COPYING.GPL;md5=751419260aa954499f7abaabaa882bbe"
9 9
10PROVIDES += "virtual/kernel" 10PROVIDES += "virtual/kernel"
11 11
12inherit deploy 12inherit deploy linux-dummy
13 13
14PACKAGES_DYNAMIC += "^kernel-module-.*" 14PACKAGES_DYNAMIC += "^kernel-module-.*"
15PACKAGES_DYNAMIC += "^kernel-image-.*" 15PACKAGES_DYNAMIC += "^kernel-image-.*"