Add recipe to build a console image containing linphone.

This commit is contained in:
Ghislain MARY 2012-08-29 17:03:20 +02:00
parent 32a74c0442
commit 93ee404049
2 changed files with 17 additions and 1 deletions

View file

@ -2,7 +2,7 @@
BBPATH .= ":${LAYERDIR}"
# We have a recipes directory, add to BBFILES
BBFILES += "${LAYERDIR}/*.bb ${LAYERDIR}/libgsm/*.bb"
BBFILES += "${LAYERDIR}/*.bb ${LAYERDIR}/libgsm/*.bb ${LAYERDIR}/images/*.bb"
BBFILE_COLLECTIONS += "linphone-layer"
BBFILE_PATTERN_linphone-layer := "^${LAYERDIR}/"

View file

@ -0,0 +1,16 @@
require recipes-images/angstrom/console-image.bb
IMAGE_INSTALL += " \
kbd \
kbd-keymaps \
keymaps \
linphonec \
"
rootfs_postprocess() {
gunzip -c ${IMAGE_ROOTFS}/usr/share/keymaps/i386/dvorak/dvorak.map.gz > ${IMAGE_ROOTFS}/etc/keymap-2.6.map
}
ROOTFS_POSTPROCESS_COMMAND += "rootfs_postprocess; "
export IMAGE_BASENAME = "console-linphone-image"