49 lines
1.3 KiB
Plaintext
49 lines
1.3 KiB
Plaintext
#@TYPE: Machine
|
|
#@NAME: MSM8960 MTP
|
|
#@DESCRIPTION: Machine configuration for Qualcomm MSM8960 MTP
|
|
|
|
# Uncomment the following line to enable the hard floating point abi. Note that
|
|
# this breaks some binary libraries and 3D (neither of which ship with
|
|
# meta-yocto). For maximum compatibility, leave this disabled.
|
|
#DEFAULTTUNE ?= "cortexa8hf-neon"
|
|
|
|
include conf/machine/include/tune-cortexa8.inc
|
|
|
|
SDKGCCVERSION="4.5%"
|
|
GCCVERSION="4.5%"
|
|
|
|
MACHINE_DISPLAY_WIDTH_PIXELS = "480"
|
|
MACHINE_DISPLAY_HEIGHT_PIXELS = "800"
|
|
|
|
SERIAL_CONSOLE = "115200 ttyO2"
|
|
|
|
PREFERRED_PROVIDER_virtual/kernel ?= "linux-msm"
|
|
|
|
MACHINE_FEATURES += "kernel26"
|
|
MACHINE_FEATURES += "keyboard"
|
|
|
|
# Provide a config baseline for things so the kernel will build...
|
|
KERNEL_DEFCONFIG ?= "msm8960_defconfig"
|
|
MACHINE_DTS_NAME = "msm8930"
|
|
|
|
# fastboot image configuration
|
|
MACHINE_CONSOLE = "tty0"
|
|
MACHINE_ROOTDEV = "/dev/mmcblk0p12"
|
|
MACHINE_KERNEL_BASE = "0x80200000"
|
|
MACHINE_FLASH_PAGE_SIZE = "4096"
|
|
MACHINE_KERNEL_VERSION = `sed -r 's/#define UTS_RELEASE "(.*)"/\1/' ${STAGING_KERNEL_DIR}/include/generated/utsrelease.h`
|
|
|
|
#Enable X11
|
|
DISTRO_FEATURES += "x11"
|
|
|
|
#Device manager
|
|
VIRTUAL-RUNTIME_dev_manager = "udev"
|
|
|
|
#Busybox
|
|
PREFERRED_VERSION_busybox = "1.19.3"
|
|
PREFERRED_VERSION_busybox-static = "1.19.3"
|
|
|
|
#Enable rpm packaging
|
|
PACKAGE_CLASSES += " package_rpm"
|
|
|