mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 00:20:08 +00:00
Add depicture machine with patches from SimTec
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
# The Depicture needs the S3C24xx's Framebuffer and LCD stuff
|
||||
CONFIG_FB_S3C2410=y
|
||||
CONFIG_LCD_CLASS_DEVICE=y
|
||||
CONFIG_BACKLIGHT_CLASS_DEVICE=y
|
||||
CONFIG_BACKLIGHT_S3C2410=y
|
||||
CONFIG_LCD_PLATFORM=y
|
||||
CONFIG_BACKLIGHT_PWM=y
|
||||
CONFIG_SIMTEC_LCD=y
|
||||
# And also the touchscreen interface
|
||||
CONFIG_TOUCHSCREEN_S3C2410=y
|
||||
CONFIG_INPUT_EVDEV=y
|
||||
CONFIG_SENSORS_S3C_ADC=y
|
||||
# And the MMC makes sense to compile in.
|
||||
CONFIG_MMC=y
|
||||
CONFIG_MMC_BLOCK=y
|
||||
CONFIG_MMC_S3C=y
|
||||
# IPv6 is needed for the X server
|
||||
CONFIG_IPV6=y
|
||||
@@ -0,0 +1,22 @@
|
||||
require linux.inc
|
||||
|
||||
do_prepdefconfig() {
|
||||
cp ${S}/arch/arm/configs/s3c24xx_simtec_defconfig ${WORKDIR}/defconfig
|
||||
if test -e ${WORKDIR}/${MACHINE}-defconfig-append; then
|
||||
cat ${WORKDIR}/${MACHINE}-defconfig-append >> ${WORKDIR}/defconfig
|
||||
fi
|
||||
}
|
||||
|
||||
addtask prepdefconfig before do_configure after do_patch
|
||||
|
||||
do_deploy() {
|
||||
install -d ${DEPLOY_DIR_IMAGE}
|
||||
install -m 0644 arch/${ARCH}/boot/${KERNEL_IMAGETYPE} ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGETYPE}-${PV}-${MACHINE}-${DATETIME}.bin
|
||||
cd ${DEPLOY_DIR_IMAGE}
|
||||
ln -sf ${KERNEL_IMAGETYPE}-${PV}-${MACHINE}-${DATETIME}.bin ${KERNEL_IMAGETYPE}-${MACHINE}.bin
|
||||
tar -cvzf ${DEPLOY_DIR_IMAGE}/modules-${KERNEL_RELEASE}-${MACHINE}.tgz -C ${D} lib
|
||||
}
|
||||
|
||||
do_deploy[dirs] = "${S}"
|
||||
|
||||
addtask deploy before do_populate_staging after do_install
|
||||
@@ -0,0 +1,15 @@
|
||||
require linux-simtec.inc
|
||||
|
||||
PR = "r1"
|
||||
|
||||
PROVIDES += "virtual/kernel"
|
||||
|
||||
DEFAULT_PREFERENCE = "-1"
|
||||
DEFAULT_PREFERENCE_depicture = "1"
|
||||
|
||||
SRC_URI = "${KERNELORG_MIRROR}pub/linux/kernel/v2.6/linux-2.6.26.tar.bz2 \
|
||||
http://www.simtec.co.uk/products/SWLINUX/files/patch-2.6.26-simtec1.bz2;patch=1 \
|
||||
file://${MACHINE}-defconfig-append \
|
||||
"
|
||||
|
||||
S = "${WORKDIR}/linux-2.6.26"
|
||||
Reference in New Issue
Block a user