summaryrefslogtreecommitdiffstats
path: root/conf/machine/include
diff options
context:
space:
mode:
authorAndrei Gherzan <andrei@gherzan.ro>2015-02-07 23:57:00 +0200
committerAndrei Gherzan <andrei@gherzan.ro>2015-02-08 00:01:36 +0200
commitb89a2743fb27b2e5644a74fae156b88a4ca48781 (patch)
tree0764a6b0d0a4f34c77be3556f1773813ac7f7cd3 /conf/machine/include
parentb99a09b25757ea2afe15fcf31323420edca1137d (diff)
downloadmeta-raspberrypi-b89a2743fb27b2e5644a74fae156b88a4ca48781.tar.gz
raspberrypi.conf: Split in specific and common conf. files
*.conf files should hold board specific stuff while rpi-base.inc should include configuration that is common for all Raspberry Pi boards. Remove MACHINE_KERNEL_PR as we don't use it anymore. Minor tweaks. Change-Id: I5e1b12c1d224ac003d2890544beb036f1d5d8643 Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
Diffstat (limited to 'conf/machine/include')
-rw-r--r--conf/machine/include/rpi-base.inc46
1 files changed, 46 insertions, 0 deletions
diff --git a/conf/machine/include/rpi-base.inc b/conf/machine/include/rpi-base.inc
new file mode 100644
index 0000000..4be28a1
--- /dev/null
+++ b/conf/machine/include/rpi-base.inc
@@ -0,0 +1,46 @@
1include conf/machine/include/rpi-default-settings.inc
2include conf/machine/include/rpi-default-versions.inc
3include conf/machine/include/rpi-default-providers.inc
4
5IMAGE_FSTYPES ?= "tar.bz2 ext3 rpi-sdimg"
6
7SERIAL_CONSOLE ?= "115200 ttyAMA0"
8
9XSERVER = " \
10 xserver-xorg \
11 xf86-input-evdev \
12 xf86-input-mouse \
13 xf86-input-keyboard \
14 xf86-video-fbdev \
15 "
16
17# Really supported starting from linux-raspberrypi 3.18.y only
18#KERNEL_DEVICETREE ?= " \
19# bcm2708-rpi-b.dtb \
20# bcm2708-rpi-b-plus.dtb \
21# ds1307-rtc-overlay.dtb \
22# hifiberry-amp-overlay.dtb \
23# hifiberry-dac-overlay.dtb \
24# hifiberry-dacplus-overlay.dtb \
25# hifiberry-digi-overlay.dtb \
26# iqaudio-dac-overlay.dtb \
27# iqaudio-dacplus-overlay.dtb \
28# lirc-rpi-overlay.dtb \
29# pcf8523-rtc-overlay.dtb \
30# pps-gpio-overlay.dtb \
31# w1-gpio-overlay.dtb \
32# w1-gpio-pullup-overlay.dtb \
33# "
34KERNEL_IMAGETYPE ?= "Image"
35
36MACHINE_FEATURES = "kernel26 apm usbhost keyboard vfat ext2 screen touchscreen alsa bluetooth wifi sdio"
37
38# Raspberry Pi has no hardware clock
39MACHINE_FEATURES_BACKFILL_CONSIDERED = "rtc"
40
41MACHINE_EXTRA_RRECOMMENDS += " kernel-modules"
42
43# Set Raspberrypi splash image
44SPLASH = "psplash-raspberrypi"
45
46IMAGE_BOOT_FILES ?= "bcm2835-bootfiles/* ${KERNEL_IMAGETYPE};kernel.img"