diff options
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 | ||
153 | autotools_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 | |||
153 | EXPORT_FUNCTIONS do_configure do_install | 165 | EXPORT_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 | ||
27 | BINCONFIG_GLOB ?= "*-config" | ||
28 | |||
27 | do_stage_append() { | 29 | do_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)}" | |||
38 | export FREETYPE_CONFIG = "${STAGING_BINDIR}/freetype-config${@binconfig_suffix(d)}" | 38 | export FREETYPE_CONFIG = "${STAGING_BINDIR}/freetype-config${@binconfig_suffix(d)}" |
39 | export IMLIB2_CONFIG = "${STAGING_BINDIR}/imlib2-config${@binconfig_suffix(d)}" | 39 | export IMLIB2_CONFIG = "${STAGING_BINDIR}/imlib2-config${@binconfig_suffix(d)}" |
40 | 40 | ||
41 | do_compile_prepend() { | ||
42 | find ${S} -name Makefile | xargs sed -i 's:/usr/include:${STAGING_INCDIR}:' | ||
43 | } | ||
44 | |||
41 | do_stage_append () { | 45 | do_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}" | |||
60 | kernel_do_compile() { | 60 | kernel_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 @@ | |||
1 | DEPENDS += "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 @@ | |||
1 | DEPENDS += "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 @@ | |||
1 | DEPLOY_DIR_SRC ?= "${DEPLOY_DIR}/source" | 1 | DEPLOY_DIR_SRC ?= "${DEPLOY_DIR}/source" |
2 | EXCLUDE_FROM ?= ".pc" | 2 | EXCLUDE_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 |
5 | DISTRO ?= "openembedded" | 5 | DISTRO ?= "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" | |||
294 | GPE_MIRROR = "http://ftp.handhelds.org/pub/projects/gpe/source" | 294 | GPE_MIRROR = "http://ftp.handhelds.org/pub/projects/gpe/source" |
295 | XLIBS_MIRROR = "http://xlibs.freedesktop.org/release" | 295 | XLIBS_MIRROR = "http://xlibs.freedesktop.org/release" |
296 | GNOME_MIRROR = "http://ftp.gnome.org/pub/GNOME/sources" | 296 | GNOME_MIRROR = "http://ftp.gnome.org/pub/GNOME/sources" |
297 | FREEBSD_MIRROR = "ftp://ftp.freebsd.org/pub/FreeBSD/" | ||
297 | HANDHELDS_CVS = "cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs" | 298 | HANDHELDS_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 | ||
30 | PREFERRED_PROVIDERS += "virtual/xserver:xserver-kdrive" | 30 | PREFERRED_PROVIDERS += "virtual/xserver:xserver-kdrive" |
31 | #PREFERRED_PROVIDERS += "virtual/gconf:gconf-dbus" | 31 | PREFERRED_PROVIDERS += "virtual/gconf:gconf-dbus" |
32 | PREFERRED_PROVIDER_x11 = "diet-x11" | 32 | PREFERRED_PROVIDER_x11 = "diet-x11" |
33 | 33 | ||
34 | include conf/distro/preferred-gpe-versions.inc | 34 | include 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 | ||
6 | CVSDATE_xserver-kdrive=20050207 | ||
7 | CVSDATE_minimo=20050401 | ||
8 | CVSDATE_cairo=20050330 | ||
9 | CVSDATE_xext=20050222 | ||
10 | |||
11 | #set some preferred providers: | ||
12 | #PREFERRED_PROVIDER_gconf=gconf-dbus | ||
13 | |||
14 | #specify versions, as the header says :) | ||
15 | PREFERRED_VERSION_libmatchbox ?= "1.6" | ||
16 | PREFERRED_VERSION_matchbox ?= "0.9.1" | ||
17 | PREFERRED_VERSION_matchbox-common ?= "0.9.1" | ||
18 | PREFERRED_VERSION_matchbox-desktop ?= "0.9.1" | ||
19 | PREFERRED_VERSION_matchbox-wm ?= "0.9.3" | ||
20 | PREFERRED_VERSION_matchbox-panel ?= "0.9.1" | ||
21 | PREFERRED_VERSION_matchbox-applet-inputmanager ?= "0.6" | ||
22 | PREFERRED_VERSION_gtk+ ?= "2.6.3" | ||
23 | PREFERRED_VERSION_libgpewidget ?= "0.97" | ||
24 | PREFERRED_VERSION_libgpepimc ?= "0.4" | ||
25 | PREFERRED_VERSION_libgpevtype ?= "0.11" | ||
26 | PREFERRED_VERSION_libschedule ?= "0.14" | ||
27 | PREFERRED_VERSION_gpe-icons ?= "0.24" | ||
28 | PREFERRED_VERSION_libgsm ?= "1.0.10" | ||
29 | PREFERRED_VERSION_diet-x11 ?= "6.2.1" | ||
30 | PREFERRED_VERSION_xproto ?= "6.6.2" | ||
31 | PREFERRED_VERSION_xcursor-transparent-theme ?= "0.1.1" | ||
32 | PREFERRED_VERSION_rxvt-unicode ?= "5.3" | ||
33 | PREFERRED_VERSION_gtk2-theme-angelistic ?= "0.3" | ||
34 | PREFERRED_VERSION_xst ?= "0.14" | ||
35 | #PREFERRED_VERSION_xextensions ?= "0.0cvs${CVSDATE}" | ||
36 | PREFERRED_VERSION_xprop ?= "0.0cvs${CVSDATE}" | ||
37 | PREFERRED_VERSION_xhost ?= "0.0cvs20040413" | ||
38 | PREFERRED_VERSION_xrdb ?= "0.0cvs${CVSDATE}" | ||
39 | PREFERRED_VERSION_gpe-login ?= "0.76" | ||
40 | PREFERRED_VERSION_gpe-session-scripts ?= "0.62" | ||
41 | PREFERRED_VERSION_gpe-soundserver ?= "0.4-1" | ||
42 | PREFERRED_VERSION_gpe-todo ?= "0.50" | ||
43 | PREFERRED_VERSION_gpe-calendar ?= "0.61" | ||
44 | PREFERRED_VERSION_gpe-sketchbox ?= "0.2.8" | ||
45 | PREFERRED_VERSION_gpe-contacts ?= "0.36" | ||
46 | PREFERRED_VERSION_gpe-today ?= "0.08" | ||
47 | PREFERRED_VERSION_matchbox-panel-manager ?= "0.1" | ||
48 | PREFERRED_VERSION_dbus ?= "0.23" | ||
49 | PREFERRED_VERSION_gpe-bluetooth ?= "0.38" | ||
50 | PREFERRED_VERSION_gpe-su ?= "0.18" | ||
51 | PREFERRED_VERSION_gpe-conf ?= "0.1.23" | ||
52 | PREFERRED_VERSION_gpe-clock ?= "0.20" | ||
53 | PREFERRED_VERSION_gpe-mininet ?= "0.5" | ||
54 | PREFERRED_VERSION_gpe-mixer ?= "0.40" | ||
55 | PREFERRED_VERSION_gpe-shield ?= "0.7" | ||
56 | PREFERRED_VERSION_gpe-wlancfg ?= "0.2.6" | ||
57 | PREFERRED_VERSION_gpe-taskmanager ?= "0.17" | ||
58 | PREFERRED_VERSION_keylaunch ?= "2.0.7" | ||
59 | PREFERRED_VERSION_minilite ?= "0.47" | ||
60 | PREFERRED_VERSION_xmonobut ?= "0.4" | ||
61 | PREFERRED_VERSION_gpe-edit ?= "0.28" | ||
62 | PREFERRED_VERSION_gpe-gallery ?= "0.95" | ||
63 | PREFERRED_VERSION_gpe-calculator ?= "0.2" | ||
64 | PREFERRED_VERSION_gpe-package ?= "0.2" | ||
65 | PREFERRED_VERSION_gpe-soundbite ?= "1.0.5" | ||
66 | PREFERRED_VERSION_gpe-terminal ?= "1.1" | ||
67 | PREFERRED_VERSION_gpe-watch ?= "0.10" | ||
68 | PREFERRED_VERSION_gpe-what ?= "0.33" | ||
69 | PREFERRED_VERSION_gpe-filemanager ?= "0.20" | ||
70 | PREFERRED_VERSION_gpe-go ?= "0.05" | ||
71 | PREFERRED_VERSION_gpe-irc ?= "0.07" | ||
72 | PREFERRED_VERSION_gpe-lights ?= "0.13" | ||
73 | #PREFERRED_VERSION_gpe-nmf ?= "0.19" | ||
74 | PREFERRED_VERSION_gpe-othello ?= "0.2-1" | ||
75 | PREFERRED_VERSION_gpe-plucker ?= "0.2" | ||
76 | PREFERRED_VERSION_gpe-tetris ?= "0.6-2" | ||
77 | PREFERRED_VERSION_gsoko ?= "0.4.2-gpe6" | ||
78 | PREFERRED_VERSION_xdemineur ?= "2.1.1" | ||
79 | PREFERRED_VERSION_matchbox-panel-hacks ?= "0.3-1" | ||
80 | PREFERRED_VERSION_rosetta ?= "0.0cvs${CVSDATE}" | ||
81 | PREFERRED_VERSION_dillo2 ?= "0.6.6" | ||
82 | PREFERRED_VERSION_minimo ?= "0.0cvs${CVSDATE_minimo}" | ||
83 | PREFERRED_VERSION_linphone-hh ?= "0.12.2.hh1" | ||
84 | PREFERRED_VERSION_linphone ?= "0.12.2" | ||
85 | PREFERRED_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" | |||
12 | BOOTSTRAP_EXTRA_DEPENDS = "ipaq-boot-params" | 12 | BOOTSTRAP_EXTRA_DEPENDS = "ipaq-boot-params" |
13 | BOOTSTRAP_EXTRA_DEPENDS_append = " handhelds-pxa-2.6 udev module-init-tools" | 13 | BOOTSTRAP_EXTRA_DEPENDS_append = " handhelds-pxa-2.6 udev module-init-tools" |
14 | 14 | ||
15 | ROOT_FLASH_SIZE = "80" | ||
16 | |||
15 | BOOTSTRAP_EXTRA_RDEPENDS = "kernel ipaq-boot-params ${@linux_module_packages('${PXA270_MODULES}', d)}" | 17 | BOOTSTRAP_EXTRA_RDEPENDS = "kernel ipaq-boot-params ${@linux_module_packages('${PXA270_MODULES}', d)}" |
16 | BOOTSTRAP_EXTRA_RDEPENDS_append = " udev module-init-tools" | 18 | BOOTSTRAP_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" | |||
57 | ROOTFS_POSTPROCESS_COMMAND += " remove_init_link; " | 57 | ROOTFS_POSTPROCESS_COMMAND += " remove_init_link; " |
58 | 58 | ||
59 | include conf/machine/handheld-common.conf | 59 | include 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 @@ | |||
1 | rootfs / rootfs defaults,errors=remount-ro,noatime 0 0 | 1 | rootfs / 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 |
3 | tmpfs /var tmpfs defaults 0 0 | 3 | tmpfs /var tmpfs defaults 0 0 |
4 | tmpfs /media/ram tmpfs defaults 0 0 | 4 | tmpfs /media/ram tmpfs defaults 0 0 |
5 | rootfs / auto defaults 1 1 | 5 | proc /proc proc defaults 0 0 |
6 | proc /proc proc defaults 0 0 | 6 | usbdevfs /proc/bus/usb usbdevfs noauto 0 0 |
7 | devpts /dev/pts devpts mode=0620,gid=5 0 0 | ||
8 | usbdevfs /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 | |||
4 | usbdevfs /proc/bus/usb usbdevfs noauto 0 0 | 4 | usbdevfs /proc/bus/usb usbdevfs noauto 0 0 |
5 | tmpfs /var tmpfs defaults 0 0 | 5 | tmpfs /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 | ||
170 | card "Zonet ZCF1100" | ||
171 | manfid 0x000b, 0x7100 | ||
172 | bind "hostap_cs" | ||
173 | |||
174 | card "Wireless LAN Adapter Version 01.02" | ||
175 | version "Wireless", "LAN Adapter", "Version 01.02" | ||
176 | # manfid 0x0156, 0x0002 | ||
177 | bind "hostap_cs" | ||
178 | |||
179 | card "Ambicom WL1100C 11Mbs Card 802.11b" | ||
180 | manfid 0xd601,0x0002 | ||
181 | bind "hostap_cs" | ||
182 | |||
183 | card "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" | |||
3 | PRIORITY = "optional" | 3 | PRIORITY = "optional" |
4 | MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>" | 4 | MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>" |
5 | LICENSE = "GPL" | 5 | LICENSE = "GPL" |
6 | PR = "r4" | 6 | PR = "r6" |
7 | 7 | ||
8 | SRC_URI = "http://hostap.epitest.fi/releases/hostap-driver-${PV}.tar.gz \ | 8 | SRC_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 | ||
46 | do_configure() { | 46 | do_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 | ||
9 | SRC_URI = "svn://svn.o-hand.com/repos/matchbox/trunk;module=matchbox-common;proto=http" | 9 | SRC_URI = "svn://svn.o-hand.com/repos/matchbox/trunk;module=matchbox-common;proto=http" |
10 | 10 | ||
11 | inherit autotools pkgconfig | 11 | inherit autotools pkgconfig |
12 | 12 | ||
13 | EXTRA_OECONF = "--enable-pda-folders" | 13 | EXTRA_OECONF = " --enable-pda-folders " |
14 | 14 | ||
15 | FILES_${PN} = "${bindir} \ | 15 | FILES_${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}" | |||
33 | export BUILD_LDFLAGS = "" | 33 | export BUILD_LDFLAGS = "" |
34 | export EXTRA_OEMAKE = '"BUILD_LDFLAGS=" "BUILD_CCFLAGS=${BUILD_CCFLAGS}"' | 34 | export EXTRA_OEMAKE = '"BUILD_LDFLAGS=" "BUILD_CCFLAGS=${BUILD_CCFLAGS}"' |
35 | 35 | ||
36 | do_stage () { | 36 | do_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" | |||
2 | DESCRIPTION = "This package provides the necessary \ | 2 | DESCRIPTION = "This package provides the necessary \ |
3 | infrastructure for basic TCP/IP based networking." | 3 | infrastructure for basic TCP/IP based networking." |
4 | LICENSE = "GPL" | 4 | LICENSE = "GPL" |
5 | PR = "r6" | 5 | PR = "r7" |
6 | 6 | ||
7 | inherit update-rc.d | 7 | inherit 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" | |||
5 | PROVIDES = "spectrum-modules" | 5 | PROVIDES = "spectrum-modules" |
6 | MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>" | 6 | MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>" |
7 | LICENSE = "GPL" | 7 | LICENSE = "GPL" |
8 | PR = "r7" | 8 | PR = "r8" |
9 | 9 | ||
10 | SRC_URI = "http://ozlabs.org/people/dgibson/dldwd/orinoco-${PV}.tar.gz \ | 10 | SRC_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 @@ | |||
1 | module_id() { | ||
2 | awk 'BEGIN { FS=": " } /Hardware/ { print $2 } ' </proc/cpuinfo | ||
3 | } | ||
4 | |||
5 | |||
1 | case `awk 'BEGIN { FS=":" } /Processor/ { gsub(/ /, "", $2) ; print $2 } ' </proc/cpuinfo` in | 6 | case `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 | ;; |
20 | esac | 27 | esac |
21 | 28 | ||
22 | if grep -q iPAQ /proc/cpuinfo; then | 29 | case `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 | *) | 33 | esac |
27 | PCIC_EXTRA=h3600_generic_sleeve | ||
28 | ;; | ||
29 | esac | ||
30 | fi | ||
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 | |||
3 | version "Fast Ethernet", "CF Size PC Card", "1.0" | 3 | version "Fast Ethernet", "CF Size PC Card", "1.0" |
4 | bind "pcnet_cs" | 4 | bind "pcnet_cs" |
5 | 5 | ||
6 | card "Hawking 10/100 CF Fast Ethernet" | ||
7 | manfid 0x0149, 0xc1ab | ||
8 | bind "pcnet_cs" | ||
6 | 9 | ||
10 | card "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" | |||
3 | PRIORITY = "required" | 3 | PRIORITY = "required" |
4 | LICENSE = "GPL" | 4 | LICENSE = "GPL" |
5 | DEPENDS = "virtual/kernel" | 5 | DEPENDS = "virtual/kernel" |
6 | PR = "r19" | 6 | PR = "r21" |
7 | 7 | ||
8 | SRC_URI = "${SOURCEFORGE_MIRROR}/pcmcia-cs/pcmcia-cs-${PV}.tar.gz \ | 8 | SRC_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' | |||
801 | perl='' | 801 | perl='' |
802 | perl_patchlevel='' | 802 | perl_patchlevel='' |
803 | perladmin='slug@thg-slug1.thg.se' | 803 | perladmin='slug@thg-slug1.thg.se' |
804 | perllibs='-lnsl -ldl -lm -lcrypt -lutil -lc -lgcc_s' | 804 | perllibs='-lnsl -ldl -lm -lcrypt -lutil -lc -lgcc_s $$($(CC) -print-libgcc-file-name)' |
805 | perlpath='hostperl' | 805 | perlpath='hostperl' |
806 | pg='pg' | 806 | pg='pg' |
807 | phostname='hostname' | 807 | phostname='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 | |||
4 | lines, and perform csh-like history expansion on previous commands." | 4 | lines, and perform csh-like history expansion on previous commands." |
5 | SECTION = "libs" | 5 | SECTION = "libs" |
6 | PRIORITY = "optional" | 6 | PRIORITY = "optional" |
7 | MAINTAINER = "Greg Gilbert <greg@treke.net>" | ||
8 | LICENSE = "GPLv2" | 7 | LICENSE = "GPLv2" |
9 | DEPENDS += "ncurses" | 8 | DEPENDS += "ncurses" |
10 | RPROVIDES_${PN} += "readline" | 9 | RPROVIDES_${PN} += "readline" |
11 | LEAD_SONAME = "libreadline.so" | 10 | LEAD_SONAME = "libreadline.so" |
12 | PR = "r2" | 11 | PR = "r3" |
13 | 12 | ||
14 | SRC_URI = "ftp://ftp.cwru.edu/pub/bash/readline-${PV}.tar.gz \ | 13 | SRC_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 | ||
25 | do_stage() { | ||
26 | autotools_stage_all | ||
27 | } | ||
28 | |||
26 | do_install () { | 29 | do_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 | |||
33 | do_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 @@ | |||
1 | PV = "0.0cvs${CVSDATE}" | 1 | PV = "0.0cvs${CVSDATE}" |
2 | LICENSE = "BSD-X" | 2 | LICENSE = "BSD-X" |
3 | SECTION = "libs" | 3 | SECTION = "libs" |
4 | MAINTAINER = "Phil Blundell <pb@nexus.co.uk>" | 4 | MAINTAINER = "Phil Blundell <pb@handhelds.org>" |
5 | DESCRIPTION = "XRecord extension protocol bits" | 5 | DESCRIPTION = "XRecord extension protocol bits" |
6 | 6 | ||
7 | SRC_URI = "cvs://anoncvs:anoncvs@pdx.freedesktop.org/cvs/xlibs;module=RecordExt" | 7 | SRC_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 | ;; |
24 | esac | 16 | esac |
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 | ||
3 | TSLIB_TSDEVICE=/dev/input/event0 | 3 | case `uname -r` in |
4 | 2.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 | ;; | ||
12 | esac | ||
13 | |||
14 | export TSLIB_TSDEVICE TSLIB_CONFFILE | ||
4 | 15 | ||
5 | export 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 @@ | |||
1 | module_raw input | ||
2 | module pthres pmin=1 | ||
3 | module variance delta=30 | ||
4 | module dejitter delta=100 | ||
5 | module 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 @@ | |||
1 | module_raw ucb1x00 | ||
2 | module pthres pmin=1 | ||
3 | module variance delta=10 | ||
4 | module dejitter delta=150 | ||
5 | module 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 @@ | |||
1 | SECTION = "base" | 1 | SECTION = "base" |
2 | DESCRIPTION = "tslib is a touchscreen access library." | 2 | DESCRIPTION = "tslib is a touchscreen access library." |
3 | PV = "0.0cvs${CVSDATE}" | 3 | PV = "0.0cvs${CVSDATE}" |
4 | PR = "r31" | 4 | PR = "r32" |
5 | 5 | ||
6 | SRC_URI_OVERRIDES_PACKAGE_ARCH = "0" | 6 | SRC_URI_OVERRIDES_PACKAGE_ARCH = "0" |
7 | PACKAGE_ARCH_tslib-conf = "${MACHINE}" | 7 | PACKAGE_ARCH_tslib-conf = "${MACHINE}" |
@@ -9,8 +9,9 @@ PACKAGE_ARCH_mnci = "${MACHINE}" | |||
9 | 9 | ||
10 | SRC_URI = "cvs://cvs:@pubcvs.arm.linux.org.uk/mnt/src/cvsroot;module=tslib \ | 10 | SRC_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" |
15 | SRC_URI_append_mnci += " file://devfs.patch;patch=1" | 16 | SRC_URI_append_mnci += " file://devfs.patch;patch=1" |
16 | SRC_URI_append_mnci += " file://event1.patch;patch=1" | 17 | SRC_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" | |||
54 | KERNEL=="uverbs*", NAME="infiniband/%k" | 54 | KERNEL=="uverbs*", NAME="infiniband/%k" |
55 | KERNEL=="ucm", NAME="infiniband/%k" | 55 | KERNEL=="ucm", NAME="infiniband/%k" |
56 | 56 | ||
57 | KERNEL=="buzzer", NAME="misc/buzzer" | ||
58 | |||
57 | # ALSA devices | 59 | # ALSA devices |
58 | KERNEL=="controlC[0-9]*", NAME="snd/%k" | 60 | KERNEL=="controlC[0-9]*", NAME="snd/%k" |
59 | KERNEL=="hwC[D0-9]*", NAME="snd/%k" | 61 | KERNEL=="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 | ||
7 | include udev.inc | 7 | include udev.inc |
8 | 8 | ||
9 | PR = "r3" | 9 | PR = "r5" |
10 | 10 | ||
11 | UDEV_EXTRAS = "extras/firmware/ extras/scsi_id/ extras/volume_id/ extras/run_directory/" | 11 | UDEV_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 @@ | |||
1 | PV = "0.0cvs${CVSDATE}" | 1 | PV = "0.0cvs${CVSDATE}" |
2 | SECTION = "x11/libs" | 2 | SECTION = "x11/libs" |
3 | LICENSE = "BSD-X" | 3 | LICENSE = "BSD-X" |
4 | MAINTAINER = "Phil Blundell <pb@nexus.co.uk>" | 4 | MAINTAINER = "Phil Blundell <pb@handhelds.org>" |
5 | DESCRIPTION = "XCalibrate extension headers" | 5 | DESCRIPTION = "XCalibrate extension headers" |
6 | 6 | ||
7 | SRC_URI = "cvs://anoncvs:anoncvs@pdx.freedesktop.org/cvs/xlibs;module=XCalibrateExt" | 7 | SRC_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 | |||
20 | DESCRIPTION_xserver-kdrive-fake = "Fake X server" | 20 | DESCRIPTION_xserver-kdrive-fake = "Fake X server" |
21 | DESCRIPTION_xserver-kdrive-xephyr = "X server in an X window" | 21 | DESCRIPTION_xserver-kdrive-xephyr = "X server in an X window" |
22 | 22 | ||
23 | PR = "r2" | 23 | PR = "r4" |
24 | 24 | ||
25 | FILES_xserver-kdrive-fbdev = "${bindir}/Xfbdev" | 25 | FILES_xserver-kdrive-fbdev = "${bindir}/Xfbdev" |
26 | FILES_xserver-kdrive-ati = "${bindir}/Xati" | 26 | FILES_xserver-kdrive-ati = "${bindir}/Xati" |
@@ -35,18 +35,22 @@ FILES_xserver-kdrive-xephyr = "${bindir}/Xephyr" | |||
35 | 35 | ||
36 | SRC_URI = "cvs://anoncvs:anoncvs@pdx.freedesktop.org/cvs/xserver;module=xserver;date=${FIXEDCVSDATE} \ | 36 | SRC_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 | ||
40 | SRC_URI_append_mnci = " file://onlyfb.patch;patch=1 \ | 40 | SRC_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" |
43 | SRC_URI_append_poodle = " file://xserver-kdrive-poodle.patch;patch=1" | 43 | SRC_URI_append_poodle = " file://xserver-kdrive-poodle.patch;patch=1" |
44 | SRC_URI_append_c7x0 = " file://disable-apm.patch;patch=1" | 44 | SRC_URI_append_c7x0 = " file://disable-apm.patch;patch=1" |
45 | SRC_URI_append_ipaq-pxa270 = " file://disable-apm.patch;patch=1" | 45 | SRC_URI_append_ipaq-pxa270= " file://disable-apm.patch;patch=1" |
46 | SRC_URI_append_h3900 = " file://disable-apm.patch;patch=1" | ||
47 | SRC_URI_append_h2200 = " file://disable-apm.patch;patch=1" | ||
46 | 48 | ||
47 | PACKAGE_ARCH_poodle = "poodle" | 49 | PACKAGE_ARCH_poodle = "poodle" |
48 | PACKAGE_ARCH_c7x0 = "c7x0" | 50 | PACKAGE_ARCH_c7x0 = "c7x0" |
49 | PACKAGE_ARCH_ipaq-pxa270 = "ipaq-pxa270" | 51 | PACKAGE_ARCH_ipaq-pxa270 = "ipaq-pxa270" |
52 | PACKAGE_ARCH_h3900 = "h3900" | ||
53 | PACKAGE_ARCH_h2200 = "h2200" | ||
50 | 54 | ||
51 | S = "${WORKDIR}/xserver" | 55 | S = "${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 | |||
19 | DESCRIPTION_xserver-kdrive-fake = "Fake X server" | 19 | DESCRIPTION_xserver-kdrive-fake = "Fake X server" |
20 | DESCRIPTION_xserver-kdrive-xephyr = "X server in an X window" | 20 | DESCRIPTION_xserver-kdrive-xephyr = "X server in an X window" |
21 | 21 | ||
22 | PR = "r10" | 22 | PR = "r12" |
23 | 23 | ||
24 | FILES_xserver-kdrive-fbdev = "${bindir}/Xfbdev" | 24 | FILES_xserver-kdrive-fbdev = "${bindir}/Xfbdev" |
25 | FILES_xserver-kdrive-ati = "${bindir}/Xati" | 25 | FILES_xserver-kdrive-ati = "${bindir}/Xati" |
@@ -34,12 +34,14 @@ FILES_xserver-kdrive-xephyr = "${bindir}/Xephyr" | |||
34 | 34 | ||
35 | SRC_URI = "cvs://anoncvs:anoncvs@pdx.freedesktop.org/cvs/xserver;module=xserver;date=${FIXEDCVSDATE} \ | 35 | SRC_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 | ||
39 | SRC_URI_append_mnci = " file://onlyfb.patch;patch=1" | 40 | SRC_URI_append_mnci = " file://onlyfb.patch;patch=1" |
40 | SRC_URI_append_poodle = " file://xserver-kdrive-poodle.patch;patch=1" | 41 | SRC_URI_append_poodle = " file://xserver-kdrive-poodle.patch;patch=1" |
41 | PACKAGE_ARCH_poodle = "poodle" | 42 | PACKAGE_ARCH_poodle = "poodle" |
42 | 43 | ||
44 | |||
43 | S = "${WORKDIR}/xserver" | 45 | S = "${WORKDIR}/xserver" |
44 | 46 | ||
45 | inherit autotools pkgconfig | 47 | inherit autotools pkgconfig |