summaryrefslogtreecommitdiffstats
path: root/conf
diff options
context:
space:
mode:
authorAndrei Gherzan <andrei@gherzan.com>2018-07-26 19:27:41 +0100
committerAndrei Gherzan <andrei@gherzan.com>2018-09-06 20:00:49 +0100
commit99ebafd75a43749df0f4bea8ba46f976bcc1a00b (patch)
treeb514cd9e07762dde12d63f885aa028f05ff9fd84 /conf
parent32044251789a701eaa2cd1b2b3b8f32f86208a99 (diff)
downloadmeta-raspberrypi-99ebafd75a43749df0f4bea8ba46f976bcc1a00b.tar.gz
rpi-base.inc: Split overlays and dtbs from KERNEL_DEVICETREE
This is helpful for example in the cases where the kernel doesn't provide all the dtbs in arm64 as in arm. Signed-off-by: Andrei Gherzan <andrei@gherzan.com>
Diffstat (limited to 'conf')
-rw-r--r--conf/machine/include/rpi-base.inc27
1 files changed, 17 insertions, 10 deletions
diff --git a/conf/machine/include/rpi-base.inc b/conf/machine/include/rpi-base.inc
index b01c561..2af1588 100644
--- a/conf/machine/include/rpi-base.inc
+++ b/conf/machine/include/rpi-base.inc
@@ -14,16 +14,7 @@ XSERVER = " \
14 ${@bb.utils.contains("MACHINE_FEATURES", "vc4graphics", "xf86-video-modesetting", "xf86-video-fbdev", d)} \ 14 ${@bb.utils.contains("MACHINE_FEATURES", "vc4graphics", "xf86-video-modesetting", "xf86-video-fbdev", d)} \
15 " 15 "
16 16
17KERNEL_DEVICETREE ?= " \ 17RPI_KERNEL_DEVICETREE_OVERLAYS ?= " \
18 bcm2708-rpi-0-w.dtb \
19 bcm2708-rpi-b.dtb \
20 bcm2708-rpi-b-plus.dtb \
21 bcm2709-rpi-2-b.dtb \
22 bcm2710-rpi-3-b.dtb \
23 bcm2710-rpi-3-b-plus.dtb \
24 bcm2708-rpi-cm.dtb \
25 bcm2710-rpi-cm3.dtb \
26 \
27 overlays/dwc2.dtbo \ 18 overlays/dwc2.dtbo \
28 overlays/hifiberry-amp.dtbo \ 19 overlays/hifiberry-amp.dtbo \
29 overlays/hifiberry-dac.dtbo \ 20 overlays/hifiberry-dac.dtbo \
@@ -46,6 +37,22 @@ KERNEL_DEVICETREE ?= " \
46 overlays/at86rf233.dtbo \ 37 overlays/at86rf233.dtbo \
47 " 38 "
48 39
40RPI_KERNEL_DEVICETREE ?= " \
41 bcm2708-rpi-0-w.dtb \
42 bcm2708-rpi-b.dtb \
43 bcm2708-rpi-b-plus.dtb \
44 bcm2709-rpi-2-b.dtb \
45 bcm2710-rpi-3-b.dtb \
46 bcm2710-rpi-3-b-plus.dtb \
47 bcm2708-rpi-cm.dtb \
48 bcm2710-rpi-cm3.dtb \
49 "
50
51KERNEL_DEVICETREE ?= " \
52 ${RPI_KERNEL_DEVICETREE} \
53 ${RPI_KERNEL_DEVICETREE_OVERLAYS} \
54 "
55
49# By default: 56# By default:
50# 57#
51# * When u-boot is disabled use the "Image" format which can be directly loaded 58# * When u-boot is disabled use the "Image" format which can be directly loaded