summaryrefslogtreecommitdiffstats
path: root/meta-yocto-bsp
diff options
context:
space:
mode:
authorVivien Didelot <vivien.didelot@gmail.com>2021-01-04 12:37:39 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-01-05 13:48:41 +0000
commitfb2fcf239e35874efee7caa2892bd53677ae955f (patch)
treed00d2d0e79156a579d78b7fd54440e124d0526ab /meta-yocto-bsp
parent56a03121288af8408456fdb8df5456b8f9d840db (diff)
downloadpoky-fb2fcf239e35874efee7caa2892bd53677ae955f.tar.gz
meta-yocto-bsp: use provided variables
We already have the following variables defined above IMAGE_BOOT_FILES: SPL_BINARY = MLO KERNEL_IMAGETYPE = zImage KERNEL_DEVICETREE = am335x-bone.dtb am335x-boneblack.dtb am335x-bonegreen.dtb So use them instead of repeating their values. (From meta-yocto rev: be07cc4f4e729905065ac6fbf1d46ebfdd79cf8f) Signed-off-by: Vivien Didelot <vdidelot@pbsc.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-yocto-bsp')
-rw-r--r--meta-yocto-bsp/conf/machine/beaglebone-yocto.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf b/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf
index b7defb0d01..523472ab12 100644
--- a/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf
+++ b/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf
@@ -38,7 +38,7 @@ UBOOT_LOADADDRESS = "0x80008000"
38 38
39MACHINE_FEATURES = "usbgadget usbhost vfat alsa" 39MACHINE_FEATURES = "usbgadget usbhost vfat alsa"
40 40
41IMAGE_BOOT_FILES ?= "u-boot.${UBOOT_SUFFIX} MLO zImage am335x-bone.dtb am335x-boneblack.dtb am335x-bonegreen.dtb" 41IMAGE_BOOT_FILES ?= "u-boot.${UBOOT_SUFFIX} ${SPL_BINARY} ${KERNEL_IMAGETYPE} ${KERNEL_DEVICETREE}"
42 42
43# support runqemu 43# support runqemu
44EXTRA_IMAGEDEPENDS += "qemu-native qemu-helper-native" 44EXTRA_IMAGEDEPENDS += "qemu-native qemu-helper-native"