mirror of
git://git.yoctoproject.org/meta-raspberrypi.git
synced 2025-07-19 21:09:03 +02:00

This variable was dropped: commit 0504d36646f8def4829250a9eee0cf9bac3b756e Author: Richard Purdie <richard.purdie@linuxfoundation.org> Date: Tue May 10 16:19:02 2011 +0100 bitbake.conf: Drop unused *GUI* and MACHINE_DISPLAY variables (From OE-Core rev: baf136a9c95a94c5bf89c9a818960d616439682c) Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
48 lines
1.2 KiB
Plaintext
Executable File
48 lines
1.2 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
|
|
|
|
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_VERSION_udev = "164"
|
|
|
|
PREFERRED_PROVIDER_virtual/xserver = "xserver-xorg"
|
|
PREFERRED_PROVIDER_virtual/egl ?= "vc-graphics-hardfp"
|
|
PREFERRED_PROVIDER_virtual/libgles2 ?= "vc-graphics-hardfp"
|
|
PREFERRED_PROVIDER_virtual/libgl ?= "vc-graphics-hardfp"
|
|
XSERVER = " \
|
|
xserver-xorg \
|
|
xf86-input-evdev \
|
|
xf86-input-mouse \
|
|
xf86-input-keyboard \
|
|
xf86-video-fbdev \
|
|
"
|
|
|
|
KERNEL_IMAGETYPE = "Image"
|
|
|
|
MACHINE_FEATURES = "kernel26 apm usbgadget 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 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"
|