diff options
author | Paul Barker <pbarker@toganlabs.com> | 2017-09-08 09:58:38 +0000 |
---|---|---|
committer | Andrei Gherzan <andrei@gherzan.com> | 2017-10-20 15:53:35 +0100 |
commit | a6ebf952602e856fc7a88808eb2601656757c1fc (patch) | |
tree | 5af94fca5c84973d725573c81a9d1b05e9c3405b | |
parent | 9bb89a75c0b1b115392920c4ff217161ab19cd53 (diff) | |
download | meta-raspberrypi-a6ebf952602e856fc7a88808eb2601656757c1fc.tar.gz |
rpi-base.inc: Simplify setting of IMAGE_BOOT_FILES
Signed-off-by: Paul Barker <pbarker@toganlabs.com>
-rw-r--r-- | conf/machine/include/rpi-base.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/conf/machine/include/rpi-base.inc b/conf/machine/include/rpi-base.inc index 71bb071..f29db29 100644 --- a/conf/machine/include/rpi-base.inc +++ b/conf/machine/include/rpi-base.inc | |||
@@ -83,9 +83,9 @@ def make_dtb_boot_files(d): | |||
83 | 83 | ||
84 | IMAGE_BOOT_FILES ?= "bcm2835-bootfiles/* \ | 84 | IMAGE_BOOT_FILES ?= "bcm2835-bootfiles/* \ |
85 | ${@make_dtb_boot_files(d)} \ | 85 | ${@make_dtb_boot_files(d)} \ |
86 | ${@bb.utils.contains('KERNEL_IMAGETYPE', 'uImage', '${KERNEL_IMAGETYPE}', '${KERNEL_IMAGETYPE};${SDIMG_KERNELIMAGE}', d)} \ | 86 | ${@bb.utils.contains('KERNEL_IMAGETYPE', 'uImage', \ |
87 | ${@bb.utils.contains('KERNEL_IMAGETYPE', 'uImage', 'u-boot.bin;${SDIMG_KERNELIMAGE}', '', d)} \ | 87 | '${KERNEL_IMAGETYPE} u-boot.bin;${SDIMG_KERNELIMAGE} boot.scr', \ |
88 | ${@bb.utils.contains('KERNEL_IMAGETYPE', 'uImage', 'boot.scr;boot.scr', '', d)} \ | 88 | '${KERNEL_IMAGETYPE};${SDIMG_KERNELIMAGE}', d)} \ |
89 | " | 89 | " |
90 | 90 | ||
91 | # The kernel image is installed into the FAT32 boot partition and does not need | 91 | # The kernel image is installed into the FAT32 boot partition and does not need |