mirror of
git://git.yoctoproject.org/meta-raspberrypi
synced 2026-05-22 07:51:53 +00:00
Add IMAGE_BOOT_FILES that defines a list of files to be placed in boot partition. The variable is effectivey used with wic when building a SD card image. Change-Id: Ie7b2ea032349bf33ce7a9afc70e2fb4806ff9a04 Signed-off-by: Maciej Borzecki <maciej.borzecki@open-rnd.pl> Signed-off-by: Maciek Borzecki <maciek.borzecki@gmail.com> Acked-by: Andrei Gherzan <andrei@gherzan.ro>
40 lines
1013 B
Plaintext
40 lines
1013 B
Plaintext
#@TYPE: Machine
|
|
#@NAME: RaspberryPi Development Board
|
|
#@DESCRIPTION: Machine configuration for the RaspberryPi http://www.raspberrypi.org/ Board
|
|
#@MAINTAINER: John Willis
|
|
|
|
include conf/machine/include/rpi-default-settings.inc
|
|
include conf/machine/include/rpi-default-versions.inc
|
|
include conf/machine/include/rpi-default-providers.inc
|
|
require conf/machine/include/tune-arm1176jzf-s.inc
|
|
|
|
IMAGE_FSTYPES ?= "tar.bz2 ext3 rpi-sdimg"
|
|
|
|
SERIAL_CONSOLE = "115200 ttyAMA0"
|
|
|
|
MACHINE_KERNEL_PR = "r5"
|
|
|
|
XSERVER = " \
|
|
xserver-xorg \
|
|
xf86-input-evdev \
|
|
xf86-input-mouse \
|
|
xf86-input-keyboard \
|
|
xf86-video-fbdev \
|
|
"
|
|
|
|
KERNEL_IMAGETYPE ?= "Image"
|
|
|
|
MACHINE_FEATURES = "kernel26 apm usbhost keyboard vfat ext2 screen touchscreen alsa bluetooth wifi sdio"
|
|
|
|
#RaspberryPi has no hardware clock
|
|
MACHINE_FEATURES_BACKFILL_CONSIDERED = "rtc"
|
|
|
|
MACHINE_EXTRA_RRECOMMENDS += " \
|
|
kernel-modules \
|
|
"
|
|
|
|
# Set raspberrypi splash image
|
|
SPLASH = "psplash-raspberrypi"
|
|
|
|
IMAGE_BOOT_FILES ?= "bcm2835-bootfiles/* ${KERNEL_IMAGETYPE};kernel.img"
|