mirror of
git://git.yoctoproject.org/meta-raspberrypi.git
synced 2025-07-19 21:09:03 +02:00
37 lines
821 B
Plaintext
Executable File
37 lines
821 B
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"
|
|
|
|
IMAGE_FSTYPES += "tar.bz2 rpi-sdimg"
|
|
|
|
SERIAL_CONSOLE = "115200 ttyS0"
|
|
|
|
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 \
|
|
"
|