diff options
author | Richard Purdie <richard@openedhand.com> | 2005-08-31 10:45:47 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2005-08-31 10:45:47 +0000 |
commit | 4b46c1f6e891b1ddd5968536440b888661fade3e (patch) | |
tree | e0ba2c1f56f61b868bf746da5c4feabb25b800b2 /openembedded/packages/misc-binary-only | |
download | poky-4b46c1f6e891b1ddd5968536440b888661fade3e.tar.gz |
Initial population
git-svn-id: https://svn.o-hand.com/repos/poky@1 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/packages/misc-binary-only')
-rw-r--r-- | openembedded/packages/misc-binary-only/prism3-firmware_1.8.4.bb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/openembedded/packages/misc-binary-only/prism3-firmware_1.8.4.bb b/openembedded/packages/misc-binary-only/prism3-firmware_1.8.4.bb new file mode 100644 index 0000000000..2983ea7710 --- /dev/null +++ b/openembedded/packages/misc-binary-only/prism3-firmware_1.8.4.bb | |||
@@ -0,0 +1,27 @@ | |||
1 | DESCRIPTION = "Firmware for the Prism3 cards" | ||
2 | SECTION = "base" | ||
3 | LICENSE = "Unknown" | ||
4 | PR = "r0" | ||
5 | |||
6 | SRC_URI = "http://www.red-bean.com/~proski/firmware/${PV}.tar.bz2 \ | ||
7 | http://www.red-bean.com/~proski/firmware/primary.tar.bz2" | ||
8 | S = "${WORKDIR}" | ||
9 | |||
10 | do_install() { | ||
11 | install -d ${D}${sysconfdir}/pcmcia/ | ||
12 | install -m 0644 primary/pm010102.hex ${D}${sysconfdir}/pcmcia/ | ||
13 | install -m 0644 ${PV}/rf010804.hex ${D}${sysconfdir}/pcmcia/ | ||
14 | cat >${D}${sysconfdir}/pcmcia/README.prism3-firmware <<EOF | ||
15 | To make a prism3 card w/ downloadable firmware work, do the following: | ||
16 | 0.) Install hostap-utils | ||
17 | 1.) Add "needs_reset yes" and "needs_firmware hostap_fw_load" to | ||
18 | the proper interface in /etc/network/interfaces | ||
19 | 2.) echo -e "#!/bin/sh\nifdown wlan0" >> /etc/apm/suspend.d/ifdown | ||
20 | 3.) chmod a+rx /etc/apm/suspend.d/ifdown | ||
21 | 4.) echo -e "#!/bin/sh\nifup wlan0" >> /etc/apm/resume.d/ifup | ||
22 | 5.) chmod a+rx /etc/apm/suspend.d/ifup | ||
23 | EOF | ||
24 | } | ||
25 | |||
26 | PACKAGE_ARCH = "all" | ||
27 | |||