summaryrefslogtreecommitdiff
path: root/packages/udev
diff options
context:
space:
mode:
authorFrans Meulenbroeks <fransmeulenbroeks@yahoo.com>2006-08-12 12:01:32 +0000
committerFrans Meulenbroeks <fransmeulenbroeks@yahoo.com>2006-08-12 12:01:32 +0000
commit882ac39db1a56db202a8ab964e4b3f264b8bf2de (patch)
tree55aead31709a5deea495f9d0f72f56a5608878c9 /packages/udev
parent5d41710e9eb7626b917dbbf0c4680bae23979372 (diff)
parent4486c8ed80d81cc7af5b39060c1e55c230a89b0e (diff)
merge of '72f3c1ab1f4863f49829ab72e6b3206f7c8720b0'
and 'c9babd5c890d03ff3a5fa5b385b89471d91b1cc0'
Diffstat (limited to 'packages/udev')
-rw-r--r--packages/udev/udev-092/50-hostap_cs.rules4
-rw-r--r--packages/udev/udev_092.bb12
2 files changed, 14 insertions, 2 deletions
diff --git a/packages/udev/udev-092/50-hostap_cs.rules b/packages/udev/udev-092/50-hostap_cs.rules
new file mode 100644
index 0000000000..efefdc58fc
--- /dev/null
+++ b/packages/udev/udev-092/50-hostap_cs.rules
@@ -0,0 +1,4 @@
+# hostap_cs needs ignore_cis_vcc=1 set - this should handle all cards
+#
+ACTION=="add", DEVICE=="hostap_cs", \
+ SYSFS{func_id}=="0x06", RUN+="/sbin/modprobe hostap_cs ignore_cis_vcc=1"
diff --git a/packages/udev/udev_092.bb b/packages/udev/udev_092.bb
index 6a650b5f09..07b5eaa12f 100644
--- a/packages/udev/udev_092.bb
+++ b/packages/udev/udev_092.bb
@@ -3,7 +3,7 @@ DESCRIPTION = "udev is a daemon which dynamically creates and removes device nod
the hotplug package and requires a kernel not older than 2.6.12."
RPROVIDES = "hotplug"
-PR = "r9"
+PR = "r10"
SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
file://noasmlinkage.patch;patch=1 \
@@ -11,7 +11,11 @@ SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
file://udevsynthesize.patch;patch=1 \
file://udevsynthesize.sh \
file://arm_inotify_fix.patch;patch=1 \
- file://mount.blacklist"
+ file://mount.blacklist \
+ "
+
+SRC_URI_append_h2200 = " file://50-hostap_cs.rules "
+PACKAGE_ARCH_h2200 = "h2200"
require udev.inc
@@ -49,3 +53,7 @@ do_install () {
install -m 0755 ${S}/udevsynthesize ${D}${base_libdir}/udev/udevsynthesize
install -m 0755 ${WORKDIR}/udevsynthesize.sh ${D}${sbindir}/udevsynthesize
}
+
+do_install_append_h2200() {
+ install -m 0644 ${WORKDIR}/50-hostap_cs.rules ${D}${sysconfdir}/udev/rules.d/50-hostap_cs.rules
+}