summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHerve Jourdain <herve.jourdain@neuf.fr>2016-07-21 06:00:37 +0800
committerAndrei Gherzan <andrei@gherzan.ro>2016-09-21 16:46:48 +0100
commit09b76a43f6f6852406de385a45f472c52b6a8571 (patch)
tree98add681336ff1cfc0f0e7075b69800b27584ec5
parent18a2fb644bf5aa0eb3b692c5dcacb24c910be78f (diff)
downloadmeta-raspberrypi-09b76a43f6f6852406de385a45f472c52b6a8571.tar.gz
rpi-base.inc: support for .dtbo files for dtb overlays
Kernel 4.4.6+ on RaspberryPi support .dtbo files for overlays, instead of .dtb. Add support for .dtbo variant of overlays for the default KERNEL_DEVICETREE variable (the list will be turned into "-overlay.dtb" by linux-raspberry-base.bbclass, if needed, depending on the kernel version) Signed-off-by: Herve Jourdain <herve.jourdain@neuf.fr>
-rw-r--r--conf/machine/include/rpi-base.inc30
1 files changed, 15 insertions, 15 deletions
diff --git a/conf/machine/include/rpi-base.inc b/conf/machine/include/rpi-base.inc
index 56ca83e..47eb23b 100644
--- a/conf/machine/include/rpi-base.inc
+++ b/conf/machine/include/rpi-base.inc
@@ -22,21 +22,21 @@ KERNEL_DEVICETREE ?= " \
22 bcm2709-rpi-2-b.dtb \ 22 bcm2709-rpi-2-b.dtb \
23 bcm2710-rpi-3-b.dtb \ 23 bcm2710-rpi-3-b.dtb \
24 \ 24 \
25 overlays/hifiberry-amp-overlay.dtb \ 25 overlays/hifiberry-amp.dtbo \
26 overlays/hifiberry-dac-overlay.dtb \ 26 overlays/hifiberry-dac.dtbo \
27 overlays/hifiberry-dacplus-overlay.dtb \ 27 overlays/hifiberry-dacplus.dtbo \
28 overlays/hifiberry-digi-overlay.dtb \ 28 overlays/hifiberry-digi.dtbo \
29 overlays/i2c-rtc-overlay.dtb \ 29 overlays/i2c-rtc.dtbo \
30 overlays/iqaudio-dac-overlay.dtb \ 30 overlays/iqaudio-dac.dtbo \
31 overlays/iqaudio-dacplus-overlay.dtb \ 31 overlays/iqaudio-dacplus.dtbo \
32 overlays/lirc-rpi-overlay.dtb \ 32 overlays/lirc-rpi.dtbo \
33 overlays/pitft22-overlay.dtb \ 33 overlays/pitft22.dtbo \
34 overlays/pitft28-resistive-overlay.dtb \ 34 overlays/pitft28-resistive.dtbo \
35 overlays/pps-gpio-overlay.dtb \ 35 overlays/pps-gpio.dtbo \
36 overlays/rpi-ft5406-overlay.dtb \ 36 overlays/rpi-ft5406.dtbo \
37 overlays/w1-gpio-overlay.dtb \ 37 overlays/w1-gpio.dtbo \
38 overlays/w1-gpio-pullup-overlay.dtb \ 38 overlays/w1-gpio-pullup.dtbo \
39 overlays/pi3-miniuart-bt-overlay.dtb \ 39 overlays/pi3-miniuart-bt.dtbo \
40 " 40 "
41KERNEL_IMAGETYPE ?= "Image" 41KERNEL_IMAGETYPE ?= "Image"
42 42