mirror of
git://git.yoctoproject.org/meta-raspberrypi
synced 2026-07-19 04:47:16 +00:00
Instead of being inherited by a specific image recipe, this class can now be inherited globally in the machine configuration, allowing it to be used with any image. This means we can remove "inherit image", and we can also remove the IMAGE_FSTYPES modification since the machine config does this already. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
44 lines
1.0 KiB
Plaintext
Executable File
44 lines
1.0 KiB
Plaintext
Executable File
#@TYPE: Machine
|
|
#@NAME: RaspberryPi Development Board
|
|
#@DESCRIPTION: Machine configuration for the RaspberryPi http://www.raspberrypi.org/ Board
|
|
#@MAINTAINER: John Willis
|
|
|
|
TARGET_ARCH = "arm"
|
|
|
|
require conf/machine/include/tune-arm1176jzf-s.inc
|
|
|
|
GUI_MACHINE_CLASS = "bigscreen"
|
|
|
|
INHERIT += "sdcard_image-rpi"
|
|
IMAGE_FSTYPES += "tar.bz2 ext3 rpi-sdimg"
|
|
|
|
SERIAL_CONSOLE = "115200 ttyAMA0"
|
|
|
|
PREFERRED_PROVIDER_virtual/kernel = "linux-${MACHINE}"
|
|
MACHINE_KERNEL_PR = "r4"
|
|
|
|
PREFERRED_PROVIDER_virtual/xserver = "xserver-xorg"
|
|
|
|
XSERVER = " \
|
|
xserver-xorg \
|
|
xf86-input-evdev \
|
|
xf86-input-mouse \
|
|
xf86-input-keyboard \
|
|
xf86-video-fbdev \
|
|
"
|
|
|
|
KERNEL_IMAGETYPE = "zImage"
|
|
|
|
MACHINE_FEATURES = "kernel26 apm usbgadget usbhost keyboard vfat ext2 screen touchscreen alsa bluetooth wifi sdio"
|
|
|
|
MACHINE_EXTRA_RRECOMMENDS += " \
|
|
kernel-modules \
|
|
bcm2835-kernel-image \
|
|
"
|
|
|
|
# Set GPU firmware image to be used
|
|
# arm128 : 128M ARM, 128M GPU split
|
|
# arm192 : 192M ARM, 64M GPU split
|
|
# arm224 : 224M ARM, 32M GPU split
|
|
RPI_GPU_FIRMWARE ?= "arm192"
|