mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 00:39:46 +00:00
Merge changes from mainline OE to try and keep us in sync.
git-svn-id: https://svn.o-hand.com/repos/poky@127 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
@@ -150,4 +150,16 @@ autotools_stage_includes() {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
autotools_stage_all() {
|
||||||
|
if [ "${INHIBIT_AUTO_STAGE}" != "1" ]
|
||||||
|
then
|
||||||
|
rm -rf ${STAGE_TEMP}
|
||||||
|
mkdir -p ${STAGE_TEMP}
|
||||||
|
oe_runmake DESTDIR="${STAGE_TEMP}" install
|
||||||
|
cp -pPR ${STAGE_TEMP}/${includedir}/* ${STAGING_INCDIR}
|
||||||
|
cp -pPR ${STAGE_TEMP}/${libdir}/* ${STAGING_LIBDIR}
|
||||||
|
rm -rf ${STAGE_TEMP}
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
EXPORT_FUNCTIONS do_configure do_install
|
EXPORT_FUNCTIONS do_configure do_install
|
||||||
|
|||||||
@@ -24,8 +24,10 @@ def is_native(d):
|
|||||||
import bb.data
|
import bb.data
|
||||||
return ["","-native"][bb.data.inherits_class('native', d)]
|
return ["","-native"][bb.data.inherits_class('native', d)]
|
||||||
|
|
||||||
|
BINCONFIG_GLOB ?= "*-config"
|
||||||
|
|
||||||
do_stage_append() {
|
do_stage_append() {
|
||||||
for config in `find ${S} -name '*-config'`; do
|
for config in `find ${S} -name '${BINCONFIG_GLOB}'`; do
|
||||||
configname=`basename $config`${@is_native(d)}
|
configname=`basename $config`${@is_native(d)}
|
||||||
install -d ${STAGING_BINDIR}
|
install -d ${STAGING_BINDIR}
|
||||||
cat $config | sed ${@get_binconfig_mangle(d)} > ${STAGING_BINDIR}/$configname
|
cat $config | sed ${@get_binconfig_mangle(d)} > ${STAGING_BINDIR}/$configname
|
||||||
|
|||||||
@@ -38,6 +38,10 @@ export ESMART_CONFIG = "${STAGING_BINDIR}/esmart-config${@binconfig_suffix(d)}"
|
|||||||
export FREETYPE_CONFIG = "${STAGING_BINDIR}/freetype-config${@binconfig_suffix(d)}"
|
export FREETYPE_CONFIG = "${STAGING_BINDIR}/freetype-config${@binconfig_suffix(d)}"
|
||||||
export IMLIB2_CONFIG = "${STAGING_BINDIR}/imlib2-config${@binconfig_suffix(d)}"
|
export IMLIB2_CONFIG = "${STAGING_BINDIR}/imlib2-config${@binconfig_suffix(d)}"
|
||||||
|
|
||||||
|
do_compile_prepend() {
|
||||||
|
find ${S} -name Makefile | xargs sed -i 's:/usr/include:${STAGING_INCDIR}:'
|
||||||
|
}
|
||||||
|
|
||||||
do_stage_append () {
|
do_stage_append () {
|
||||||
for i in ${libraries}
|
for i in ${libraries}
|
||||||
do
|
do
|
||||||
|
|||||||
@@ -60,7 +60,9 @@ PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|||||||
kernel_do_compile() {
|
kernel_do_compile() {
|
||||||
unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS
|
unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS
|
||||||
oe_runmake include/linux/version.h CC="${KERNEL_CC}" LD="${KERNEL_LD}"
|
oe_runmake include/linux/version.h CC="${KERNEL_CC}" LD="${KERNEL_LD}"
|
||||||
oe_runmake dep CC="${KERNEL_CC}" LD="${KERNEL_LD}"
|
if ${KERNEL_MAJOR_VERSION} != "2.6"; then
|
||||||
|
oe_runmake dep CC="${KERNEL_CC}" LD="${KERNEL_LD}"
|
||||||
|
fi
|
||||||
oe_runmake ${KERNEL_IMAGETYPE} CC="${KERNEL_CC}" LD="${KERNEL_LD}"
|
oe_runmake ${KERNEL_IMAGETYPE} CC="${KERNEL_CC}" LD="${KERNEL_LD}"
|
||||||
if (grep -q -i -e '^CONFIG_MODULES=y$' .config); then
|
if (grep -q -i -e '^CONFIG_MODULES=y$' .config); then
|
||||||
oe_runmake modules CC="${KERNEL_CC}" LD="${KERNEL_LD}"
|
oe_runmake modules CC="${KERNEL_CC}" LD="${KERNEL_LD}"
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
DEPENDS += "qt3-x11"
|
|
||||||
#
|
#
|
||||||
# override variables set by qmake-base to compile Qt/X11 apps
|
# override variables set by qmake-base to compile Qt/X11 apps
|
||||||
#
|
#
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
DEPENDS += "qt4-x11"
|
|
||||||
#
|
#
|
||||||
# override variables set by qmake-base to compile Qt/X11 apps
|
# override variables set by qmake-base to compile Qt/X11 apps
|
||||||
#
|
#
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
DEPLOY_DIR_SRC ?= "${DEPLOY_DIR}/source"
|
DEPLOY_DIR_SRC ?= "${DEPLOY_DIR}/source"
|
||||||
EXCLUDE_FROM ?= ".pc"
|
EXCLUDE_FROM ?= ".pc autom4te.cache"
|
||||||
|
|
||||||
# used as part of a path. make sure it's set
|
# used as part of a path. make sure it's set
|
||||||
DISTRO ?= "openembedded"
|
DISTRO ?= "openembedded"
|
||||||
@@ -42,7 +42,7 @@ sourcepkg_do_create_orig_tgz(){
|
|||||||
|
|
||||||
echo $src_tree
|
echo $src_tree
|
||||||
oenote "Creating .orig.tar.gz in ${DEPLOY_DIR_SRC}/${P}.orig.tar.gz"
|
oenote "Creating .orig.tar.gz in ${DEPLOY_DIR_SRC}/${P}.orig.tar.gz"
|
||||||
tar cvzf ${DEPLOY_DIR_SRC}/${P}.orig.tar.gz $src_tree --exclude-from temp/exclude-from-file
|
tar cvzf ${DEPLOY_DIR_SRC}/${P}.orig.tar.gz --exclude-from temp/exclude-from-file $src_tree
|
||||||
cp -pPR $src_tree $src_tree.orig
|
cp -pPR $src_tree $src_tree.orig
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -294,6 +294,7 @@ SOURCEFORGE_MIRROR = "http://heanet.dl.sourceforge.net/sourceforge"
|
|||||||
GPE_MIRROR = "http://ftp.handhelds.org/pub/projects/gpe/source"
|
GPE_MIRROR = "http://ftp.handhelds.org/pub/projects/gpe/source"
|
||||||
XLIBS_MIRROR = "http://xlibs.freedesktop.org/release"
|
XLIBS_MIRROR = "http://xlibs.freedesktop.org/release"
|
||||||
GNOME_MIRROR = "http://ftp.gnome.org/pub/GNOME/sources"
|
GNOME_MIRROR = "http://ftp.gnome.org/pub/GNOME/sources"
|
||||||
|
FREEBSD_MIRROR = "ftp://ftp.freebsd.org/pub/FreeBSD/"
|
||||||
HANDHELDS_CVS = "cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs"
|
HANDHELDS_CVS = "cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs"
|
||||||
|
|
||||||
# You can use the mirror of your country to get faster downloads by putting
|
# You can use the mirror of your country to get faster downloads by putting
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ PREFERRED_PROVIDERS += "virtual/${TARGET_PREFIX}g++:gcc-cross"
|
|||||||
#
|
#
|
||||||
|
|
||||||
PREFERRED_PROVIDERS += "virtual/xserver:xserver-kdrive"
|
PREFERRED_PROVIDERS += "virtual/xserver:xserver-kdrive"
|
||||||
#PREFERRED_PROVIDERS += "virtual/gconf:gconf-dbus"
|
PREFERRED_PROVIDERS += "virtual/gconf:gconf-dbus"
|
||||||
PREFERRED_PROVIDER_x11 = "diet-x11"
|
PREFERRED_PROVIDER_x11 = "diet-x11"
|
||||||
|
|
||||||
include conf/distro/preferred-gpe-versions.inc
|
include conf/distro/preferred-gpe-versions.inc
|
||||||
|
|||||||
@@ -1,86 +0,0 @@
|
|||||||
#
|
|
||||||
# Specify which versions of GPE (and related) applications to build
|
|
||||||
#
|
|
||||||
|
|
||||||
#work around some breakages
|
|
||||||
CVSDATE_xserver-kdrive=20050207
|
|
||||||
CVSDATE_minimo=20050401
|
|
||||||
CVSDATE_cairo=20050330
|
|
||||||
CVSDATE_xext=20050222
|
|
||||||
|
|
||||||
#set some preferred providers:
|
|
||||||
#PREFERRED_PROVIDER_gconf=gconf-dbus
|
|
||||||
|
|
||||||
#specify versions, as the header says :)
|
|
||||||
PREFERRED_VERSION_libmatchbox ?= "1.6"
|
|
||||||
PREFERRED_VERSION_matchbox ?= "0.9.1"
|
|
||||||
PREFERRED_VERSION_matchbox-common ?= "0.9.1"
|
|
||||||
PREFERRED_VERSION_matchbox-desktop ?= "0.9.1"
|
|
||||||
PREFERRED_VERSION_matchbox-wm ?= "0.9.3"
|
|
||||||
PREFERRED_VERSION_matchbox-panel ?= "0.9.1"
|
|
||||||
PREFERRED_VERSION_matchbox-applet-inputmanager ?= "0.6"
|
|
||||||
PREFERRED_VERSION_gtk+ ?= "2.6.3"
|
|
||||||
PREFERRED_VERSION_libgpewidget ?= "0.97"
|
|
||||||
PREFERRED_VERSION_libgpepimc ?= "0.4"
|
|
||||||
PREFERRED_VERSION_libgpevtype ?= "0.11"
|
|
||||||
PREFERRED_VERSION_libschedule ?= "0.14"
|
|
||||||
PREFERRED_VERSION_gpe-icons ?= "0.24"
|
|
||||||
PREFERRED_VERSION_libgsm ?= "1.0.10"
|
|
||||||
PREFERRED_VERSION_diet-x11 ?= "6.2.1"
|
|
||||||
PREFERRED_VERSION_xproto ?= "6.6.2"
|
|
||||||
PREFERRED_VERSION_xcursor-transparent-theme ?= "0.1.1"
|
|
||||||
PREFERRED_VERSION_rxvt-unicode ?= "5.3"
|
|
||||||
PREFERRED_VERSION_gtk2-theme-angelistic ?= "0.3"
|
|
||||||
PREFERRED_VERSION_xst ?= "0.14"
|
|
||||||
#PREFERRED_VERSION_xextensions ?= "0.0cvs${CVSDATE}"
|
|
||||||
PREFERRED_VERSION_xprop ?= "0.0cvs${CVSDATE}"
|
|
||||||
PREFERRED_VERSION_xhost ?= "0.0cvs20040413"
|
|
||||||
PREFERRED_VERSION_xrdb ?= "0.0cvs${CVSDATE}"
|
|
||||||
PREFERRED_VERSION_gpe-login ?= "0.76"
|
|
||||||
PREFERRED_VERSION_gpe-session-scripts ?= "0.62"
|
|
||||||
PREFERRED_VERSION_gpe-soundserver ?= "0.4-1"
|
|
||||||
PREFERRED_VERSION_gpe-todo ?= "0.50"
|
|
||||||
PREFERRED_VERSION_gpe-calendar ?= "0.61"
|
|
||||||
PREFERRED_VERSION_gpe-sketchbox ?= "0.2.8"
|
|
||||||
PREFERRED_VERSION_gpe-contacts ?= "0.36"
|
|
||||||
PREFERRED_VERSION_gpe-today ?= "0.08"
|
|
||||||
PREFERRED_VERSION_matchbox-panel-manager ?= "0.1"
|
|
||||||
PREFERRED_VERSION_dbus ?= "0.23"
|
|
||||||
PREFERRED_VERSION_gpe-bluetooth ?= "0.38"
|
|
||||||
PREFERRED_VERSION_gpe-su ?= "0.18"
|
|
||||||
PREFERRED_VERSION_gpe-conf ?= "0.1.23"
|
|
||||||
PREFERRED_VERSION_gpe-clock ?= "0.20"
|
|
||||||
PREFERRED_VERSION_gpe-mininet ?= "0.5"
|
|
||||||
PREFERRED_VERSION_gpe-mixer ?= "0.40"
|
|
||||||
PREFERRED_VERSION_gpe-shield ?= "0.7"
|
|
||||||
PREFERRED_VERSION_gpe-wlancfg ?= "0.2.6"
|
|
||||||
PREFERRED_VERSION_gpe-taskmanager ?= "0.17"
|
|
||||||
PREFERRED_VERSION_keylaunch ?= "2.0.7"
|
|
||||||
PREFERRED_VERSION_minilite ?= "0.47"
|
|
||||||
PREFERRED_VERSION_xmonobut ?= "0.4"
|
|
||||||
PREFERRED_VERSION_gpe-edit ?= "0.28"
|
|
||||||
PREFERRED_VERSION_gpe-gallery ?= "0.95"
|
|
||||||
PREFERRED_VERSION_gpe-calculator ?= "0.2"
|
|
||||||
PREFERRED_VERSION_gpe-package ?= "0.2"
|
|
||||||
PREFERRED_VERSION_gpe-soundbite ?= "1.0.5"
|
|
||||||
PREFERRED_VERSION_gpe-terminal ?= "1.1"
|
|
||||||
PREFERRED_VERSION_gpe-watch ?= "0.10"
|
|
||||||
PREFERRED_VERSION_gpe-what ?= "0.33"
|
|
||||||
PREFERRED_VERSION_gpe-filemanager ?= "0.20"
|
|
||||||
PREFERRED_VERSION_gpe-go ?= "0.05"
|
|
||||||
PREFERRED_VERSION_gpe-irc ?= "0.07"
|
|
||||||
PREFERRED_VERSION_gpe-lights ?= "0.13"
|
|
||||||
#PREFERRED_VERSION_gpe-nmf ?= "0.19"
|
|
||||||
PREFERRED_VERSION_gpe-othello ?= "0.2-1"
|
|
||||||
PREFERRED_VERSION_gpe-plucker ?= "0.2"
|
|
||||||
PREFERRED_VERSION_gpe-tetris ?= "0.6-2"
|
|
||||||
PREFERRED_VERSION_gsoko ?= "0.4.2-gpe6"
|
|
||||||
PREFERRED_VERSION_xdemineur ?= "2.1.1"
|
|
||||||
PREFERRED_VERSION_matchbox-panel-hacks ?= "0.3-1"
|
|
||||||
PREFERRED_VERSION_rosetta ?= "0.0cvs${CVSDATE}"
|
|
||||||
PREFERRED_VERSION_dillo2 ?= "0.6.6"
|
|
||||||
PREFERRED_VERSION_minimo ?= "0.0cvs${CVSDATE_minimo}"
|
|
||||||
PREFERRED_VERSION_linphone-hh ?= "0.12.2.hh1"
|
|
||||||
PREFERRED_VERSION_linphone ?= "0.12.2"
|
|
||||||
PREFERRED_VERSION_firefox ?= "1.0"
|
|
||||||
|
|
||||||
@@ -12,6 +12,8 @@ PREFERRED_VERSION_orinoco-modules = "0.15rc1"
|
|||||||
BOOTSTRAP_EXTRA_DEPENDS = "ipaq-boot-params"
|
BOOTSTRAP_EXTRA_DEPENDS = "ipaq-boot-params"
|
||||||
BOOTSTRAP_EXTRA_DEPENDS_append = " handhelds-pxa-2.6 udev module-init-tools"
|
BOOTSTRAP_EXTRA_DEPENDS_append = " handhelds-pxa-2.6 udev module-init-tools"
|
||||||
|
|
||||||
|
ROOT_FLASH_SIZE = "80"
|
||||||
|
|
||||||
BOOTSTRAP_EXTRA_RDEPENDS = "kernel ipaq-boot-params ${@linux_module_packages('${PXA270_MODULES}', d)}"
|
BOOTSTRAP_EXTRA_RDEPENDS = "kernel ipaq-boot-params ${@linux_module_packages('${PXA270_MODULES}', d)}"
|
||||||
BOOTSTRAP_EXTRA_RDEPENDS_append = " udev module-init-tools"
|
BOOTSTRAP_EXTRA_RDEPENDS_append = " udev module-init-tools"
|
||||||
|
|
||||||
|
|||||||
@@ -57,3 +57,4 @@ pcmcia-cs apm ppp wireless-tools console-tools"
|
|||||||
ROOTFS_POSTPROCESS_COMMAND += " remove_init_link; "
|
ROOTFS_POSTPROCESS_COMMAND += " remove_init_link; "
|
||||||
|
|
||||||
include conf/machine/handheld-common.conf
|
include conf/machine/handheld-common.conf
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
rootfs / rootfs defaults,errors=remount-ro,noatime 0 0
|
rootfs / rootfs defaults,errors=remount-ro,noatime 0 0
|
||||||
/dev/mmcblk0p1 /media/card auto defaults,noauto,noatime,exec,suid 0 0
|
/dev/mmcblk0p1 /media/card auto defaults,noauto,noatime,exec,suid 0 0
|
||||||
tmpfs /var tmpfs defaults 0 0
|
tmpfs /var tmpfs defaults 0 0
|
||||||
tmpfs /media/ram tmpfs defaults 0 0
|
tmpfs /media/ram tmpfs defaults 0 0
|
||||||
rootfs / auto defaults 1 1
|
proc /proc proc defaults 0 0
|
||||||
proc /proc proc defaults 0 0
|
usbdevfs /proc/bus/usb usbdevfs noauto 0 0
|
||||||
devpts /dev/pts devpts mode=0620,gid=5 0 0
|
|
||||||
usbdevfs /proc/bus/usb usbdevfs noauto 0 0
|
|
||||||
|
|||||||
@@ -4,4 +4,4 @@ devpts /dev/pts devpts mode=0620,gid=5 0 0
|
|||||||
usbdevfs /proc/bus/usb usbdevfs noauto 0 0
|
usbdevfs /proc/bus/usb usbdevfs noauto 0 0
|
||||||
tmpfs /var tmpfs defaults 0 0
|
tmpfs /var tmpfs defaults 0 0
|
||||||
/dev/mtdblock/2 /home jffs2 defaults 1 1
|
/dev/mtdblock/2 /home jffs2 defaults 1 1
|
||||||
|
/dev/hda1 /mnt/cf auto noauto,owner 0 0
|
||||||
|
|||||||
@@ -167,3 +167,19 @@ card "ZCOMAX AirRunner/XI-300"
|
|||||||
manfid 0xd601, 0x0002
|
manfid 0xd601, 0x0002
|
||||||
bind "hostap_cs"
|
bind "hostap_cs"
|
||||||
|
|
||||||
|
card "Zonet ZCF1100"
|
||||||
|
manfid 0x000b, 0x7100
|
||||||
|
bind "hostap_cs"
|
||||||
|
|
||||||
|
card "Wireless LAN Adapter Version 01.02"
|
||||||
|
version "Wireless", "LAN Adapter", "Version 01.02"
|
||||||
|
# manfid 0x0156, 0x0002
|
||||||
|
bind "hostap_cs"
|
||||||
|
|
||||||
|
card "Ambicom WL1100C 11Mbs Card 802.11b"
|
||||||
|
manfid 0xd601,0x0002
|
||||||
|
bind "hostap_cs"
|
||||||
|
|
||||||
|
card "Sandisk Connect SDWCFB-000"
|
||||||
|
manfid 0xd601,0x0005
|
||||||
|
bind "hostap_cs"
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ SECTION = "kernel/modules"
|
|||||||
PRIORITY = "optional"
|
PRIORITY = "optional"
|
||||||
MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>"
|
MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>"
|
||||||
LICENSE = "GPL"
|
LICENSE = "GPL"
|
||||||
PR = "r4"
|
PR = "r6"
|
||||||
|
|
||||||
SRC_URI = "http://hostap.epitest.fi/releases/hostap-driver-${PV}.tar.gz \
|
SRC_URI = "http://hostap.epitest.fi/releases/hostap-driver-${PV}.tar.gz \
|
||||||
file://hostap_cs.conf \
|
file://hostap_cs.conf \
|
||||||
|
|||||||
@@ -45,7 +45,14 @@ module_autoload_pxaficp_ir = "pxaficp_ir"
|
|||||||
|
|
||||||
do_configure() {
|
do_configure() {
|
||||||
|
|
||||||
install -m 0644 ${WORKDIR}/defconfig-${MACHINE} ${S}/.config || die "No default configuration for ${MACHINE} available."
|
case ${MACHINE} in
|
||||||
|
akita | spitz | borzoi )
|
||||||
|
install -m 0644 ${WORKDIR}/defconfig-cxx00 ${S}/.config || die "No default configuration for cxx00 available."
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
install -m 0644 ${WORKDIR}/defconfig-${MACHINE} ${S}/.config || die "No default configuration for ${MACHINE} available."
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
if [ "${MACHINE}" == "collie" ]; then
|
if [ "${MACHINE}" == "collie" ]; then
|
||||||
mempos=`echo "obase=16; $mem * 1024 * 1024" | bc`
|
mempos=`echo "obase=16; $mem * 1024 * 1024" | bc`
|
||||||
@@ -86,7 +93,7 @@ do_compile_append() {
|
|||||||
size=`ls arch/${ARCH}/boot/${KERNEL_IMAGETYPE} -s | cut -d ' ' -f 1`
|
size=`ls arch/${ARCH}/boot/${KERNEL_IMAGETYPE} -s | cut -d ' ' -f 1`
|
||||||
if [ $size -ge 1271 ]; then
|
if [ $size -ge 1271 ]; then
|
||||||
rm arch/${ARCH}/boot/${KERNEL_IMAGETYPE}
|
rm arch/${ARCH}/boot/${KERNEL_IMAGETYPE}
|
||||||
die "This kernel is too big for the c7x0 and will destroy your machine if you flash it!!!"
|
die "This kernel is too big for your PXA Zaurus and will destroy data if you flash it. Please reduce the size of the kernel by making more of it modular."
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ SRC_URI = "ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.13.tar.gz \
|
|||||||
${RPSRC}/sharpsl_pm-r8.patch;patch=1 \
|
${RPSRC}/sharpsl_pm-r8.patch;patch=1 \
|
||||||
${RPSRC}/corgi_pm-r3.patch;patch=1 \
|
${RPSRC}/corgi_pm-r3.patch;patch=1 \
|
||||||
${RPSRC}/spitz_base_extras-r2.patch;patch=1 \
|
${RPSRC}/spitz_base_extras-r2.patch;patch=1 \
|
||||||
${RPSRC}/spitz_pm-r3.patch;patch=1 \
|
${RPSRC}/spitz_pm-r4.patch;patch=1 \
|
||||||
${RPSRC}/spitz_kbd_fix1-r0.patch;patch=1 \
|
${RPSRC}/spitz_kbd_fix1-r0.patch;patch=1 \
|
||||||
${RPSRC}/spitzcf-r3.patch;patch=1 \
|
${RPSRC}/spitzcf-r3.patch;patch=1 \
|
||||||
${RPSRC}/pxa_timerfix-r0.patch;patch=1 \
|
${RPSRC}/pxa_timerfix-r0.patch;patch=1 \
|
||||||
@@ -73,10 +73,10 @@ SRC_URI = "ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.13.tar.gz \
|
|||||||
file://dtl1_cs-add-socket-revE.patch;patch=1 \
|
file://dtl1_cs-add-socket-revE.patch;patch=1 \
|
||||||
file://connectplus-remove-ide-HACK.patch;patch=1 \
|
file://connectplus-remove-ide-HACK.patch;patch=1 \
|
||||||
file://defconfig-c7x0 \
|
file://defconfig-c7x0 \
|
||||||
file://defconfig-ipaq-pxa-2.6 \
|
file://defconfig-ipaq-pxa270 \
|
||||||
file://defconfig-collie \
|
file://defconfig-collie \
|
||||||
file://defconfig-poodle \
|
file://defconfig-poodle \
|
||||||
file://defconfig-spitz \
|
file://defconfig-cxx00 \
|
||||||
file://defconfig-tosa "
|
file://defconfig-tosa "
|
||||||
|
|
||||||
# These patches would really help collie/poodle but we
|
# These patches would really help collie/poodle but we
|
||||||
|
|||||||
@@ -8,9 +8,9 @@ DEFAULT_PREFERENCE = "-1"
|
|||||||
|
|
||||||
SRC_URI = "svn://svn.o-hand.com/repos/matchbox/trunk;module=matchbox-common;proto=http"
|
SRC_URI = "svn://svn.o-hand.com/repos/matchbox/trunk;module=matchbox-common;proto=http"
|
||||||
|
|
||||||
inherit autotools pkgconfig
|
inherit autotools pkgconfig
|
||||||
|
|
||||||
EXTRA_OECONF = "--enable-pda-folders"
|
EXTRA_OECONF = " --enable-pda-folders "
|
||||||
|
|
||||||
FILES_${PN} = "${bindir} \
|
FILES_${PN} = "${bindir} \
|
||||||
${datadir}/matchbox/vfolders \
|
${datadir}/matchbox/vfolders \
|
||||||
|
|||||||
@@ -33,14 +33,8 @@ export BUILD_CCFLAGS = "-I${S}/ncurses -I${S}/include ${BUILD_CFLAGS}"
|
|||||||
export BUILD_LDFLAGS = ""
|
export BUILD_LDFLAGS = ""
|
||||||
export EXTRA_OEMAKE = '"BUILD_LDFLAGS=" "BUILD_CCFLAGS=${BUILD_CCFLAGS}"'
|
export EXTRA_OEMAKE = '"BUILD_LDFLAGS=" "BUILD_CCFLAGS=${BUILD_CCFLAGS}"'
|
||||||
|
|
||||||
do_stage () {
|
do_stage() {
|
||||||
for i in libncurses libpanel libform libmenu; do
|
autotools_stage_all
|
||||||
oe_libinstall -so -a -C lib $i ${STAGING_LIBDIR}
|
|
||||||
done
|
|
||||||
for h in ncurses_*.h curses.h eti.h form.h menu.h panel.h \
|
|
||||||
termcap.h term.h unctrl.h; do
|
|
||||||
install -m 0644 include/$h ${STAGING_INCDIR}/
|
|
||||||
done
|
|
||||||
ln -sf curses.h ${STAGING_INCDIR}/ncurses.h
|
ln -sf curses.h ${STAGING_INCDIR}/ncurses.h
|
||||||
ln -sf libncurses.so ${STAGING_LIBDIR}/libtermcap.so
|
ln -sf libncurses.so ${STAGING_LIBDIR}/libtermcap.so
|
||||||
ln -sf libncurses.a ${STAGING_LIBDIR}/libtermcap.a
|
ln -sf libncurses.a ${STAGING_LIBDIR}/libtermcap.a
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ SECTION = "base"
|
|||||||
DESCRIPTION = "This package provides the necessary \
|
DESCRIPTION = "This package provides the necessary \
|
||||||
infrastructure for basic TCP/IP based networking."
|
infrastructure for basic TCP/IP based networking."
|
||||||
LICENSE = "GPL"
|
LICENSE = "GPL"
|
||||||
PR = "r6"
|
PR = "r7"
|
||||||
|
|
||||||
inherit update-rc.d
|
inherit update-rc.d
|
||||||
|
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ PRIORITY = "optional"
|
|||||||
PROVIDES = "spectrum-modules"
|
PROVIDES = "spectrum-modules"
|
||||||
MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>"
|
MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>"
|
||||||
LICENSE = "GPL"
|
LICENSE = "GPL"
|
||||||
PR = "r7"
|
PR = "r8"
|
||||||
|
|
||||||
SRC_URI = "http://ozlabs.org/people/dgibson/dldwd/orinoco-${PV}.tar.gz \
|
SRC_URI = "http://ozlabs.org/people/dgibson/dldwd/orinoco-${PV}.tar.gz \
|
||||||
file://makefile_fix.patch;patch=1 \
|
file://makefile_fix.patch;patch=1 \
|
||||||
|
|||||||
@@ -1,12 +1,19 @@
|
|||||||
|
module_id() {
|
||||||
|
awk 'BEGIN { FS=": " } /Hardware/ { print $2 } ' </proc/cpuinfo
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
case `awk 'BEGIN { FS=":" } /Processor/ { gsub(/ /, "", $2) ; print $2 } ' </proc/cpuinfo` in
|
case `awk 'BEGIN { FS=":" } /Processor/ { gsub(/ /, "", $2) ; print $2 } ' </proc/cpuinfo` in
|
||||||
*XScale-PXA2*)
|
*XScale-PXA2*)
|
||||||
|
|
||||||
case "`uname -r`" in
|
case "`uname -r`" in
|
||||||
2.4*)
|
2.4*)
|
||||||
PCIC=pxa_cs
|
PCIC=pxa_cs
|
||||||
|
DS=ds
|
||||||
;;
|
;;
|
||||||
2.6*)
|
2.6*)
|
||||||
PCIC=pxa2xx_core
|
PCIC=pxa2xx_core
|
||||||
|
DS=pcmcia
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
@@ -19,12 +26,8 @@ case `awk 'BEGIN { FS=":" } /Processor/ { gsub(/ /, "", $2) ; print $2 } ' </pro
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
if grep -q iPAQ /proc/cpuinfo; then
|
case `module_id` in
|
||||||
case `module_id` in
|
"HP iPAQ H3"* | "HP iPAQ H5"*)
|
||||||
"HP iPAQ H2200")
|
PCIC_EXTRA=h3600_generic_sleeve
|
||||||
;;
|
;;
|
||||||
*)
|
esac
|
||||||
PCIC_EXTRA=h3600_generic_sleeve
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|||||||
@@ -3,4 +3,11 @@ manfid 0x0149, 0xc1ab
|
|||||||
version "Fast Ethernet", "CF Size PC Card", "1.0"
|
version "Fast Ethernet", "CF Size PC Card", "1.0"
|
||||||
bind "pcnet_cs"
|
bind "pcnet_cs"
|
||||||
|
|
||||||
|
card "Hawking 10/100 CF Fast Ethernet"
|
||||||
|
manfid 0x0149, 0xc1ab
|
||||||
|
bind "pcnet_cs"
|
||||||
|
|
||||||
|
card "Billionton CFLA-100N 10/100 FastEthernet"
|
||||||
|
version "CF", "100Base-Ethernet", "V", "1.0"
|
||||||
|
manfid 0x021b, 0x0202
|
||||||
|
bind "pcnet_cs"
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ SECTION = "base"
|
|||||||
PRIORITY = "required"
|
PRIORITY = "required"
|
||||||
LICENSE = "GPL"
|
LICENSE = "GPL"
|
||||||
DEPENDS = "virtual/kernel"
|
DEPENDS = "virtual/kernel"
|
||||||
PR = "r19"
|
PR = "r21"
|
||||||
|
|
||||||
SRC_URI = "${SOURCEFORGE_MIRROR}/pcmcia-cs/pcmcia-cs-${PV}.tar.gz \
|
SRC_URI = "${SOURCEFORGE_MIRROR}/pcmcia-cs/pcmcia-cs-${PV}.tar.gz \
|
||||||
file://busybox.patch;patch=1 \
|
file://busybox.patch;patch=1 \
|
||||||
|
|||||||
@@ -801,7 +801,7 @@ perl5='hostperl'
|
|||||||
perl=''
|
perl=''
|
||||||
perl_patchlevel=''
|
perl_patchlevel=''
|
||||||
perladmin='slug@thg-slug1.thg.se'
|
perladmin='slug@thg-slug1.thg.se'
|
||||||
perllibs='-lnsl -ldl -lm -lcrypt -lutil -lc -lgcc_s'
|
perllibs='-lnsl -ldl -lm -lcrypt -lutil -lc -lgcc_s $$($(CC) -print-libgcc-file-name)'
|
||||||
perlpath='hostperl'
|
perlpath='hostperl'
|
||||||
pg='pg'
|
pg='pg'
|
||||||
phostname='hostname'
|
phostname='hostname'
|
||||||
|
|||||||
@@ -4,12 +4,11 @@ additional functions to maintain a list of previously-entered command lines, to
|
|||||||
lines, and perform csh-like history expansion on previous commands."
|
lines, and perform csh-like history expansion on previous commands."
|
||||||
SECTION = "libs"
|
SECTION = "libs"
|
||||||
PRIORITY = "optional"
|
PRIORITY = "optional"
|
||||||
MAINTAINER = "Greg Gilbert <greg@treke.net>"
|
|
||||||
LICENSE = "GPLv2"
|
LICENSE = "GPLv2"
|
||||||
DEPENDS += "ncurses"
|
DEPENDS += "ncurses"
|
||||||
RPROVIDES_${PN} += "readline"
|
RPROVIDES_${PN} += "readline"
|
||||||
LEAD_SONAME = "libreadline.so"
|
LEAD_SONAME = "libreadline.so"
|
||||||
PR = "r2"
|
PR = "r3"
|
||||||
|
|
||||||
SRC_URI = "ftp://ftp.cwru.edu/pub/bash/readline-${PV}.tar.gz \
|
SRC_URI = "ftp://ftp.cwru.edu/pub/bash/readline-${PV}.tar.gz \
|
||||||
file://shlink-termcap.patch;patch=1 \
|
file://shlink-termcap.patch;patch=1 \
|
||||||
@@ -23,24 +22,13 @@ do_configure () {
|
|||||||
autotools_do_configure
|
autotools_do_configure
|
||||||
}
|
}
|
||||||
|
|
||||||
|
do_stage() {
|
||||||
|
autotools_stage_all
|
||||||
|
}
|
||||||
|
|
||||||
do_install () {
|
do_install () {
|
||||||
autotools_do_install
|
autotools_do_install
|
||||||
# Make install doesn't properly install these
|
# Make install doesn't properly install these
|
||||||
oe_libinstall -so -C shlib libhistory ${D}${libdir}
|
oe_libinstall -so -C shlib libhistory ${D}${libdir}
|
||||||
oe_libinstall -so -C shlib libreadline ${D}${libdir}
|
oe_libinstall -so -C shlib libreadline ${D}${libdir}
|
||||||
}
|
}
|
||||||
|
|
||||||
do_stage() {
|
|
||||||
oe_libinstall -a libhistory ${STAGING_LIBDIR}
|
|
||||||
oe_libinstall -a libreadline ${STAGING_LIBDIR}
|
|
||||||
oe_libinstall -so -C shlib libhistory ${STAGING_LIBDIR}
|
|
||||||
oe_libinstall -so -C shlib libreadline ${STAGING_LIBDIR}
|
|
||||||
|
|
||||||
install -d ${STAGING_INCDIR}/readline
|
|
||||||
for f in readline.h chardefs.h keymaps.h history.h tilde.h rlstdc.h \
|
|
||||||
rlconf.h rltypedefs.h
|
|
||||||
do
|
|
||||||
install -m 0644 $f ${STAGING_INCDIR}/readline/
|
|
||||||
done
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
PV = "0.0cvs${CVSDATE}"
|
PV = "0.0cvs${CVSDATE}"
|
||||||
LICENSE = "BSD-X"
|
LICENSE = "BSD-X"
|
||||||
SECTION = "libs"
|
SECTION = "libs"
|
||||||
MAINTAINER = "Phil Blundell <pb@nexus.co.uk>"
|
MAINTAINER = "Phil Blundell <pb@handhelds.org>"
|
||||||
DESCRIPTION = "XRecord extension protocol bits"
|
DESCRIPTION = "XRecord extension protocol bits"
|
||||||
|
|
||||||
SRC_URI = "cvs://anoncvs:anoncvs@pdx.freedesktop.org/cvs/xlibs;module=RecordExt"
|
SRC_URI = "cvs://anoncvs:anoncvs@pdx.freedesktop.org/cvs/xlibs;module=RecordExt"
|
||||||
|
|||||||
@@ -11,15 +11,7 @@ case `uname -r` in
|
|||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
TSLIB_TSDEVICE=`detect-stylus --device`
|
TSLIB_TSDEVICE=`detect-stylus --device`
|
||||||
case `module_id` in
|
TSLIB_CONFFILE=/usr/share/tslib/ts.conf-h3600
|
||||||
"HP iPAQ H2200")
|
|
||||||
# h2200 needs special linearizing thing
|
|
||||||
TSLIB_CONFFILE=/usr/share/tslib/ts.conf-h2200
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
TSLIB_CONFFILE=/usr/share/tslib/ts.conf-h3600
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,15 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
TSLIB_TSDEVICE=/dev/input/event0
|
case `uname -r` in
|
||||||
|
2.4*)
|
||||||
|
TSLIB_TSDEVICE=/dev/touchscreen/ucb1x00
|
||||||
|
TSLIB_CONFFILE=/usr/share/tslib/ts.conf-simpad-2.4
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
TSLIB_TSDEVICE=/dev/input/event0
|
||||||
|
TSLIB_CONFFILE=/usr/share/tslib/ts.conf-simpad
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
export TSLIB_TSDEVICE TSLIB_CONFFILE
|
||||||
|
|
||||||
export TSLIB_TSDEVICE
|
|
||||||
|
|||||||
@@ -0,0 +1,5 @@
|
|||||||
|
module_raw input
|
||||||
|
module pthres pmin=1
|
||||||
|
module variance delta=30
|
||||||
|
module dejitter delta=100
|
||||||
|
module linear
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
module_raw ucb1x00
|
||||||
|
module pthres pmin=1
|
||||||
|
module variance delta=10
|
||||||
|
module dejitter delta=150
|
||||||
|
module linear
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
SECTION = "base"
|
SECTION = "base"
|
||||||
DESCRIPTION = "tslib is a touchscreen access library."
|
DESCRIPTION = "tslib is a touchscreen access library."
|
||||||
PV = "0.0cvs${CVSDATE}"
|
PV = "0.0cvs${CVSDATE}"
|
||||||
PR = "r31"
|
PR = "r32"
|
||||||
|
|
||||||
SRC_URI_OVERRIDES_PACKAGE_ARCH = "0"
|
SRC_URI_OVERRIDES_PACKAGE_ARCH = "0"
|
||||||
PACKAGE_ARCH_tslib-conf = "${MACHINE}"
|
PACKAGE_ARCH_tslib-conf = "${MACHINE}"
|
||||||
@@ -9,8 +9,9 @@ PACKAGE_ARCH_mnci = "${MACHINE}"
|
|||||||
|
|
||||||
SRC_URI = "cvs://cvs:@pubcvs.arm.linux.org.uk/mnt/src/cvsroot;module=tslib \
|
SRC_URI = "cvs://cvs:@pubcvs.arm.linux.org.uk/mnt/src/cvsroot;module=tslib \
|
||||||
file://ts.conf \
|
file://ts.conf \
|
||||||
file://ts.conf-h3600 file://ts.conf-h3600-2.4 file://ts.conf-h2200 file://ts.conf-h6300 \
|
file://ts.conf-h3600 file://ts.conf-h3600-2.4 file://ts.conf-h6300 \
|
||||||
file://ts.conf-corgi file://ts.conf-corgi-2.4 \
|
file://ts.conf-corgi file://ts.conf-corgi-2.4 \
|
||||||
|
file://ts.conf-simpad file://ts.conf-simpad-2.4 \
|
||||||
file://tslib.sh"
|
file://tslib.sh"
|
||||||
SRC_URI_append_mnci += " file://devfs.patch;patch=1"
|
SRC_URI_append_mnci += " file://devfs.patch;patch=1"
|
||||||
SRC_URI_append_mnci += " file://event1.patch;patch=1"
|
SRC_URI_append_mnci += " file://event1.patch;patch=1"
|
||||||
@@ -40,9 +41,9 @@ do_install_append() {
|
|||||||
install -d ${D}${sysconfdir}/profile.d/
|
install -d ${D}${sysconfdir}/profile.d/
|
||||||
install -m 0755 ${WORKDIR}/tslib.sh ${D}${sysconfdir}/profile.d/
|
install -m 0755 ${WORKDIR}/tslib.sh ${D}${sysconfdir}/profile.d/
|
||||||
case ${MACHINE} in
|
case ${MACHINE} in
|
||||||
h3600 | h3900 | h1940 | h6300 | ipaq-pxa270)
|
h3600 | h3900 | h1940 | h6300 | h2200 | ipaq-pxa270)
|
||||||
install -d ${D}${datadir}/tslib
|
install -d ${D}${datadir}/tslib
|
||||||
for f in ts.conf-h3600 ts.conf-h3600-2.4 ts.conf-h2200 ts.conf-h6300; do
|
for f in ts.conf-h3600 ts.conf-h3600-2.4 ts.conf-h6300; do
|
||||||
install -m 0644 ${WORKDIR}/$f ${D}${datadir}/tslib/
|
install -m 0644 ${WORKDIR}/$f ${D}${datadir}/tslib/
|
||||||
done
|
done
|
||||||
rm -f ${D}${sysconfdir}/ts.conf
|
rm -f ${D}${sysconfdir}/ts.conf
|
||||||
@@ -54,6 +55,13 @@ do_install_append() {
|
|||||||
done
|
done
|
||||||
rm -f ${D}${sysconfdir}/ts.conf
|
rm -f ${D}${sysconfdir}/ts.conf
|
||||||
;;
|
;;
|
||||||
|
simpad )
|
||||||
|
install -d ${D}${datadir}/tslib
|
||||||
|
for f in ts.conf-simpad ts.conf-simpad-2.4; do
|
||||||
|
install -m 0644 ${WORKDIR}/$f ${D}${datadir}/tslib/
|
||||||
|
done
|
||||||
|
rm -f ${D}${sysconfdir}/ts.conf
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|||||||
@@ -52,7 +52,9 @@ mount_tmpfs() {
|
|||||||
|
|
||||||
mkdir -p /dev/.static/dev
|
mkdir -p /dev/.static/dev
|
||||||
chmod 700 /dev/.static/
|
chmod 700 /dev/.static/
|
||||||
mount -n -o move /etc/udev /dev/.static/dev
|
# Make sure it's busybox mount we're using. util-linux mount doesn't handle
|
||||||
|
# -o move.
|
||||||
|
busybox mount -n -o move /etc/udev /dev/.static/dev
|
||||||
}
|
}
|
||||||
|
|
||||||
# I hate this hack. -- Md
|
# I hate this hack. -- Md
|
||||||
|
|||||||
@@ -54,6 +54,8 @@ KERNEL=="issm*", NAME="infiniband/%k"
|
|||||||
KERNEL=="uverbs*", NAME="infiniband/%k"
|
KERNEL=="uverbs*", NAME="infiniband/%k"
|
||||||
KERNEL=="ucm", NAME="infiniband/%k"
|
KERNEL=="ucm", NAME="infiniband/%k"
|
||||||
|
|
||||||
|
KERNEL=="buzzer", NAME="misc/buzzer"
|
||||||
|
|
||||||
# ALSA devices
|
# ALSA devices
|
||||||
KERNEL=="controlC[0-9]*", NAME="snd/%k"
|
KERNEL=="controlC[0-9]*", NAME="snd/%k"
|
||||||
KERNEL=="hwC[D0-9]*", NAME="snd/%k"
|
KERNEL=="hwC[D0-9]*", NAME="snd/%k"
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
|
|||||||
|
|
||||||
include udev.inc
|
include udev.inc
|
||||||
|
|
||||||
PR = "r3"
|
PR = "r5"
|
||||||
|
|
||||||
UDEV_EXTRAS = "extras/firmware/ extras/scsi_id/ extras/volume_id/ extras/run_directory/"
|
UDEV_EXTRAS = "extras/firmware/ extras/scsi_id/ extras/volume_id/ extras/run_directory/"
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ diff -u -r1.6 -r1.7
|
|||||||
#
|
#
|
||||||
# update-rc.d Update the links in /etc/rc[0-9S].d/
|
# update-rc.d Update the links in /etc/rc[0-9S].d/
|
||||||
#
|
#
|
||||||
-# Phil Blundell <pb@nexus.co.uk> 2003-06-26
|
-# Phil Blundell <pb@handhelds.org> 2003-06-26
|
||||||
+# (c) 2003, 2004 Phil Blundell <pb@handhelds.org>
|
+# (c) 2003, 2004 Phil Blundell <pb@handhelds.org>
|
||||||
#
|
#
|
||||||
+# This program is free software; you can redistribute it and/or modify
|
+# This program is free software; you can redistribute it and/or modify
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
PV = "0.0cvs${CVSDATE}"
|
PV = "0.0cvs${CVSDATE}"
|
||||||
SECTION = "x11/libs"
|
SECTION = "x11/libs"
|
||||||
LICENSE = "BSD-X"
|
LICENSE = "BSD-X"
|
||||||
MAINTAINER = "Phil Blundell <pb@nexus.co.uk>"
|
MAINTAINER = "Phil Blundell <pb@handhelds.org>"
|
||||||
DESCRIPTION = "XCalibrate extension headers"
|
DESCRIPTION = "XCalibrate extension headers"
|
||||||
|
|
||||||
SRC_URI = "cvs://anoncvs:anoncvs@pdx.freedesktop.org/cvs/xlibs;module=XCalibrateExt"
|
SRC_URI = "cvs://anoncvs:anoncvs@pdx.freedesktop.org/cvs/xlibs;module=XCalibrateExt"
|
||||||
|
|||||||
@@ -0,0 +1,13 @@
|
|||||||
|
--- xserver/hw/kdrive/linux/mouse.c.orig 2004-05-13 14:25:51.000000000 -0700
|
||||||
|
+++ xserver/hw/kdrive/linux/mouse.c 2005-09-22 12:20:47.000000000 -0700
|
||||||
|
@@ -927,8 +927,10 @@ char *kdefaultMouse[] = {
|
||||||
|
"/dev/psaux",
|
||||||
|
"/dev/input/mice",
|
||||||
|
"/dev/adbmouse",
|
||||||
|
+#ifdef BREAK_MY_SERIAL_CONSOLE
|
||||||
|
"/dev/ttyS0",
|
||||||
|
"/dev/ttyS1",
|
||||||
|
+#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
#define NUM_DEFAULT_MOUSE (sizeof (kdefaultMouse) / sizeof (kdefaultMouse[0]))
|
||||||
@@ -20,7 +20,7 @@ DESCRIPTION_xserver-kdrive-epson = "X server from freedesktop.org, supporting Ep
|
|||||||
DESCRIPTION_xserver-kdrive-fake = "Fake X server"
|
DESCRIPTION_xserver-kdrive-fake = "Fake X server"
|
||||||
DESCRIPTION_xserver-kdrive-xephyr = "X server in an X window"
|
DESCRIPTION_xserver-kdrive-xephyr = "X server in an X window"
|
||||||
|
|
||||||
PR = "r2"
|
PR = "r4"
|
||||||
|
|
||||||
FILES_xserver-kdrive-fbdev = "${bindir}/Xfbdev"
|
FILES_xserver-kdrive-fbdev = "${bindir}/Xfbdev"
|
||||||
FILES_xserver-kdrive-ati = "${bindir}/Xati"
|
FILES_xserver-kdrive-ati = "${bindir}/Xati"
|
||||||
@@ -35,18 +35,22 @@ FILES_xserver-kdrive-xephyr = "${bindir}/Xephyr"
|
|||||||
|
|
||||||
SRC_URI = "cvs://anoncvs:anoncvs@pdx.freedesktop.org/cvs/xserver;module=xserver;date=${FIXEDCVSDATE} \
|
SRC_URI = "cvs://anoncvs:anoncvs@pdx.freedesktop.org/cvs/xserver;module=xserver;date=${FIXEDCVSDATE} \
|
||||||
file://kmode.patch;patch=1 \
|
file://kmode.patch;patch=1 \
|
||||||
file://fbdev-not-fix.patch;patch=1"
|
file://fbdev-not-fix.patch;patch=1 "
|
||||||
|
|
||||||
SRC_URI_append_mnci = " file://onlyfb.patch;patch=1 \
|
SRC_URI_append_mnci = " file://onlyfb.patch;patch=1 \
|
||||||
file://devfs.patch;patch=1 \
|
file://devfs.patch;patch=1 \
|
||||||
file://disable-apm.patch;patch=1"
|
file://disable-apm.patch;patch=1"
|
||||||
SRC_URI_append_poodle = " file://xserver-kdrive-poodle.patch;patch=1"
|
SRC_URI_append_poodle = " file://xserver-kdrive-poodle.patch;patch=1"
|
||||||
SRC_URI_append_c7x0 = " file://disable-apm.patch;patch=1"
|
SRC_URI_append_c7x0 = " file://disable-apm.patch;patch=1"
|
||||||
SRC_URI_append_ipaq-pxa270 = " file://disable-apm.patch;patch=1"
|
SRC_URI_append_ipaq-pxa270= " file://disable-apm.patch;patch=1"
|
||||||
|
SRC_URI_append_h3900 = " file://disable-apm.patch;patch=1"
|
||||||
|
SRC_URI_append_h2200 = " file://disable-apm.patch;patch=1"
|
||||||
|
|
||||||
PACKAGE_ARCH_poodle = "poodle"
|
PACKAGE_ARCH_poodle = "poodle"
|
||||||
PACKAGE_ARCH_c7x0 = "c7x0"
|
PACKAGE_ARCH_c7x0 = "c7x0"
|
||||||
PACKAGE_ARCH_ipaq-pxa270 = "ipaq-pxa270"
|
PACKAGE_ARCH_ipaq-pxa270 = "ipaq-pxa270"
|
||||||
|
PACKAGE_ARCH_h3900 = "h3900"
|
||||||
|
PACKAGE_ARCH_h2200 = "h2200"
|
||||||
|
|
||||||
S = "${WORKDIR}/xserver"
|
S = "${WORKDIR}/xserver"
|
||||||
|
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ DESCRIPTION_xserver-kdrive-epson = "X server from freedesktop.org, supporting Ep
|
|||||||
DESCRIPTION_xserver-kdrive-fake = "Fake X server"
|
DESCRIPTION_xserver-kdrive-fake = "Fake X server"
|
||||||
DESCRIPTION_xserver-kdrive-xephyr = "X server in an X window"
|
DESCRIPTION_xserver-kdrive-xephyr = "X server in an X window"
|
||||||
|
|
||||||
PR = "r10"
|
PR = "r12"
|
||||||
|
|
||||||
FILES_xserver-kdrive-fbdev = "${bindir}/Xfbdev"
|
FILES_xserver-kdrive-fbdev = "${bindir}/Xfbdev"
|
||||||
FILES_xserver-kdrive-ati = "${bindir}/Xati"
|
FILES_xserver-kdrive-ati = "${bindir}/Xati"
|
||||||
@@ -34,12 +34,14 @@ FILES_xserver-kdrive-xephyr = "${bindir}/Xephyr"
|
|||||||
|
|
||||||
SRC_URI = "cvs://anoncvs:anoncvs@pdx.freedesktop.org/cvs/xserver;module=xserver;date=${FIXEDCVSDATE} \
|
SRC_URI = "cvs://anoncvs:anoncvs@pdx.freedesktop.org/cvs/xserver;module=xserver;date=${FIXEDCVSDATE} \
|
||||||
file://kmode.patch;patch=1 \
|
file://kmode.patch;patch=1 \
|
||||||
|
file://no-serial-probing.patch;patch=1 \
|
||||||
file://fbdev-not-fix.patch;patch=1"
|
file://fbdev-not-fix.patch;patch=1"
|
||||||
|
|
||||||
SRC_URI_append_mnci = " file://onlyfb.patch;patch=1"
|
SRC_URI_append_mnci = " file://onlyfb.patch;patch=1"
|
||||||
SRC_URI_append_poodle = " file://xserver-kdrive-poodle.patch;patch=1"
|
SRC_URI_append_poodle = " file://xserver-kdrive-poodle.patch;patch=1"
|
||||||
PACKAGE_ARCH_poodle = "poodle"
|
PACKAGE_ARCH_poodle = "poodle"
|
||||||
|
|
||||||
|
|
||||||
S = "${WORKDIR}/xserver"
|
S = "${WORKDIR}/xserver"
|
||||||
|
|
||||||
inherit autotools pkgconfig
|
inherit autotools pkgconfig
|
||||||
|
|||||||
Reference in New Issue
Block a user