blob: e069e7039f166b4503d6709df7bf770dadc6af5d [file] [log] [blame]
Patrick Williams8b8bc412016-08-17 15:02:23 -05001include conf/machine/include/rpi-default-settings.inc
2include conf/machine/include/rpi-default-versions.inc
3include conf/machine/include/rpi-default-providers.inc
4
5SOC_FAMILY = "rpi"
6include conf/machine/include/soc-family.inc
7
8IMAGE_FSTYPES ?= "tar.bz2 ext3 rpi-sdimg"
9
10XSERVER = " \
11 xserver-xorg \
Patrick Williamsb2e6a9b2017-02-23 20:31:26 -060012 ${@bb.utils.contains("MACHINE_FEATURES", "vc4graphics", "xserver-xorg-extension-glx", "", d)} \
13 ${@bb.utils.contains("MACHINE_FEATURES", "vc4graphics", "xf86-video-modesetting", "xf86-video-fbdev", d)} \
Patrick Williams8b8bc412016-08-17 15:02:23 -050014 "
15
Patrick Williams8b8bc412016-08-17 15:02:23 -050016KERNEL_DEVICETREE ?= " \
17 bcm2708-rpi-b.dtb \
18 bcm2708-rpi-b-plus.dtb \
19 bcm2709-rpi-2-b.dtb \
20 bcm2710-rpi-3-b.dtb \
Patrick Williamsb2e6a9b2017-02-23 20:31:26 -060021 bcm2708-rpi-cm.dtb \
22 bcm2710-rpi-cm3.dtb \
Patrick Williams8b8bc412016-08-17 15:02:23 -050023 \
Patrick Williamsb2e6a9b2017-02-23 20:31:26 -060024 overlays/hifiberry-amp.dtbo \
25 overlays/hifiberry-dac.dtbo \
26 overlays/hifiberry-dacplus.dtbo \
27 overlays/hifiberry-digi.dtbo \
28 overlays/i2c-rtc.dtbo \
29 overlays/iqaudio-dac.dtbo \
30 overlays/iqaudio-dacplus.dtbo \
31 overlays/lirc-rpi.dtbo \
32 overlays/pitft22.dtbo \
33 overlays/pitft28-resistive.dtbo \
34 overlays/pps-gpio.dtbo \
35 overlays/rpi-ft5406.dtbo \
36 overlays/w1-gpio.dtbo \
37 overlays/w1-gpio-pullup.dtbo \
38 overlays/pi3-disable-bt.dtbo \
39 overlays/pi3-miniuart-bt.dtbo \
40 overlays/vc4-kms-v3d.dtbo \
Patrick Williams8b8bc412016-08-17 15:02:23 -050041 "
42KERNEL_IMAGETYPE ?= "Image"
43
44MACHINE_FEATURES += "apm usbhost keyboard vfat ext2 screen touchscreen alsa bluetooth wifi sdio"
45
46# Raspberry Pi has no hardware clock
47MACHINE_FEATURES_BACKFILL_CONSIDERED = "rtc"
48
49MACHINE_EXTRA_RRECOMMENDS += " kernel-modules"
50
51# Set Raspberrypi splash image
52SPLASH = "psplash-raspberrypi"
53
54IMAGE_BOOT_FILES ?= "bcm2835-bootfiles/* ${KERNEL_IMAGETYPE};${SDIMG_KERNELIMAGE}"
Patrick Williamsb2e6a9b2017-02-23 20:31:26 -060055
56# The kernel image is installed into the FAT32 boot partition and does not need
57# to also be installed into the rootfs.
58RDEPENDS_kernel-base = ""