diff options
author | Andrei Gherzan <andrei@gherzan.ro> | 2015-02-07 23:57:00 +0200 |
---|---|---|
committer | Andrei Gherzan <andrei@gherzan.ro> | 2015-02-08 00:01:36 +0200 |
commit | b89a2743fb27b2e5644a74fae156b88a4ca48781 (patch) | |
tree | 0764a6b0d0a4f34c77be3556f1773813ac7f7cd3 /conf/machine/include | |
parent | b99a09b25757ea2afe15fcf31323420edca1137d (diff) | |
download | meta-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.inc | 46 |
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 @@ | |||
1 | include conf/machine/include/rpi-default-settings.inc | ||
2 | include conf/machine/include/rpi-default-versions.inc | ||
3 | include conf/machine/include/rpi-default-providers.inc | ||
4 | |||
5 | IMAGE_FSTYPES ?= "tar.bz2 ext3 rpi-sdimg" | ||
6 | |||
7 | SERIAL_CONSOLE ?= "115200 ttyAMA0" | ||
8 | |||
9 | XSERVER = " \ | ||
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 | # " | ||
34 | KERNEL_IMAGETYPE ?= "Image" | ||
35 | |||
36 | MACHINE_FEATURES = "kernel26 apm usbhost keyboard vfat ext2 screen touchscreen alsa bluetooth wifi sdio" | ||
37 | |||
38 | # Raspberry Pi has no hardware clock | ||
39 | MACHINE_FEATURES_BACKFILL_CONSIDERED = "rtc" | ||
40 | |||
41 | MACHINE_EXTRA_RRECOMMENDS += " kernel-modules" | ||
42 | |||
43 | # Set Raspberrypi splash image | ||
44 | SPLASH = "psplash-raspberrypi" | ||
45 | |||
46 | IMAGE_BOOT_FILES ?= "bcm2835-bootfiles/* ${KERNEL_IMAGETYPE};kernel.img" | ||