summaryrefslogtreecommitdiffstats
path: root/openembedded
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2005-10-10 10:41:35 +0000
committerRichard Purdie <richard@openedhand.com>2005-10-10 10:41:35 +0000
commitcbf3ef91305558fb8a59e19c5987a9e9ca22013a (patch)
treef7142e57734a8b2fac92ff758a6617d4464a82f9 /openembedded
parent562d4d35878bb644cbe2b9f23ef407fd6e1e38e2 (diff)
downloadpoky-cbf3ef91305558fb8a59e19c5987a9e9ca22013a.tar.gz
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
Diffstat (limited to 'openembedded')
-rw-r--r--openembedded/classes/autotools.bbclass12
-rw-r--r--openembedded/classes/binconfig.bbclass4
-rw-r--r--openembedded/classes/efl.bbclass4
-rw-r--r--openembedded/classes/kernel.bbclass4
-rw-r--r--openembedded/classes/qt3x11.bbclass1
-rw-r--r--openembedded/classes/qt4x11.bbclass1
-rw-r--r--openembedded/classes/sourcepkg.bbclass4
-rw-r--r--openembedded/conf/bitbake.conf1
-rw-r--r--openembedded/conf/distro/maemo-1.0.conf2
-rw-r--r--openembedded/conf/distro/preferred-gpe-versions-2.6.inc86
-rw-r--r--openembedded/conf/machine/ipaq-pxa270.conf2
-rw-r--r--openembedded/conf/machine/nokia770.conf1
-rw-r--r--openembedded/packages/base-files/base-files/nokia770/fstab14
-rw-r--r--openembedded/packages/base-files/base-files/simpad/fstab2
-rw-r--r--openembedded/packages/hostap/files/hostap_cs.conf16
-rw-r--r--openembedded/packages/hostap/hostap-modules_0.3.9.bb2
-rw-r--r--openembedded/packages/linux/linux-openzaurus.inc11
-rw-r--r--openembedded/packages/linux/linux-openzaurus_2.6.14-rc1.bb6
-rw-r--r--openembedded/packages/matchbox-common/matchbox-common_svn.bb4
-rw-r--r--openembedded/packages/ncurses/ncurses.inc10
-rw-r--r--openembedded/packages/netbase/netbase_4.21.bb2
-rw-r--r--openembedded/packages/orinoco/orinoco-modules_0.15rc2.bb2
-rw-r--r--openembedded/packages/pcmcia-cs/files/arm/pcmcia21
-rw-r--r--openembedded/packages/pcmcia-cs/files/network.conf7
-rw-r--r--openembedded/packages/pcmcia-cs/pcmcia-cs_3.2.8.bb2
-rw-r--r--openembedded/packages/perl/perl-5.8.7/config.sh-armeb-linux2
-rw-r--r--openembedded/packages/readline/readline_4.3.bb22
-rw-r--r--openembedded/packages/recordext/recordext_cvs.bb2
-rw-r--r--openembedded/packages/tslib/tslib/h3900/tslib.sh10
-rw-r--r--openembedded/packages/tslib/tslib/simpad/tslib.sh14
-rw-r--r--openembedded/packages/tslib/tslib/ts.conf-simpad5
-rw-r--r--openembedded/packages/tslib/tslib/ts.conf-simpad-2.45
-rw-r--r--openembedded/packages/tslib/tslib_cvs.bb16
-rwxr-xr-xopenembedded/packages/udev/files/init4
-rw-r--r--openembedded/packages/udev/files/udev.rules2
-rw-r--r--openembedded/packages/udev/udev_070.bb2
-rw-r--r--openembedded/packages/update-rc.d/update-rc.d-0.6/copyright.patch2
-rw-r--r--openembedded/packages/xcalibrateext/xcalibrateext_cvs.bb2
-rw-r--r--openembedded/packages/xserver/xserver-kdrive/no-serial-probing.patch13
-rw-r--r--openembedded/packages/xserver/xserver-kdrive_20050207.bb20
-rw-r--r--openembedded/packages/xserver/xserver-kdrive_20050624.bb4
41 files changed, 169 insertions, 177 deletions
diff --git a/openembedded/classes/autotools.bbclass b/openembedded/classes/autotools.bbclass
index ec1d4af1a4..8d448ce0d3 100644
--- a/openembedded/classes/autotools.bbclass
+++ b/openembedded/classes/autotools.bbclass
@@ -150,4 +150,16 @@ autotools_stage_includes() {
150 fi 150 fi
151} 151}
152 152
153autotools_stage_all() {
154 if [ "${INHIBIT_AUTO_STAGE}" != "1" ]
155 then
156 rm -rf ${STAGE_TEMP}
157 mkdir -p ${STAGE_TEMP}
158 oe_runmake DESTDIR="${STAGE_TEMP}" install
159 cp -pPR ${STAGE_TEMP}/${includedir}/* ${STAGING_INCDIR}
160 cp -pPR ${STAGE_TEMP}/${libdir}/* ${STAGING_LIBDIR}
161 rm -rf ${STAGE_TEMP}
162 fi
163}
164
153EXPORT_FUNCTIONS do_configure do_install 165EXPORT_FUNCTIONS do_configure do_install
diff --git a/openembedded/classes/binconfig.bbclass b/openembedded/classes/binconfig.bbclass
index a599dec3f2..bf15ebcdf9 100644
--- a/openembedded/classes/binconfig.bbclass
+++ b/openembedded/classes/binconfig.bbclass
@@ -24,8 +24,10 @@ def is_native(d):
24 import bb.data 24 import bb.data
25 return ["","-native"][bb.data.inherits_class('native', d)] 25 return ["","-native"][bb.data.inherits_class('native', d)]
26 26
27BINCONFIG_GLOB ?= "*-config"
28
27do_stage_append() { 29do_stage_append() {
28 for config in `find ${S} -name '*-config'`; do 30 for config in `find ${S} -name '${BINCONFIG_GLOB}'`; do
29 configname=`basename $config`${@is_native(d)} 31 configname=`basename $config`${@is_native(d)}
30 install -d ${STAGING_BINDIR} 32 install -d ${STAGING_BINDIR}
31 cat $config | sed ${@get_binconfig_mangle(d)} > ${STAGING_BINDIR}/$configname 33 cat $config | sed ${@get_binconfig_mangle(d)} > ${STAGING_BINDIR}/$configname
diff --git a/openembedded/classes/efl.bbclass b/openembedded/classes/efl.bbclass
index 16c2dba0b8..964748e85c 100644
--- a/openembedded/classes/efl.bbclass
+++ b/openembedded/classes/efl.bbclass
@@ -38,6 +38,10 @@ export ESMART_CONFIG = "${STAGING_BINDIR}/esmart-config${@binconfig_suffix(d)}"
38export FREETYPE_CONFIG = "${STAGING_BINDIR}/freetype-config${@binconfig_suffix(d)}" 38export FREETYPE_CONFIG = "${STAGING_BINDIR}/freetype-config${@binconfig_suffix(d)}"
39export IMLIB2_CONFIG = "${STAGING_BINDIR}/imlib2-config${@binconfig_suffix(d)}" 39export IMLIB2_CONFIG = "${STAGING_BINDIR}/imlib2-config${@binconfig_suffix(d)}"
40 40
41do_compile_prepend() {
42 find ${S} -name Makefile | xargs sed -i 's:/usr/include:${STAGING_INCDIR}:'
43}
44
41do_stage_append () { 45do_stage_append () {
42 for i in ${libraries} 46 for i in ${libraries}
43 do 47 do
diff --git a/openembedded/classes/kernel.bbclass b/openembedded/classes/kernel.bbclass
index ff9aeeab78..df676c5a8d 100644
--- a/openembedded/classes/kernel.bbclass
+++ b/openembedded/classes/kernel.bbclass
@@ -60,7 +60,9 @@ PACKAGE_ARCH = "${MACHINE_ARCH}"
60kernel_do_compile() { 60kernel_do_compile() {
61 unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS 61 unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS
62 oe_runmake include/linux/version.h CC="${KERNEL_CC}" LD="${KERNEL_LD}" 62 oe_runmake include/linux/version.h CC="${KERNEL_CC}" LD="${KERNEL_LD}"
63 oe_runmake dep CC="${KERNEL_CC}" LD="${KERNEL_LD}" 63 if ${KERNEL_MAJOR_VERSION} != "2.6"; then
64 oe_runmake dep CC="${KERNEL_CC}" LD="${KERNEL_LD}"
65 fi
64 oe_runmake ${KERNEL_IMAGETYPE} CC="${KERNEL_CC}" LD="${KERNEL_LD}" 66 oe_runmake ${KERNEL_IMAGETYPE} CC="${KERNEL_CC}" LD="${KERNEL_LD}"
65 if (grep -q -i -e '^CONFIG_MODULES=y$' .config); then 67 if (grep -q -i -e '^CONFIG_MODULES=y$' .config); then
66 oe_runmake modules CC="${KERNEL_CC}" LD="${KERNEL_LD}" 68 oe_runmake modules CC="${KERNEL_CC}" LD="${KERNEL_LD}"
diff --git a/openembedded/classes/qt3x11.bbclass b/openembedded/classes/qt3x11.bbclass
index 1023a1f800..09b9cbac96 100644
--- a/openembedded/classes/qt3x11.bbclass
+++ b/openembedded/classes/qt3x11.bbclass
@@ -1,4 +1,3 @@
1DEPENDS += "qt3-x11"
2# 1#
3# override variables set by qmake-base to compile Qt/X11 apps 2# override variables set by qmake-base to compile Qt/X11 apps
4# 3#
diff --git a/openembedded/classes/qt4x11.bbclass b/openembedded/classes/qt4x11.bbclass
index 92885aa7ee..d4ca0073df 100644
--- a/openembedded/classes/qt4x11.bbclass
+++ b/openembedded/classes/qt4x11.bbclass
@@ -1,4 +1,3 @@
1DEPENDS += "qt4-x11"
2# 1#
3# override variables set by qmake-base to compile Qt/X11 apps 2# override variables set by qmake-base to compile Qt/X11 apps
4# 3#
diff --git a/openembedded/classes/sourcepkg.bbclass b/openembedded/classes/sourcepkg.bbclass
index 3eeff91333..390d3684d4 100644
--- a/openembedded/classes/sourcepkg.bbclass
+++ b/openembedded/classes/sourcepkg.bbclass
@@ -1,5 +1,5 @@
1DEPLOY_DIR_SRC ?= "${DEPLOY_DIR}/source" 1DEPLOY_DIR_SRC ?= "${DEPLOY_DIR}/source"
2EXCLUDE_FROM ?= ".pc" 2EXCLUDE_FROM ?= ".pc autom4te.cache"
3 3
4# used as part of a path. make sure it's set 4# used as part of a path. make sure it's set
5DISTRO ?= "openembedded" 5DISTRO ?= "openembedded"
@@ -42,7 +42,7 @@ sourcepkg_do_create_orig_tgz(){
42 42
43 echo $src_tree 43 echo $src_tree
44 oenote "Creating .orig.tar.gz in ${DEPLOY_DIR_SRC}/${P}.orig.tar.gz" 44 oenote "Creating .orig.tar.gz in ${DEPLOY_DIR_SRC}/${P}.orig.tar.gz"
45 tar cvzf ${DEPLOY_DIR_SRC}/${P}.orig.tar.gz $src_tree --exclude-from temp/exclude-from-file 45 tar cvzf ${DEPLOY_DIR_SRC}/${P}.orig.tar.gz --exclude-from temp/exclude-from-file $src_tree
46 cp -pPR $src_tree $src_tree.orig 46 cp -pPR $src_tree $src_tree.orig
47} 47}
48 48
diff --git a/openembedded/conf/bitbake.conf b/openembedded/conf/bitbake.conf
index 7008ce9940..3ad1b703f5 100644
--- a/openembedded/conf/bitbake.conf
+++ b/openembedded/conf/bitbake.conf
@@ -294,6 +294,7 @@ SOURCEFORGE_MIRROR = "http://heanet.dl.sourceforge.net/sourceforge"
294GPE_MIRROR = "http://ftp.handhelds.org/pub/projects/gpe/source" 294GPE_MIRROR = "http://ftp.handhelds.org/pub/projects/gpe/source"
295XLIBS_MIRROR = "http://xlibs.freedesktop.org/release" 295XLIBS_MIRROR = "http://xlibs.freedesktop.org/release"
296GNOME_MIRROR = "http://ftp.gnome.org/pub/GNOME/sources" 296GNOME_MIRROR = "http://ftp.gnome.org/pub/GNOME/sources"
297FREEBSD_MIRROR = "ftp://ftp.freebsd.org/pub/FreeBSD/"
297HANDHELDS_CVS = "cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs" 298HANDHELDS_CVS = "cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs"
298 299
299# You can use the mirror of your country to get faster downloads by putting 300# You can use the mirror of your country to get faster downloads by putting
diff --git a/openembedded/conf/distro/maemo-1.0.conf b/openembedded/conf/distro/maemo-1.0.conf
index f8211dc3c7..15ec45f34e 100644
--- a/openembedded/conf/distro/maemo-1.0.conf
+++ b/openembedded/conf/distro/maemo-1.0.conf
@@ -28,7 +28,7 @@ PREFERRED_PROVIDERS += "virtual/${TARGET_PREFIX}g++:gcc-cross"
28# 28#
29 29
30PREFERRED_PROVIDERS += "virtual/xserver:xserver-kdrive" 30PREFERRED_PROVIDERS += "virtual/xserver:xserver-kdrive"
31#PREFERRED_PROVIDERS += "virtual/gconf:gconf-dbus" 31PREFERRED_PROVIDERS += "virtual/gconf:gconf-dbus"
32PREFERRED_PROVIDER_x11 = "diet-x11" 32PREFERRED_PROVIDER_x11 = "diet-x11"
33 33
34include conf/distro/preferred-gpe-versions.inc 34include conf/distro/preferred-gpe-versions.inc
diff --git a/openembedded/conf/distro/preferred-gpe-versions-2.6.inc b/openembedded/conf/distro/preferred-gpe-versions-2.6.inc
deleted file mode 100644
index 504d495c15..0000000000
--- a/openembedded/conf/distro/preferred-gpe-versions-2.6.inc
+++ /dev/null
@@ -1,86 +0,0 @@
1#
2# Specify which versions of GPE (and related) applications to build
3#
4
5#work around some breakages
6CVSDATE_xserver-kdrive=20050207
7CVSDATE_minimo=20050401
8CVSDATE_cairo=20050330
9CVSDATE_xext=20050222
10
11#set some preferred providers:
12#PREFERRED_PROVIDER_gconf=gconf-dbus
13
14#specify versions, as the header says :)
15PREFERRED_VERSION_libmatchbox ?= "1.6"
16PREFERRED_VERSION_matchbox ?= "0.9.1"
17PREFERRED_VERSION_matchbox-common ?= "0.9.1"
18PREFERRED_VERSION_matchbox-desktop ?= "0.9.1"
19PREFERRED_VERSION_matchbox-wm ?= "0.9.3"
20PREFERRED_VERSION_matchbox-panel ?= "0.9.1"
21PREFERRED_VERSION_matchbox-applet-inputmanager ?= "0.6"
22PREFERRED_VERSION_gtk+ ?= "2.6.3"
23PREFERRED_VERSION_libgpewidget ?= "0.97"
24PREFERRED_VERSION_libgpepimc ?= "0.4"
25PREFERRED_VERSION_libgpevtype ?= "0.11"
26PREFERRED_VERSION_libschedule ?= "0.14"
27PREFERRED_VERSION_gpe-icons ?= "0.24"
28PREFERRED_VERSION_libgsm ?= "1.0.10"
29PREFERRED_VERSION_diet-x11 ?= "6.2.1"
30PREFERRED_VERSION_xproto ?= "6.6.2"
31PREFERRED_VERSION_xcursor-transparent-theme ?= "0.1.1"
32PREFERRED_VERSION_rxvt-unicode ?= "5.3"
33PREFERRED_VERSION_gtk2-theme-angelistic ?= "0.3"
34PREFERRED_VERSION_xst ?= "0.14"
35#PREFERRED_VERSION_xextensions ?= "0.0cvs${CVSDATE}"
36PREFERRED_VERSION_xprop ?= "0.0cvs${CVSDATE}"
37PREFERRED_VERSION_xhost ?= "0.0cvs20040413"
38PREFERRED_VERSION_xrdb ?= "0.0cvs${CVSDATE}"
39PREFERRED_VERSION_gpe-login ?= "0.76"
40PREFERRED_VERSION_gpe-session-scripts ?= "0.62"
41PREFERRED_VERSION_gpe-soundserver ?= "0.4-1"
42PREFERRED_VERSION_gpe-todo ?= "0.50"
43PREFERRED_VERSION_gpe-calendar ?= "0.61"
44PREFERRED_VERSION_gpe-sketchbox ?= "0.2.8"
45PREFERRED_VERSION_gpe-contacts ?= "0.36"
46PREFERRED_VERSION_gpe-today ?= "0.08"
47PREFERRED_VERSION_matchbox-panel-manager ?= "0.1"
48PREFERRED_VERSION_dbus ?= "0.23"
49PREFERRED_VERSION_gpe-bluetooth ?= "0.38"
50PREFERRED_VERSION_gpe-su ?= "0.18"
51PREFERRED_VERSION_gpe-conf ?= "0.1.23"
52PREFERRED_VERSION_gpe-clock ?= "0.20"
53PREFERRED_VERSION_gpe-mininet ?= "0.5"
54PREFERRED_VERSION_gpe-mixer ?= "0.40"
55PREFERRED_VERSION_gpe-shield ?= "0.7"
56PREFERRED_VERSION_gpe-wlancfg ?= "0.2.6"
57PREFERRED_VERSION_gpe-taskmanager ?= "0.17"
58PREFERRED_VERSION_keylaunch ?= "2.0.7"
59PREFERRED_VERSION_minilite ?= "0.47"
60PREFERRED_VERSION_xmonobut ?= "0.4"
61PREFERRED_VERSION_gpe-edit ?= "0.28"
62PREFERRED_VERSION_gpe-gallery ?= "0.95"
63PREFERRED_VERSION_gpe-calculator ?= "0.2"
64PREFERRED_VERSION_gpe-package ?= "0.2"
65PREFERRED_VERSION_gpe-soundbite ?= "1.0.5"
66PREFERRED_VERSION_gpe-terminal ?= "1.1"
67PREFERRED_VERSION_gpe-watch ?= "0.10"
68PREFERRED_VERSION_gpe-what ?= "0.33"
69PREFERRED_VERSION_gpe-filemanager ?= "0.20"
70PREFERRED_VERSION_gpe-go ?= "0.05"
71PREFERRED_VERSION_gpe-irc ?= "0.07"
72PREFERRED_VERSION_gpe-lights ?= "0.13"
73#PREFERRED_VERSION_gpe-nmf ?= "0.19"
74PREFERRED_VERSION_gpe-othello ?= "0.2-1"
75PREFERRED_VERSION_gpe-plucker ?= "0.2"
76PREFERRED_VERSION_gpe-tetris ?= "0.6-2"
77PREFERRED_VERSION_gsoko ?= "0.4.2-gpe6"
78PREFERRED_VERSION_xdemineur ?= "2.1.1"
79PREFERRED_VERSION_matchbox-panel-hacks ?= "0.3-1"
80PREFERRED_VERSION_rosetta ?= "0.0cvs${CVSDATE}"
81PREFERRED_VERSION_dillo2 ?= "0.6.6"
82PREFERRED_VERSION_minimo ?= "0.0cvs${CVSDATE_minimo}"
83PREFERRED_VERSION_linphone-hh ?= "0.12.2.hh1"
84PREFERRED_VERSION_linphone ?= "0.12.2"
85PREFERRED_VERSION_firefox ?= "1.0"
86
diff --git a/openembedded/conf/machine/ipaq-pxa270.conf b/openembedded/conf/machine/ipaq-pxa270.conf
index ec2b1beb02..b9925852e5 100644
--- a/openembedded/conf/machine/ipaq-pxa270.conf
+++ b/openembedded/conf/machine/ipaq-pxa270.conf
@@ -12,6 +12,8 @@ PREFERRED_VERSION_orinoco-modules = "0.15rc1"
12BOOTSTRAP_EXTRA_DEPENDS = "ipaq-boot-params" 12BOOTSTRAP_EXTRA_DEPENDS = "ipaq-boot-params"
13BOOTSTRAP_EXTRA_DEPENDS_append = " handhelds-pxa-2.6 udev module-init-tools" 13BOOTSTRAP_EXTRA_DEPENDS_append = " handhelds-pxa-2.6 udev module-init-tools"
14 14
15ROOT_FLASH_SIZE = "80"
16
15BOOTSTRAP_EXTRA_RDEPENDS = "kernel ipaq-boot-params ${@linux_module_packages('${PXA270_MODULES}', d)}" 17BOOTSTRAP_EXTRA_RDEPENDS = "kernel ipaq-boot-params ${@linux_module_packages('${PXA270_MODULES}', d)}"
16BOOTSTRAP_EXTRA_RDEPENDS_append = " udev module-init-tools" 18BOOTSTRAP_EXTRA_RDEPENDS_append = " udev module-init-tools"
17 19
diff --git a/openembedded/conf/machine/nokia770.conf b/openembedded/conf/machine/nokia770.conf
index 8690348fa9..9f49f24563 100644
--- a/openembedded/conf/machine/nokia770.conf
+++ b/openembedded/conf/machine/nokia770.conf
@@ -57,3 +57,4 @@ pcmcia-cs apm ppp wireless-tools console-tools"
57ROOTFS_POSTPROCESS_COMMAND += " remove_init_link; " 57ROOTFS_POSTPROCESS_COMMAND += " remove_init_link; "
58 58
59include conf/machine/handheld-common.conf 59include conf/machine/handheld-common.conf
60
diff --git a/openembedded/packages/base-files/base-files/nokia770/fstab b/openembedded/packages/base-files/base-files/nokia770/fstab
index 4b6a5e1e17..68b56b63e3 100644
--- a/openembedded/packages/base-files/base-files/nokia770/fstab
+++ b/openembedded/packages/base-files/base-files/nokia770/fstab
@@ -1,8 +1,6 @@
1rootfs / rootfs defaults,errors=remount-ro,noatime 0 0 1rootfs / rootfs defaults,errors=remount-ro,noatime 0 0
2/dev/mmcblk0p1 /media/card auto defaults,noauto,noatime,exec,suid 0 0 2/dev/mmcblk0p1 /media/card auto defaults,noauto,noatime,exec,suid 0 0
3tmpfs /var tmpfs defaults 0 0 3tmpfs /var tmpfs defaults 0 0
4tmpfs /media/ram tmpfs defaults 0 0 4tmpfs /media/ram tmpfs defaults 0 0
5rootfs / auto defaults 1 1 5proc /proc proc defaults 0 0
6proc /proc proc defaults 0 0 6usbdevfs /proc/bus/usb usbdevfs noauto 0 0
7devpts /dev/pts devpts mode=0620,gid=5 0 0
8usbdevfs /proc/bus/usb usbdevfs noauto 0 0
diff --git a/openembedded/packages/base-files/base-files/simpad/fstab b/openembedded/packages/base-files/base-files/simpad/fstab
index f946c50c6c..99b87714e5 100644
--- a/openembedded/packages/base-files/base-files/simpad/fstab
+++ b/openembedded/packages/base-files/base-files/simpad/fstab
@@ -4,4 +4,4 @@ devpts /dev/pts devpts mode=0620,gid=5 0 0
4usbdevfs /proc/bus/usb usbdevfs noauto 0 0 4usbdevfs /proc/bus/usb usbdevfs noauto 0 0
5tmpfs /var tmpfs defaults 0 0 5tmpfs /var tmpfs defaults 0 0
6/dev/mtdblock/2 /home jffs2 defaults 1 1 6/dev/mtdblock/2 /home jffs2 defaults 1 1
7 7/dev/hda1 /mnt/cf auto noauto,owner 0 0
diff --git a/openembedded/packages/hostap/files/hostap_cs.conf b/openembedded/packages/hostap/files/hostap_cs.conf
index 0b1bcf1a58..c5f46d8e71 100644
--- a/openembedded/packages/hostap/files/hostap_cs.conf
+++ b/openembedded/packages/hostap/files/hostap_cs.conf
@@ -167,3 +167,19 @@ card "ZCOMAX AirRunner/XI-300"
167 manfid 0xd601, 0x0002 167 manfid 0xd601, 0x0002
168 bind "hostap_cs" 168 bind "hostap_cs"
169 169
170card "Zonet ZCF1100"
171 manfid 0x000b, 0x7100
172 bind "hostap_cs"
173
174card "Wireless LAN Adapter Version 01.02"
175 version "Wireless", "LAN Adapter", "Version 01.02"
176# manfid 0x0156, 0x0002
177 bind "hostap_cs"
178
179card "Ambicom WL1100C 11Mbs Card 802.11b"
180 manfid 0xd601,0x0002
181 bind "hostap_cs"
182
183card "Sandisk Connect SDWCFB-000"
184 manfid 0xd601,0x0005
185 bind "hostap_cs"
diff --git a/openembedded/packages/hostap/hostap-modules_0.3.9.bb b/openembedded/packages/hostap/hostap-modules_0.3.9.bb
index 1be1e6a77e..435054c07c 100644
--- a/openembedded/packages/hostap/hostap-modules_0.3.9.bb
+++ b/openembedded/packages/hostap/hostap-modules_0.3.9.bb
@@ -3,7 +3,7 @@ SECTION = "kernel/modules"
3PRIORITY = "optional" 3PRIORITY = "optional"
4MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>" 4MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>"
5LICENSE = "GPL" 5LICENSE = "GPL"
6PR = "r4" 6PR = "r6"
7 7
8SRC_URI = "http://hostap.epitest.fi/releases/hostap-driver-${PV}.tar.gz \ 8SRC_URI = "http://hostap.epitest.fi/releases/hostap-driver-${PV}.tar.gz \
9 file://hostap_cs.conf \ 9 file://hostap_cs.conf \
diff --git a/openembedded/packages/linux/linux-openzaurus.inc b/openembedded/packages/linux/linux-openzaurus.inc
index 68a90b290e..907801a382 100644
--- a/openembedded/packages/linux/linux-openzaurus.inc
+++ b/openembedded/packages/linux/linux-openzaurus.inc
@@ -45,7 +45,14 @@ module_autoload_pxaficp_ir = "pxaficp_ir"
45 45
46do_configure() { 46do_configure() {
47 47
48 install -m 0644 ${WORKDIR}/defconfig-${MACHINE} ${S}/.config || die "No default configuration for ${MACHINE} available." 48 case ${MACHINE} in
49 akita | spitz | borzoi )
50 install -m 0644 ${WORKDIR}/defconfig-cxx00 ${S}/.config || die "No default configuration for cxx00 available."
51 ;;
52 *)
53 install -m 0644 ${WORKDIR}/defconfig-${MACHINE} ${S}/.config || die "No default configuration for ${MACHINE} available."
54 ;;
55 esac
49 56
50 if [ "${MACHINE}" == "collie" ]; then 57 if [ "${MACHINE}" == "collie" ]; then
51 mempos=`echo "obase=16; $mem * 1024 * 1024" | bc` 58 mempos=`echo "obase=16; $mem * 1024 * 1024" | bc`
@@ -86,7 +93,7 @@ do_compile_append() {
86 size=`ls arch/${ARCH}/boot/${KERNEL_IMAGETYPE} -s | cut -d ' ' -f 1` 93 size=`ls arch/${ARCH}/boot/${KERNEL_IMAGETYPE} -s | cut -d ' ' -f 1`
87 if [ $size -ge 1271 ]; then 94 if [ $size -ge 1271 ]; then
88 rm arch/${ARCH}/boot/${KERNEL_IMAGETYPE} 95 rm arch/${ARCH}/boot/${KERNEL_IMAGETYPE}
89 die "This kernel is too big for the c7x0 and will destroy your machine if you flash it!!!" 96 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."
90 fi 97 fi
91 ;; 98 ;;
92 *) 99 *)
diff --git a/openembedded/packages/linux/linux-openzaurus_2.6.14-rc1.bb b/openembedded/packages/linux/linux-openzaurus_2.6.14-rc1.bb
index 3b374340cc..18eb8bb4a0 100644
--- a/openembedded/packages/linux/linux-openzaurus_2.6.14-rc1.bb
+++ b/openembedded/packages/linux/linux-openzaurus_2.6.14-rc1.bb
@@ -32,7 +32,7 @@ SRC_URI = "ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.13.tar.gz \
32 ${RPSRC}/sharpsl_pm-r8.patch;patch=1 \ 32 ${RPSRC}/sharpsl_pm-r8.patch;patch=1 \
33 ${RPSRC}/corgi_pm-r3.patch;patch=1 \ 33 ${RPSRC}/corgi_pm-r3.patch;patch=1 \
34 ${RPSRC}/spitz_base_extras-r2.patch;patch=1 \ 34 ${RPSRC}/spitz_base_extras-r2.patch;patch=1 \
35 ${RPSRC}/spitz_pm-r3.patch;patch=1 \ 35 ${RPSRC}/spitz_pm-r4.patch;patch=1 \
36 ${RPSRC}/spitz_kbd_fix1-r0.patch;patch=1 \ 36 ${RPSRC}/spitz_kbd_fix1-r0.patch;patch=1 \
37 ${RPSRC}/spitzcf-r3.patch;patch=1 \ 37 ${RPSRC}/spitzcf-r3.patch;patch=1 \
38 ${RPSRC}/pxa_timerfix-r0.patch;patch=1 \ 38 ${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 \
73 file://dtl1_cs-add-socket-revE.patch;patch=1 \ 73 file://dtl1_cs-add-socket-revE.patch;patch=1 \
74 file://connectplus-remove-ide-HACK.patch;patch=1 \ 74 file://connectplus-remove-ide-HACK.patch;patch=1 \
75 file://defconfig-c7x0 \ 75 file://defconfig-c7x0 \
76 file://defconfig-ipaq-pxa-2.6 \ 76 file://defconfig-ipaq-pxa270 \
77 file://defconfig-collie \ 77 file://defconfig-collie \
78 file://defconfig-poodle \ 78 file://defconfig-poodle \
79 file://defconfig-spitz \ 79 file://defconfig-cxx00 \
80 file://defconfig-tosa " 80 file://defconfig-tosa "
81 81
82# These patches would really help collie/poodle but we 82# These patches would really help collie/poodle but we
diff --git a/openembedded/packages/matchbox-common/matchbox-common_svn.bb b/openembedded/packages/matchbox-common/matchbox-common_svn.bb
index de1e20b87a..d951678551 100644
--- a/openembedded/packages/matchbox-common/matchbox-common_svn.bb
+++ b/openembedded/packages/matchbox-common/matchbox-common_svn.bb
@@ -8,9 +8,9 @@ DEFAULT_PREFERENCE = "-1"
8 8
9SRC_URI = "svn://svn.o-hand.com/repos/matchbox/trunk;module=matchbox-common;proto=http" 9SRC_URI = "svn://svn.o-hand.com/repos/matchbox/trunk;module=matchbox-common;proto=http"
10 10
11inherit autotools pkgconfig 11inherit autotools pkgconfig
12 12
13EXTRA_OECONF = "--enable-pda-folders" 13EXTRA_OECONF = " --enable-pda-folders "
14 14
15FILES_${PN} = "${bindir} \ 15FILES_${PN} = "${bindir} \
16 ${datadir}/matchbox/vfolders \ 16 ${datadir}/matchbox/vfolders \
diff --git a/openembedded/packages/ncurses/ncurses.inc b/openembedded/packages/ncurses/ncurses.inc
index f400617dcb..96679db0cb 100644
--- a/openembedded/packages/ncurses/ncurses.inc
+++ b/openembedded/packages/ncurses/ncurses.inc
@@ -33,14 +33,8 @@ export BUILD_CCFLAGS = "-I${S}/ncurses -I${S}/include ${BUILD_CFLAGS}"
33export BUILD_LDFLAGS = "" 33export BUILD_LDFLAGS = ""
34export EXTRA_OEMAKE = '"BUILD_LDFLAGS=" "BUILD_CCFLAGS=${BUILD_CCFLAGS}"' 34export EXTRA_OEMAKE = '"BUILD_LDFLAGS=" "BUILD_CCFLAGS=${BUILD_CCFLAGS}"'
35 35
36do_stage () { 36do_stage() {
37 for i in libncurses libpanel libform libmenu; do 37 autotools_stage_all
38 oe_libinstall -so -a -C lib $i ${STAGING_LIBDIR}
39 done
40 for h in ncurses_*.h curses.h eti.h form.h menu.h panel.h \
41 termcap.h term.h unctrl.h; do
42 install -m 0644 include/$h ${STAGING_INCDIR}/
43 done
44 ln -sf curses.h ${STAGING_INCDIR}/ncurses.h 38 ln -sf curses.h ${STAGING_INCDIR}/ncurses.h
45 ln -sf libncurses.so ${STAGING_LIBDIR}/libtermcap.so 39 ln -sf libncurses.so ${STAGING_LIBDIR}/libtermcap.so
46 ln -sf libncurses.a ${STAGING_LIBDIR}/libtermcap.a 40 ln -sf libncurses.a ${STAGING_LIBDIR}/libtermcap.a
diff --git a/openembedded/packages/netbase/netbase_4.21.bb b/openembedded/packages/netbase/netbase_4.21.bb
index 3426d1ae97..4046e64d79 100644
--- a/openembedded/packages/netbase/netbase_4.21.bb
+++ b/openembedded/packages/netbase/netbase_4.21.bb
@@ -2,7 +2,7 @@ SECTION = "base"
2DESCRIPTION = "This package provides the necessary \ 2DESCRIPTION = "This package provides the necessary \
3infrastructure for basic TCP/IP based networking." 3infrastructure for basic TCP/IP based networking."
4LICENSE = "GPL" 4LICENSE = "GPL"
5PR = "r6" 5PR = "r7"
6 6
7inherit update-rc.d 7inherit update-rc.d
8 8
diff --git a/openembedded/packages/orinoco/orinoco-modules_0.15rc2.bb b/openembedded/packages/orinoco/orinoco-modules_0.15rc2.bb
index 60cae87857..8093e7d246 100644
--- a/openembedded/packages/orinoco/orinoco-modules_0.15rc2.bb
+++ b/openembedded/packages/orinoco/orinoco-modules_0.15rc2.bb
@@ -5,7 +5,7 @@ PRIORITY = "optional"
5PROVIDES = "spectrum-modules" 5PROVIDES = "spectrum-modules"
6MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>" 6MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>"
7LICENSE = "GPL" 7LICENSE = "GPL"
8PR = "r7" 8PR = "r8"
9 9
10SRC_URI = "http://ozlabs.org/people/dgibson/dldwd/orinoco-${PV}.tar.gz \ 10SRC_URI = "http://ozlabs.org/people/dgibson/dldwd/orinoco-${PV}.tar.gz \
11 file://makefile_fix.patch;patch=1 \ 11 file://makefile_fix.patch;patch=1 \
diff --git a/openembedded/packages/pcmcia-cs/files/arm/pcmcia b/openembedded/packages/pcmcia-cs/files/arm/pcmcia
index d42bc84e77..05b381a5f9 100644
--- a/openembedded/packages/pcmcia-cs/files/arm/pcmcia
+++ b/openembedded/packages/pcmcia-cs/files/arm/pcmcia
@@ -1,12 +1,19 @@
1module_id() {
2 awk 'BEGIN { FS=": " } /Hardware/ { print $2 } ' </proc/cpuinfo
3}
4
5
1case `awk 'BEGIN { FS=":" } /Processor/ { gsub(/ /, "", $2) ; print $2 } ' </proc/cpuinfo` in 6case `awk 'BEGIN { FS=":" } /Processor/ { gsub(/ /, "", $2) ; print $2 } ' </proc/cpuinfo` in
2 *XScale-PXA2*) 7 *XScale-PXA2*)
3 8
4 case "`uname -r`" in 9 case "`uname -r`" in
5 2.4*) 10 2.4*)
6 PCIC=pxa_cs 11 PCIC=pxa_cs
12 DS=ds
7 ;; 13 ;;
8 2.6*) 14 2.6*)
9 PCIC=pxa2xx_core 15 PCIC=pxa2xx_core
16 DS=pcmcia
10 ;; 17 ;;
11 esac 18 esac
12 ;; 19 ;;
@@ -19,12 +26,8 @@ case `awk 'BEGIN { FS=":" } /Processor/ { gsub(/ /, "", $2) ; print $2 } ' </pro
19 ;; 26 ;;
20esac 27esac
21 28
22if grep -q iPAQ /proc/cpuinfo; then 29case `module_id` in
23 case `module_id` in 30 "HP iPAQ H3"* | "HP iPAQ H5"*)
24 "HP iPAQ H2200") 31 PCIC_EXTRA=h3600_generic_sleeve
25 ;; 32 ;;
26 *) 33esac
27 PCIC_EXTRA=h3600_generic_sleeve
28 ;;
29 esac
30fi
diff --git a/openembedded/packages/pcmcia-cs/files/network.conf b/openembedded/packages/pcmcia-cs/files/network.conf
index b35ec5c0fe..51a38dd55b 100644
--- a/openembedded/packages/pcmcia-cs/files/network.conf
+++ b/openembedded/packages/pcmcia-cs/files/network.conf
@@ -3,4 +3,11 @@ manfid 0x0149, 0xc1ab
3version "Fast Ethernet", "CF Size PC Card", "1.0" 3version "Fast Ethernet", "CF Size PC Card", "1.0"
4bind "pcnet_cs" 4bind "pcnet_cs"
5 5
6card "Hawking 10/100 CF Fast Ethernet"
7 manfid 0x0149, 0xc1ab
8 bind "pcnet_cs"
6 9
10card "Billionton CFLA-100N 10/100 FastEthernet"
11 version "CF", "100Base-Ethernet", "V", "1.0"
12 manfid 0x021b, 0x0202
13 bind "pcnet_cs"
diff --git a/openembedded/packages/pcmcia-cs/pcmcia-cs_3.2.8.bb b/openembedded/packages/pcmcia-cs/pcmcia-cs_3.2.8.bb
index 2aa41a6c32..dadf830534 100644
--- a/openembedded/packages/pcmcia-cs/pcmcia-cs_3.2.8.bb
+++ b/openembedded/packages/pcmcia-cs/pcmcia-cs_3.2.8.bb
@@ -3,7 +3,7 @@ SECTION = "base"
3PRIORITY = "required" 3PRIORITY = "required"
4LICENSE = "GPL" 4LICENSE = "GPL"
5DEPENDS = "virtual/kernel" 5DEPENDS = "virtual/kernel"
6PR = "r19" 6PR = "r21"
7 7
8SRC_URI = "${SOURCEFORGE_MIRROR}/pcmcia-cs/pcmcia-cs-${PV}.tar.gz \ 8SRC_URI = "${SOURCEFORGE_MIRROR}/pcmcia-cs/pcmcia-cs-${PV}.tar.gz \
9 file://busybox.patch;patch=1 \ 9 file://busybox.patch;patch=1 \
diff --git a/openembedded/packages/perl/perl-5.8.7/config.sh-armeb-linux b/openembedded/packages/perl/perl-5.8.7/config.sh-armeb-linux
index 155b5237aa..de17bbf28f 100644
--- a/openembedded/packages/perl/perl-5.8.7/config.sh-armeb-linux
+++ b/openembedded/packages/perl/perl-5.8.7/config.sh-armeb-linux
@@ -801,7 +801,7 @@ perl5='hostperl'
801perl='' 801perl=''
802perl_patchlevel='' 802perl_patchlevel=''
803perladmin='slug@thg-slug1.thg.se' 803perladmin='slug@thg-slug1.thg.se'
804perllibs='-lnsl -ldl -lm -lcrypt -lutil -lc -lgcc_s' 804perllibs='-lnsl -ldl -lm -lcrypt -lutil -lc -lgcc_s $$($(CC) -print-libgcc-file-name)'
805perlpath='hostperl' 805perlpath='hostperl'
806pg='pg' 806pg='pg'
807phostname='hostname' 807phostname='hostname'
diff --git a/openembedded/packages/readline/readline_4.3.bb b/openembedded/packages/readline/readline_4.3.bb
index 234d697dfb..d0ff2a8d7c 100644
--- a/openembedded/packages/readline/readline_4.3.bb
+++ b/openembedded/packages/readline/readline_4.3.bb
@@ -4,12 +4,11 @@ additional functions to maintain a list of previously-entered command lines, to
4lines, and perform csh-like history expansion on previous commands." 4lines, and perform csh-like history expansion on previous commands."
5SECTION = "libs" 5SECTION = "libs"
6PRIORITY = "optional" 6PRIORITY = "optional"
7MAINTAINER = "Greg Gilbert <greg@treke.net>"
8LICENSE = "GPLv2" 7LICENSE = "GPLv2"
9DEPENDS += "ncurses" 8DEPENDS += "ncurses"
10RPROVIDES_${PN} += "readline" 9RPROVIDES_${PN} += "readline"
11LEAD_SONAME = "libreadline.so" 10LEAD_SONAME = "libreadline.so"
12PR = "r2" 11PR = "r3"
13 12
14SRC_URI = "ftp://ftp.cwru.edu/pub/bash/readline-${PV}.tar.gz \ 13SRC_URI = "ftp://ftp.cwru.edu/pub/bash/readline-${PV}.tar.gz \
15 file://shlink-termcap.patch;patch=1 \ 14 file://shlink-termcap.patch;patch=1 \
@@ -23,24 +22,13 @@ do_configure () {
23 autotools_do_configure 22 autotools_do_configure
24} 23}
25 24
25do_stage() {
26 autotools_stage_all
27}
28
26do_install () { 29do_install () {
27 autotools_do_install 30 autotools_do_install
28 # Make install doesn't properly install these 31 # Make install doesn't properly install these
29 oe_libinstall -so -C shlib libhistory ${D}${libdir} 32 oe_libinstall -so -C shlib libhistory ${D}${libdir}
30 oe_libinstall -so -C shlib libreadline ${D}${libdir} 33 oe_libinstall -so -C shlib libreadline ${D}${libdir}
31} 34}
32
33do_stage() {
34 oe_libinstall -a libhistory ${STAGING_LIBDIR}
35 oe_libinstall -a libreadline ${STAGING_LIBDIR}
36 oe_libinstall -so -C shlib libhistory ${STAGING_LIBDIR}
37 oe_libinstall -so -C shlib libreadline ${STAGING_LIBDIR}
38
39 install -d ${STAGING_INCDIR}/readline
40 for f in readline.h chardefs.h keymaps.h history.h tilde.h rlstdc.h \
41 rlconf.h rltypedefs.h
42 do
43 install -m 0644 $f ${STAGING_INCDIR}/readline/
44 done
45
46}
diff --git a/openembedded/packages/recordext/recordext_cvs.bb b/openembedded/packages/recordext/recordext_cvs.bb
index 42acd10988..b6e6ecf882 100644
--- a/openembedded/packages/recordext/recordext_cvs.bb
+++ b/openembedded/packages/recordext/recordext_cvs.bb
@@ -1,7 +1,7 @@
1PV = "0.0cvs${CVSDATE}" 1PV = "0.0cvs${CVSDATE}"
2LICENSE = "BSD-X" 2LICENSE = "BSD-X"
3SECTION = "libs" 3SECTION = "libs"
4MAINTAINER = "Phil Blundell <pb@nexus.co.uk>" 4MAINTAINER = "Phil Blundell <pb@handhelds.org>"
5DESCRIPTION = "XRecord extension protocol bits" 5DESCRIPTION = "XRecord extension protocol bits"
6 6
7SRC_URI = "cvs://anoncvs:anoncvs@pdx.freedesktop.org/cvs/xlibs;module=RecordExt" 7SRC_URI = "cvs://anoncvs:anoncvs@pdx.freedesktop.org/cvs/xlibs;module=RecordExt"
diff --git a/openembedded/packages/tslib/tslib/h3900/tslib.sh b/openembedded/packages/tslib/tslib/h3900/tslib.sh
index c885ccc9d2..be9448b1dc 100644
--- a/openembedded/packages/tslib/tslib/h3900/tslib.sh
+++ b/openembedded/packages/tslib/tslib/h3900/tslib.sh
@@ -11,15 +11,7 @@ case `uname -r` in
11 ;; 11 ;;
12*) 12*)
13 TSLIB_TSDEVICE=`detect-stylus --device` 13 TSLIB_TSDEVICE=`detect-stylus --device`
14 case `module_id` in 14 TSLIB_CONFFILE=/usr/share/tslib/ts.conf-h3600
15 "HP iPAQ H2200")
16 # h2200 needs special linearizing thing
17 TSLIB_CONFFILE=/usr/share/tslib/ts.conf-h2200
18 ;;
19 *)
20 TSLIB_CONFFILE=/usr/share/tslib/ts.conf-h3600
21 ;;
22 esac
23 ;; 15 ;;
24esac 16esac
25 17
diff --git a/openembedded/packages/tslib/tslib/simpad/tslib.sh b/openembedded/packages/tslib/tslib/simpad/tslib.sh
index e87a2095c4..8bb94a037f 100644
--- a/openembedded/packages/tslib/tslib/simpad/tslib.sh
+++ b/openembedded/packages/tslib/tslib/simpad/tslib.sh
@@ -1,5 +1,15 @@
1#!/bin/sh 1#!/bin/sh
2 2
3TSLIB_TSDEVICE=/dev/input/event0 3case `uname -r` in
42.4*)
5 TSLIB_TSDEVICE=/dev/touchscreen/ucb1x00
6 TSLIB_CONFFILE=/usr/share/tslib/ts.conf-simpad-2.4
7 ;;
8*)
9 TSLIB_TSDEVICE=/dev/input/event0
10 TSLIB_CONFFILE=/usr/share/tslib/ts.conf-simpad
11 ;;
12esac
13
14export TSLIB_TSDEVICE TSLIB_CONFFILE
4 15
5export TSLIB_TSDEVICE
diff --git a/openembedded/packages/tslib/tslib/ts.conf-simpad b/openembedded/packages/tslib/tslib/ts.conf-simpad
new file mode 100644
index 0000000000..09309719f2
--- /dev/null
+++ b/openembedded/packages/tslib/tslib/ts.conf-simpad
@@ -0,0 +1,5 @@
1module_raw input
2module pthres pmin=1
3module variance delta=30
4module dejitter delta=100
5module linear
diff --git a/openembedded/packages/tslib/tslib/ts.conf-simpad-2.4 b/openembedded/packages/tslib/tslib/ts.conf-simpad-2.4
new file mode 100644
index 0000000000..035e794cb4
--- /dev/null
+++ b/openembedded/packages/tslib/tslib/ts.conf-simpad-2.4
@@ -0,0 +1,5 @@
1module_raw ucb1x00
2module pthres pmin=1
3module variance delta=10
4module dejitter delta=150
5module linear
diff --git a/openembedded/packages/tslib/tslib_cvs.bb b/openembedded/packages/tslib/tslib_cvs.bb
index 5c52147e1c..0a79a492a3 100644
--- a/openembedded/packages/tslib/tslib_cvs.bb
+++ b/openembedded/packages/tslib/tslib_cvs.bb
@@ -1,7 +1,7 @@
1SECTION = "base" 1SECTION = "base"
2DESCRIPTION = "tslib is a touchscreen access library." 2DESCRIPTION = "tslib is a touchscreen access library."
3PV = "0.0cvs${CVSDATE}" 3PV = "0.0cvs${CVSDATE}"
4PR = "r31" 4PR = "r32"
5 5
6SRC_URI_OVERRIDES_PACKAGE_ARCH = "0" 6SRC_URI_OVERRIDES_PACKAGE_ARCH = "0"
7PACKAGE_ARCH_tslib-conf = "${MACHINE}" 7PACKAGE_ARCH_tslib-conf = "${MACHINE}"
@@ -9,8 +9,9 @@ PACKAGE_ARCH_mnci = "${MACHINE}"
9 9
10SRC_URI = "cvs://cvs:@pubcvs.arm.linux.org.uk/mnt/src/cvsroot;module=tslib \ 10SRC_URI = "cvs://cvs:@pubcvs.arm.linux.org.uk/mnt/src/cvsroot;module=tslib \
11 file://ts.conf \ 11 file://ts.conf \
12 file://ts.conf-h3600 file://ts.conf-h3600-2.4 file://ts.conf-h2200 file://ts.conf-h6300 \ 12 file://ts.conf-h3600 file://ts.conf-h3600-2.4 file://ts.conf-h6300 \
13 file://ts.conf-corgi file://ts.conf-corgi-2.4 \ 13 file://ts.conf-corgi file://ts.conf-corgi-2.4 \
14 file://ts.conf-simpad file://ts.conf-simpad-2.4 \
14 file://tslib.sh" 15 file://tslib.sh"
15SRC_URI_append_mnci += " file://devfs.patch;patch=1" 16SRC_URI_append_mnci += " file://devfs.patch;patch=1"
16SRC_URI_append_mnci += " file://event1.patch;patch=1" 17SRC_URI_append_mnci += " file://event1.patch;patch=1"
@@ -40,9 +41,9 @@ do_install_append() {
40 install -d ${D}${sysconfdir}/profile.d/ 41 install -d ${D}${sysconfdir}/profile.d/
41 install -m 0755 ${WORKDIR}/tslib.sh ${D}${sysconfdir}/profile.d/ 42 install -m 0755 ${WORKDIR}/tslib.sh ${D}${sysconfdir}/profile.d/
42 case ${MACHINE} in 43 case ${MACHINE} in
43 h3600 | h3900 | h1940 | h6300 | ipaq-pxa270) 44 h3600 | h3900 | h1940 | h6300 | h2200 | ipaq-pxa270)
44 install -d ${D}${datadir}/tslib 45 install -d ${D}${datadir}/tslib
45 for f in ts.conf-h3600 ts.conf-h3600-2.4 ts.conf-h2200 ts.conf-h6300; do 46 for f in ts.conf-h3600 ts.conf-h3600-2.4 ts.conf-h6300; do
46 install -m 0644 ${WORKDIR}/$f ${D}${datadir}/tslib/ 47 install -m 0644 ${WORKDIR}/$f ${D}${datadir}/tslib/
47 done 48 done
48 rm -f ${D}${sysconfdir}/ts.conf 49 rm -f ${D}${sysconfdir}/ts.conf
@@ -54,6 +55,13 @@ do_install_append() {
54 done 55 done
55 rm -f ${D}${sysconfdir}/ts.conf 56 rm -f ${D}${sysconfdir}/ts.conf
56 ;; 57 ;;
58 simpad )
59 install -d ${D}${datadir}/tslib
60 for f in ts.conf-simpad ts.conf-simpad-2.4; do
61 install -m 0644 ${WORKDIR}/$f ${D}${datadir}/tslib/
62 done
63 rm -f ${D}${sysconfdir}/ts.conf
64 ;;
57 *) 65 *)
58 ;; 66 ;;
59 esac 67 esac
diff --git a/openembedded/packages/udev/files/init b/openembedded/packages/udev/files/init
index c290661c72..6ad6fd5811 100755
--- a/openembedded/packages/udev/files/init
+++ b/openembedded/packages/udev/files/init
@@ -52,7 +52,9 @@ mount_tmpfs() {
52 52
53 mkdir -p /dev/.static/dev 53 mkdir -p /dev/.static/dev
54 chmod 700 /dev/.static/ 54 chmod 700 /dev/.static/
55 mount -n -o move /etc/udev /dev/.static/dev 55 # Make sure it's busybox mount we're using. util-linux mount doesn't handle
56 # -o move.
57 busybox mount -n -o move /etc/udev /dev/.static/dev
56} 58}
57 59
58# I hate this hack. -- Md 60# I hate this hack. -- Md
diff --git a/openembedded/packages/udev/files/udev.rules b/openembedded/packages/udev/files/udev.rules
index 4fc82ba250..044ababa7f 100644
--- a/openembedded/packages/udev/files/udev.rules
+++ b/openembedded/packages/udev/files/udev.rules
@@ -54,6 +54,8 @@ KERNEL=="issm*", NAME="infiniband/%k"
54KERNEL=="uverbs*", NAME="infiniband/%k" 54KERNEL=="uverbs*", NAME="infiniband/%k"
55KERNEL=="ucm", NAME="infiniband/%k" 55KERNEL=="ucm", NAME="infiniband/%k"
56 56
57KERNEL=="buzzer", NAME="misc/buzzer"
58
57# ALSA devices 59# ALSA devices
58KERNEL=="controlC[0-9]*", NAME="snd/%k" 60KERNEL=="controlC[0-9]*", NAME="snd/%k"
59KERNEL=="hwC[D0-9]*", NAME="snd/%k" 61KERNEL=="hwC[D0-9]*", NAME="snd/%k"
diff --git a/openembedded/packages/udev/udev_070.bb b/openembedded/packages/udev/udev_070.bb
index dfc20eb5b4..e5f0409b17 100644
--- a/openembedded/packages/udev/udev_070.bb
+++ b/openembedded/packages/udev/udev_070.bb
@@ -6,7 +6,7 @@ SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
6 6
7include udev.inc 7include udev.inc
8 8
9PR = "r3" 9PR = "r5"
10 10
11UDEV_EXTRAS = "extras/firmware/ extras/scsi_id/ extras/volume_id/ extras/run_directory/" 11UDEV_EXTRAS = "extras/firmware/ extras/scsi_id/ extras/volume_id/ extras/run_directory/"
12 12
diff --git a/openembedded/packages/update-rc.d/update-rc.d-0.6/copyright.patch b/openembedded/packages/update-rc.d/update-rc.d-0.6/copyright.patch
index 3463247fef..bfe9cb8181 100644
--- a/openembedded/packages/update-rc.d/update-rc.d-0.6/copyright.patch
+++ b/openembedded/packages/update-rc.d/update-rc.d-0.6/copyright.patch
@@ -10,7 +10,7 @@ diff -u -r1.6 -r1.7
10 # 10 #
11 # update-rc.d Update the links in /etc/rc[0-9S].d/ 11 # update-rc.d Update the links in /etc/rc[0-9S].d/
12 # 12 #
13-# Phil Blundell <pb@nexus.co.uk> 2003-06-26 13-# Phil Blundell <pb@handhelds.org> 2003-06-26
14+# (c) 2003, 2004 Phil Blundell <pb@handhelds.org> 14+# (c) 2003, 2004 Phil Blundell <pb@handhelds.org>
15 # 15 #
16+# This program is free software; you can redistribute it and/or modify 16+# This program is free software; you can redistribute it and/or modify
diff --git a/openembedded/packages/xcalibrateext/xcalibrateext_cvs.bb b/openembedded/packages/xcalibrateext/xcalibrateext_cvs.bb
index b6ee79a19f..33cda47f39 100644
--- a/openembedded/packages/xcalibrateext/xcalibrateext_cvs.bb
+++ b/openembedded/packages/xcalibrateext/xcalibrateext_cvs.bb
@@ -1,7 +1,7 @@
1PV = "0.0cvs${CVSDATE}" 1PV = "0.0cvs${CVSDATE}"
2SECTION = "x11/libs" 2SECTION = "x11/libs"
3LICENSE = "BSD-X" 3LICENSE = "BSD-X"
4MAINTAINER = "Phil Blundell <pb@nexus.co.uk>" 4MAINTAINER = "Phil Blundell <pb@handhelds.org>"
5DESCRIPTION = "XCalibrate extension headers" 5DESCRIPTION = "XCalibrate extension headers"
6 6
7SRC_URI = "cvs://anoncvs:anoncvs@pdx.freedesktop.org/cvs/xlibs;module=XCalibrateExt" 7SRC_URI = "cvs://anoncvs:anoncvs@pdx.freedesktop.org/cvs/xlibs;module=XCalibrateExt"
diff --git a/openembedded/packages/xserver/xserver-kdrive/no-serial-probing.patch b/openembedded/packages/xserver/xserver-kdrive/no-serial-probing.patch
new file mode 100644
index 0000000000..35ccadaa8d
--- /dev/null
+++ b/openembedded/packages/xserver/xserver-kdrive/no-serial-probing.patch
@@ -0,0 +1,13 @@
1--- xserver/hw/kdrive/linux/mouse.c.orig 2004-05-13 14:25:51.000000000 -0700
2+++ xserver/hw/kdrive/linux/mouse.c 2005-09-22 12:20:47.000000000 -0700
3@@ -927,8 +927,10 @@ char *kdefaultMouse[] = {
4 "/dev/psaux",
5 "/dev/input/mice",
6 "/dev/adbmouse",
7+#ifdef BREAK_MY_SERIAL_CONSOLE
8 "/dev/ttyS0",
9 "/dev/ttyS1",
10+#endif
11 };
12
13 #define NUM_DEFAULT_MOUSE (sizeof (kdefaultMouse) / sizeof (kdefaultMouse[0]))
diff --git a/openembedded/packages/xserver/xserver-kdrive_20050207.bb b/openembedded/packages/xserver/xserver-kdrive_20050207.bb
index 53b704e362..65f1420096 100644
--- a/openembedded/packages/xserver/xserver-kdrive_20050207.bb
+++ b/openembedded/packages/xserver/xserver-kdrive_20050207.bb
@@ -20,7 +20,7 @@ DESCRIPTION_xserver-kdrive-epson = "X server from freedesktop.org, supporting Ep
20DESCRIPTION_xserver-kdrive-fake = "Fake X server" 20DESCRIPTION_xserver-kdrive-fake = "Fake X server"
21DESCRIPTION_xserver-kdrive-xephyr = "X server in an X window" 21DESCRIPTION_xserver-kdrive-xephyr = "X server in an X window"
22 22
23PR = "r2" 23PR = "r4"
24 24
25FILES_xserver-kdrive-fbdev = "${bindir}/Xfbdev" 25FILES_xserver-kdrive-fbdev = "${bindir}/Xfbdev"
26FILES_xserver-kdrive-ati = "${bindir}/Xati" 26FILES_xserver-kdrive-ati = "${bindir}/Xati"
@@ -35,18 +35,22 @@ FILES_xserver-kdrive-xephyr = "${bindir}/Xephyr"
35 35
36SRC_URI = "cvs://anoncvs:anoncvs@pdx.freedesktop.org/cvs/xserver;module=xserver;date=${FIXEDCVSDATE} \ 36SRC_URI = "cvs://anoncvs:anoncvs@pdx.freedesktop.org/cvs/xserver;module=xserver;date=${FIXEDCVSDATE} \
37 file://kmode.patch;patch=1 \ 37 file://kmode.patch;patch=1 \
38 file://fbdev-not-fix.patch;patch=1" 38 file://fbdev-not-fix.patch;patch=1 "
39 39
40SRC_URI_append_mnci = " file://onlyfb.patch;patch=1 \ 40SRC_URI_append_mnci = " file://onlyfb.patch;patch=1 \
41 file://devfs.patch;patch=1 \ 41 file://devfs.patch;patch=1 \
42 file://disable-apm.patch;patch=1" 42 file://disable-apm.patch;patch=1"
43SRC_URI_append_poodle = " file://xserver-kdrive-poodle.patch;patch=1" 43SRC_URI_append_poodle = " file://xserver-kdrive-poodle.patch;patch=1"
44SRC_URI_append_c7x0 = " file://disable-apm.patch;patch=1" 44SRC_URI_append_c7x0 = " file://disable-apm.patch;patch=1"
45SRC_URI_append_ipaq-pxa270 = " file://disable-apm.patch;patch=1" 45SRC_URI_append_ipaq-pxa270= " file://disable-apm.patch;patch=1"
46SRC_URI_append_h3900 = " file://disable-apm.patch;patch=1"
47SRC_URI_append_h2200 = " file://disable-apm.patch;patch=1"
46 48
47PACKAGE_ARCH_poodle = "poodle" 49PACKAGE_ARCH_poodle = "poodle"
48PACKAGE_ARCH_c7x0 = "c7x0" 50PACKAGE_ARCH_c7x0 = "c7x0"
49PACKAGE_ARCH_ipaq-pxa270 = "ipaq-pxa270" 51PACKAGE_ARCH_ipaq-pxa270 = "ipaq-pxa270"
52PACKAGE_ARCH_h3900 = "h3900"
53PACKAGE_ARCH_h2200 = "h2200"
50 54
51S = "${WORKDIR}/xserver" 55S = "${WORKDIR}/xserver"
52 56
diff --git a/openembedded/packages/xserver/xserver-kdrive_20050624.bb b/openembedded/packages/xserver/xserver-kdrive_20050624.bb
index 4031db9c2b..78e77a23a5 100644
--- a/openembedded/packages/xserver/xserver-kdrive_20050624.bb
+++ b/openembedded/packages/xserver/xserver-kdrive_20050624.bb
@@ -19,7 +19,7 @@ DESCRIPTION_xserver-kdrive-epson = "X server from freedesktop.org, supporting Ep
19DESCRIPTION_xserver-kdrive-fake = "Fake X server" 19DESCRIPTION_xserver-kdrive-fake = "Fake X server"
20DESCRIPTION_xserver-kdrive-xephyr = "X server in an X window" 20DESCRIPTION_xserver-kdrive-xephyr = "X server in an X window"
21 21
22PR = "r10" 22PR = "r12"
23 23
24FILES_xserver-kdrive-fbdev = "${bindir}/Xfbdev" 24FILES_xserver-kdrive-fbdev = "${bindir}/Xfbdev"
25FILES_xserver-kdrive-ati = "${bindir}/Xati" 25FILES_xserver-kdrive-ati = "${bindir}/Xati"
@@ -34,12 +34,14 @@ FILES_xserver-kdrive-xephyr = "${bindir}/Xephyr"
34 34
35SRC_URI = "cvs://anoncvs:anoncvs@pdx.freedesktop.org/cvs/xserver;module=xserver;date=${FIXEDCVSDATE} \ 35SRC_URI = "cvs://anoncvs:anoncvs@pdx.freedesktop.org/cvs/xserver;module=xserver;date=${FIXEDCVSDATE} \
36 file://kmode.patch;patch=1 \ 36 file://kmode.patch;patch=1 \
37 file://no-serial-probing.patch;patch=1 \
37 file://fbdev-not-fix.patch;patch=1" 38 file://fbdev-not-fix.patch;patch=1"
38 39
39SRC_URI_append_mnci = " file://onlyfb.patch;patch=1" 40SRC_URI_append_mnci = " file://onlyfb.patch;patch=1"
40SRC_URI_append_poodle = " file://xserver-kdrive-poodle.patch;patch=1" 41SRC_URI_append_poodle = " file://xserver-kdrive-poodle.patch;patch=1"
41PACKAGE_ARCH_poodle = "poodle" 42PACKAGE_ARCH_poodle = "poodle"
42 43
44
43S = "${WORKDIR}/xserver" 45S = "${WORKDIR}/xserver"
44 46
45inherit autotools pkgconfig 47inherit autotools pkgconfig