summaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes')
-rw-r--r--meta/classes/image_types.bbclass2
-rw-r--r--meta/classes/kernel-fitimage.bbclass2
-rw-r--r--meta/classes/kernel-uimage.bbclass2
3 files changed, 3 insertions, 3 deletions
diff --git a/meta/classes/image_types.bbclass b/meta/classes/image_types.bbclass
index 05e5b0a2e0..5c406481ef 100644
--- a/meta/classes/image_types.bbclass
+++ b/meta/classes/image_types.bbclass
@@ -308,7 +308,7 @@ CONVERSION_DEPENDS_lzo = "lzop-native"
308CONVERSION_DEPENDS_zip = "zip-native" 308CONVERSION_DEPENDS_zip = "zip-native"
309CONVERSION_DEPENDS_sum = "mtd-utils-native" 309CONVERSION_DEPENDS_sum = "mtd-utils-native"
310CONVERSION_DEPENDS_bmap = "bmap-tools-native" 310CONVERSION_DEPENDS_bmap = "bmap-tools-native"
311CONVERSION_DEPENDS_u-boot = "u-boot-mkimage-native" 311CONVERSION_DEPENDS_u-boot = "u-boot-tools-native"
312CONVERSION_DEPENDS_vmdk = "qemu-native" 312CONVERSION_DEPENDS_vmdk = "qemu-native"
313CONVERSION_DEPENDS_vdi = "qemu-native" 313CONVERSION_DEPENDS_vdi = "qemu-native"
314CONVERSION_DEPENDS_qcow2 = "qemu-native" 314CONVERSION_DEPENDS_qcow2 = "qemu-native"
diff --git a/meta/classes/kernel-fitimage.bbclass b/meta/classes/kernel-fitimage.bbclass
index 4c4fd99ff4..328bef4069 100644
--- a/meta/classes/kernel-fitimage.bbclass
+++ b/meta/classes/kernel-fitimage.bbclass
@@ -4,7 +4,7 @@ python __anonymous () {
4 kerneltypes = d.getVar('KERNEL_IMAGETYPES') or "" 4 kerneltypes = d.getVar('KERNEL_IMAGETYPES') or ""
5 if 'fitImage' in kerneltypes.split(): 5 if 'fitImage' in kerneltypes.split():
6 depends = d.getVar("DEPENDS") 6 depends = d.getVar("DEPENDS")
7 depends = "%s u-boot-mkimage-native dtc-native" % depends 7 depends = "%s u-boot-tools-native dtc-native" % depends
8 d.setVar("DEPENDS", depends) 8 d.setVar("DEPENDS", depends)
9 9
10 uarch = d.getVar("UBOOT_ARCH") 10 uarch = d.getVar("UBOOT_ARCH")
diff --git a/meta/classes/kernel-uimage.bbclass b/meta/classes/kernel-uimage.bbclass
index c2de6bb40d..cedb4fa070 100644
--- a/meta/classes/kernel-uimage.bbclass
+++ b/meta/classes/kernel-uimage.bbclass
@@ -3,7 +3,7 @@ inherit kernel-uboot
3python __anonymous () { 3python __anonymous () {
4 if "uImage" in d.getVar('KERNEL_IMAGETYPES'): 4 if "uImage" in d.getVar('KERNEL_IMAGETYPES'):
5 depends = d.getVar("DEPENDS") 5 depends = d.getVar("DEPENDS")
6 depends = "%s u-boot-mkimage-native" % depends 6 depends = "%s u-boot-tools-native" % depends
7 d.setVar("DEPENDS", depends) 7 d.setVar("DEPENDS", depends)
8 8
9 # Override KERNEL_IMAGETYPE_FOR_MAKE variable, which is internal 9 # Override KERNEL_IMAGETYPE_FOR_MAKE variable, which is internal