diff options
author | Daniel Willmann <daniel@totalueberwachung.de> | 2008-01-17 21:27:33 +0000 |
---|---|---|
committer | Daniel Willmann <daniel@totalueberwachung.de> | 2008-01-17 21:27:33 +0000 |
commit | 750a5c2cf1687d81e48735b629c1a88e1d12e5d9 (patch) | |
tree | 0821e7aaac51bf96da8735749892a4bc4e312a30 /packages/rt2x00/rt73-chumby_1.2.bb | |
parent | 308c9fb126b8e41f7307bbe2da691356d56e9e0e (diff) |
rt73-chumby_1.2.bb, chumby.conf: Add rt73 wifi driver for the chumby
Diffstat (limited to 'packages/rt2x00/rt73-chumby_1.2.bb')
-rw-r--r-- | packages/rt2x00/rt73-chumby_1.2.bb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/packages/rt2x00/rt73-chumby_1.2.bb b/packages/rt2x00/rt73-chumby_1.2.bb new file mode 100644 index 0000000000..9939f5999c --- /dev/null +++ b/packages/rt2x00/rt73-chumby_1.2.bb @@ -0,0 +1,19 @@ +DESCRIPTION = "Driver for Ralink rt73 USB 802.11g WiFi sticks found in the Chumby" +HOMEPAGE = "http://www.chumby.com" +SECTION = "kernel/modules" +LICENSE = "GPL" +PR = "r1" + +SRC_URI="http://files.chumby.com/source/ironforge/build396/${PN}-${PV}.tar.gz" + +inherit module + +S = "${WORKDIR}/wifi/rt73/Module/" + +EXTRA_OEMAKE = "KERNDIR=${STAGING_KERNEL_DIR}" + +do_install() { + install -d ${D}${base_libdir}/modules/${KERNEL_VERSION}/extra + install -m 0644 rt73${KERNEL_OBJECT_SUFFIX} ${D}${base_libdir}/modules/${KERNEL_VERSION}/extra/ +} + |