diff options
author | Richard Purdie <richard@openedhand.com> | 2006-07-21 10:10:31 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-07-21 10:10:31 +0000 |
commit | b2f192faabe412adce79534e22efe9fb69ee40e2 (patch) | |
tree | 7076c49d4286f8a1733650bd8fbc7161af200d57 /meta/packages/pcmcia-cs/pcmcia-cs-3.2.8 | |
parent | 2cf0eadf9f730027833af802d7e6c90b44248f80 (diff) | |
download | poky-b2f192faabe412adce79534e22efe9fb69ee40e2.tar.gz |
Rename /openembedded/ -> /meta/
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@530 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/pcmcia-cs/pcmcia-cs-3.2.8')
10 files changed, 419 insertions, 0 deletions
diff --git a/meta/packages/pcmcia-cs/pcmcia-cs-3.2.8/automount.patch b/meta/packages/pcmcia-cs/pcmcia-cs-3.2.8/automount.patch new file mode 100644 index 0000000000..5f11147eb8 --- /dev/null +++ b/meta/packages/pcmcia-cs/pcmcia-cs-3.2.8/automount.patch | |||
@@ -0,0 +1,19 @@ | |||
1 | --- pcmcia-cs-3.2.8/etc/shared.orig 2004-12-15 02:21:11.000000000 +0100 | ||
2 | +++ pcmcia-cs-3.2.8/etc/shared 2004-12-27 17:09:51.000000000 +0100 | ||
3 | @@ -55,8 +55,15 @@ | ||
4 | fi | ||
5 | if is_true $DO_MOUNT ; then | ||
6 | O=${OPTS:+-o $OPTS} ; FS=${FSTYPE:+-t $FSTYPE} | ||
7 | - log mount $O $FS $1 $MOUNTPT || return 1 | ||
8 | + if test -x /etc/pcmcia/ide_automount | ||
9 | + then | ||
10 | + /etc/pcmcia/ide_automount | ||
11 | + else | ||
12 | + log mount $O $FS $1 $MOUNTPT || return 1 | ||
13 | + fi | ||
14 | fi | ||
15 | + | ||
16 | + logger "SHARED [$MOUNTPT] [$1]" | ||
17 | return 0 | ||
18 | } | ||
19 | |||
diff --git a/meta/packages/pcmcia-cs/pcmcia-cs-3.2.8/busybox.patch b/meta/packages/pcmcia-cs/pcmcia-cs-3.2.8/busybox.patch new file mode 100644 index 0000000000..7237f3b813 --- /dev/null +++ b/meta/packages/pcmcia-cs/pcmcia-cs-3.2.8/busybox.patch | |||
@@ -0,0 +1,20 @@ | |||
1 | --- pcmcia-cs-3.2.3/etc/shared~ide 2003-03-11 10:26:14.000000000 -0600 | ||
2 | +++ pcmcia-cs-3.2.3/etc/shared 2003-03-11 10:32:39.000000000 -0600 | ||
3 | @@ -57,7 +57,7 @@ | ||
4 | fi | ||
5 | if is_true $DO_MOUNT ; then | ||
6 | O=${OPTS:+-o $OPTS} ; FS=${FSTYPE:+-t $FSTYPE} | ||
7 | - log mount -v $O $FS $1 $MOUNTPT || return 1 | ||
8 | + log mount $O $FS $1 $MOUNTPT || return 1 | ||
9 | fi | ||
10 | return 0 | ||
11 | } | ||
12 | @@ -85,7 +85,7 @@ | ||
13 | test -b $1 || return 1 | ||
14 | do_fuser -k -m $1 > /dev/null | ||
15 | if mount | grep -q "$1 on" ; then | ||
16 | - log umount -v $1 || return 1 | ||
17 | + log umount $1 || return 1 | ||
18 | fi | ||
19 | if is_true $DO_FSTAB ; then | ||
20 | grep -v $1 /etc/fstab > /etc/fstab.N | ||
diff --git a/meta/packages/pcmcia-cs/pcmcia-cs-3.2.8/ide.opts b/meta/packages/pcmcia-cs/pcmcia-cs-3.2.8/ide.opts new file mode 100644 index 0000000000..d13dab0015 --- /dev/null +++ b/meta/packages/pcmcia-cs/pcmcia-cs-3.2.8/ide.opts | |||
@@ -0,0 +1,25 @@ | |||
1 | # ATA/IDE drive adapter configuration | ||
2 | # | ||
3 | # The address format is "scheme,socket,serial_no[,part]". | ||
4 | # | ||
5 | # For multi-partition devices, first return list of partitions in | ||
6 | # $PARTS. Then, we'll get called for each partition. | ||
7 | # | ||
8 | case "$ADDRESS" in | ||
9 | *,*,*,1) | ||
10 | #INFO="Sample IDE setup" | ||
11 | DO_FSTAB="n"; | ||
12 | #DO_FSCK="y" ; | ||
13 | DO_MOUNT="y" | ||
14 | #FSTYPE="msdos" | ||
15 | #FSTYPE="auto" | ||
16 | #OPTS="" | ||
17 | #MOUNTPT="/mnt/ide" | ||
18 | ;; | ||
19 | *,*,*) | ||
20 | PARTS="1" | ||
21 | # Card eject policy options | ||
22 | NO_CHECK=n | ||
23 | NO_FUSER=y | ||
24 | ;; | ||
25 | esac | ||
diff --git a/meta/packages/pcmcia-cs/pcmcia-cs-3.2.8/network.patch b/meta/packages/pcmcia-cs/pcmcia-cs-3.2.8/network.patch new file mode 100644 index 0000000000..fb808e209c --- /dev/null +++ b/meta/packages/pcmcia-cs/pcmcia-cs-3.2.8/network.patch | |||
@@ -0,0 +1,92 @@ | |||
1 | --- pcmcia-cs/etc/network.old 2004-07-01 00:31:59.000000000 +0100 | ||
2 | +++ pcmcia-cs/etc/network 2004-07-01 00:32:57.000000000 +0100 | ||
3 | @@ -31,16 +31,39 @@ | ||
4 | |||
5 | RESOLV=/etc/resolv.conf | ||
6 | |||
7 | +# if this interface has an entry in /etc/network/interfaces, let ifupdown | ||
8 | +# handle it | ||
9 | +if grep -q "iface \+$DEVICE" /etc/network/interfaces; then | ||
10 | + case $ACTION in | ||
11 | + start) | ||
12 | + ifup $DEVICE | ||
13 | + ;; | ||
14 | + stop) | ||
15 | + ifdown $DEVICE | ||
16 | + ;; | ||
17 | + restart) | ||
18 | + ifdown $DEVICE | ||
19 | + ifup $DEVICE | ||
20 | + ;; | ||
21 | + esac | ||
22 | + | ||
23 | + exit 0 | ||
24 | +fi | ||
25 | + | ||
26 | +## see if it is a wireless card. Jamey and AntiProxy | ||
27 | +CHECK_WIRELESS=`grep "$DEVICE" /proc/net/wireless` | ||
28 | +if [ -n "$CHECK_WIRELESS" ] ; then | ||
29 | # Now, run the specific script for Wireless LAN interfaces | ||
30 | # Note : we need the wireless parameters to be set up before IP parameters, | ||
31 | # so that we can perform DHCP over the Wireless link if needed. Jean II | ||
32 | -O_INFO=$INFO ; INFO= | ||
33 | -if [ -x ./wireless ] ; then | ||
34 | - . ./wireless | ||
35 | -else | ||
36 | - . /etc/pcmcia/wireless | ||
37 | + O_INFO=$INFO ; INFO= | ||
38 | + if [ -x ./wireless ] ; then | ||
39 | + . ./wireless | ||
40 | + else | ||
41 | + . /etc/pcmcia/wireless | ||
42 | + fi | ||
43 | + INFO=$O_INFO | ||
44 | fi | ||
45 | -INFO=$O_INFO | ||
46 | |||
47 | bootp_setup () | ||
48 | { | ||
49 | @@ +225,6 -188,11 @@ | ||
50 | fi | ||
51 | /sbin/dhcpcd -XYZZY 2>&1 | grep -q DHCP || \ | ||
52 | rm -f /var/run/dhcpcd-$DEVICE.pid | ||
53 | + # modified for udhcpc | ||
54 | + elif [ -x /sbin/udhcpc ] ; then | ||
55 | + PID=`cat /var/run/udhcpc.$DEVICE.pid 2>/dev/null` | ||
56 | + if [ -n "$PID" ] ; then kill -TERM $PID ; fi | ||
57 | + # end of modification | ||
58 | elif [ -x /sbin/dhclient ] ; then | ||
59 | PID=`cat /var/run/dhclient.pid 2>/dev/null` | ||
60 | if [ -n "$PID" ] ; then kill -TERM $PID ; fi | ||
61 | @@ +282,7 -250,30 @@ | ||
62 | [ -n "$IPADDR" ] && /sbin/ifconfig $DEVICE down up | ||
63 | ;; | ||
64 | |||
65 | +'resume') | ||
66 | + #logger RESUME EVENT PCMCIA SEEN FROM CARDMGR | ||
67 | + if [ -z "$IPADDR" ] || is_true $DHCP ; then | ||
68 | + if [ ! -x /sbin/dhcpcd ] && [ -x /sbin/udhcpc ] ; then | ||
69 | + PID=`cat /var/run/udhcpc.$DEVICE.pid 2>/dev/null` | ||
70 | + if [ -n "$PID" ] ; then | ||
71 | + kill -USR1 $PID | ||
72 | + fi | ||
73 | + fi | ||
74 | + fi | ||
75 | + ;; | ||
76 | + | ||
77 | +'suspend') | ||
78 | + #logger SUSPEND EVENT SEEN FROM CARDMGR | ||
79 | +# ## uncomment this code below if you get problems where | ||
80 | +# ## you are getting in IP conflict upon resume on DHCP networks | ||
81 | +# if [ -z "$IPADDR" ] || is_true $DHCP ; then | ||
82 | +# if [ ! -x /sbin/dhcpcd ] && [ -x /sbin/udhcpc ] ; then | ||
83 | +# PID=`cat /var/run/udhcpc.$DEVICE.pid 2>/dev/null` | ||
84 | +# if [ -n "$PID" ] ; then | ||
85 | +# ifconfig $DEVICE 0.0.0.0 | ||
86 | +# fi | ||
87 | +# fi | ||
88 | +# fi | ||
89 | -'suspend'|'resume') | ||
90 | ;; | ||
91 | |||
92 | *) | ||
diff --git a/meta/packages/pcmcia-cs/pcmcia-cs-3.2.8/no-hostap-cards.patch b/meta/packages/pcmcia-cs/pcmcia-cs-3.2.8/no-hostap-cards.patch new file mode 100644 index 0000000000..1c1dd54356 --- /dev/null +++ b/meta/packages/pcmcia-cs/pcmcia-cs-3.2.8/no-hostap-cards.patch | |||
@@ -0,0 +1,124 @@ | |||
1 | --- pcmcia-cs/etc/config.orig 2004-07-16 18:38:25.000000000 +0200 | ||
2 | +++ pcmcia-cs/etc/config 2005-10-03 13:02:49.000000000 +0200 | ||
3 | @@ -1151,10 +1151,6 @@ | ||
4 | # | ||
5 | # Wireless network adapters | ||
6 | # | ||
7 | -card "Intersil PRISM2 11 Mbps Wireless Adapter" | ||
8 | - manfid 0x0156, 0x0002 | ||
9 | - bind "orinoco_cs" | ||
10 | - | ||
11 | card "350 Series Wireless LAN Adapter" | ||
12 | manfid 0x015f, 0x000a | ||
13 | bind "airo_cs" | ||
14 | @@ -1180,25 +1176,11 @@ | ||
15 | manfid 0x015f, 0x0007 | ||
16 | bind "airo_cs" | ||
17 | |||
18 | -card "Airvast WN-100" | ||
19 | - #version "WLAN", "PRISM PCMCIA CARD" | ||
20 | - manfid 0x50c2, 0x7300 | ||
21 | - bind "orinoco_cs" | ||
22 | - | ||
23 | -card "AirWay 802.11 Adapter (PCMCIA)" | ||
24 | - #version "AirWay", "802.11 Adapter (PCMCIA)" | ||
25 | - manfid 0x0261, 0x0002 | ||
26 | - bind "orinoco_cs" | ||
27 | - | ||
28 | card "ARtem Onair Version 1.0" | ||
29 | #version "ARtem", "Onair", "Version 1.0" | ||
30 | manfid 0x0268, 0x0001 | ||
31 | bind "orinoco_cs" | ||
32 | |||
33 | -card "ASUS SpaceLink WL-100" | ||
34 | - manfid 0x02aa, 0x0002 | ||
35 | - bind "orinoco_cs" | ||
36 | - | ||
37 | card "AT&T WaveLAN Adapter" | ||
38 | version "AT&T", "WaveLAN/PCMCIA" | ||
39 | bind "wavelan_cs" | ||
40 | @@ -1215,18 +1197,6 @@ | ||
41 | version "Cabletron", "RoamAbout 802.11 DS" | ||
42 | bind "orinoco_cs" | ||
43 | |||
44 | -card "Compaq WL100 11 Mbps Wireless Adapter" | ||
45 | - manfid 0x0138, 0x0002 | ||
46 | - bind "orinoco_cs" | ||
47 | - | ||
48 | -card "Compaq HNW-100 11 Mbps Wireless Adapter" | ||
49 | - manfid 0x028a, 0x0002 | ||
50 | - bind "orinoco_cs" | ||
51 | - | ||
52 | -card "Conceptronic CON11Cpro" | ||
53 | - manfid 0xc250, 0x0002 | ||
54 | - bind "orinoco_cs" | ||
55 | - | ||
56 | card "Corega PCC-11" | ||
57 | version "corega K.K.", "Wireless LAN PCC-11" | ||
58 | bind "orinoco_cs" | ||
59 | @@ -1247,10 +1217,6 @@ | ||
60 | version "D", "Link DRC-650 11Mbps WLAN Card" | ||
61 | bind "orinoco_cs" | ||
62 | |||
63 | -card "D-Link DCF660" | ||
64 | - manfid 0xd601, 0x0005 | ||
65 | - bind "orinoco_cs" | ||
66 | - | ||
67 | card "ELSA AirLancer MC-11" | ||
68 | version "ELSA", "AirLancer MC-11" | ||
69 | bind "orinoco_cs" | ||
70 | @@ -1275,14 +1241,6 @@ | ||
71 | version "Instant Wireless ", " Network PC CARD", "Version 01.02" | ||
72 | bind "orinoco_cs" | ||
73 | |||
74 | -card "Linksys WPC11 11Mbps 802.11b WLAN Card" | ||
75 | - manfid 0x0274, 0x1613 | ||
76 | - bind "orinoco_cs" | ||
77 | - | ||
78 | -card "Linksys WCF12 Wireless CompactFlash Card" | ||
79 | - manfid 0x028a, 0x0673 | ||
80 | - bind "orinoco_cs" | ||
81 | - | ||
82 | card "Lucent Technologies WaveLAN/IEEE Adapter" | ||
83 | version "Lucent Technologies", "WaveLAN/IEEE" | ||
84 | bind "orinoco_cs" | ||
85 | @@ -1343,27 +1301,10 @@ | ||
86 | manfid 0x01a6, 0x0000 | ||
87 | bind "ray_cs" | ||
88 | |||
89 | -card "Safeway 802.11b Wireless Adapter" | ||
90 | - manfid 0xd601, 0x0002 | ||
91 | - bind "orinoco_cs" | ||
92 | - | ||
93 | card "SAMSUNG 11Mbps WLAN Card" | ||
94 | version "SAMSUNG", "11Mbps WLAN Card" | ||
95 | bind "orinoco_cs" | ||
96 | |||
97 | -card "Sandisk Connect SDWCFB-000" | ||
98 | - manfid 0xd601, 0x0005 | ||
99 | - bind "orinoco_cs" | ||
100 | - | ||
101 | -card "Sohoware NCP110" | ||
102 | - manfid 0x000b,0x7300 | ||
103 | - bind "orinoco_cs" | ||
104 | - | ||
105 | -card "SpeedStream SS1021 Wireless Adapter" | ||
106 | - #version "Siemens", "SpeedStream Wireless PCMCIA" | ||
107 | - manfid 0x02ac, 0x0002 | ||
108 | - bind "orinoco_cs" | ||
109 | - | ||
110 | card "Xircom CreditCard Netwave" | ||
111 | version "Xircom", "CreditCard Netwave" | ||
112 | bind "netwave_cs" | ||
113 | @@ -1372,11 +1313,6 @@ | ||
114 | manfid 0x0105, 0x0007 | ||
115 | bind "airo_cs" | ||
116 | |||
117 | -card "ZCOMAX AirRunner/XI-300" | ||
118 | - #version "ZCOMAX", "AirRunner/XI-300" | ||
119 | - manfid 0xd601, 0x0002 | ||
120 | - bind "orinoco_cs" | ||
121 | - | ||
122 | # | ||
123 | # Modems and other serial devices | ||
124 | # | ||
diff --git a/meta/packages/pcmcia-cs/pcmcia-cs-3.2.8/nocleanup.patch b/meta/packages/pcmcia-cs/pcmcia-cs-3.2.8/nocleanup.patch new file mode 100644 index 0000000000..afebb5a9b9 --- /dev/null +++ b/meta/packages/pcmcia-cs/pcmcia-cs-3.2.8/nocleanup.patch | |||
@@ -0,0 +1,11 @@ | |||
1 | --- pcmcia-cs-3.2.8/etc/rc.pcmcia.orig 2005-04-22 23:14:56.308784152 +0100 | ||
2 | +++ pcmcia-cs-3.2.8/etc/rc.pcmcia 2005-04-22 23:15:34.637957232 +0100 | ||
3 | @@ -140,7 +140,7 @@ | ||
4 | echo -n "Shutting down PCMCIA services: " | ||
5 | if [ -s /var/run/cardmgr.pid ] ; then | ||
6 | PID=`cat /var/run/cardmgr.pid` | ||
7 | - kill $PID | ||
8 | + kill -9 $PID | ||
9 | # Give cardmgr a few seconds to handle the signal | ||
10 | for N in 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 ; do | ||
11 | kill -0 $PID 2>/dev/null || break | ||
diff --git a/meta/packages/pcmcia-cs/pcmcia-cs-3.2.8/pcic-extra.patch b/meta/packages/pcmcia-cs/pcmcia-cs-3.2.8/pcic-extra.patch new file mode 100644 index 0000000000..541c4edf71 --- /dev/null +++ b/meta/packages/pcmcia-cs/pcmcia-cs-3.2.8/pcic-extra.patch | |||
@@ -0,0 +1,30 @@ | |||
1 | --- pcmcia-cs-3.2.8/etc/rc.pcmcia~pcic-extra | ||
2 | +++ pcmcia-cs-3.2.8/etc/rc.pcmcia | ||
3 | @@ -104,11 +104,17 @@ for x in "1" ; do | ||
4 | (/sbin/modprobe yenta_socket >/dev/null 2>&1 && | ||
5 | echo "using yenta_socket instead of $PCIC") || | ||
6 | /sbin/modprobe $PCIC $PCIC_OPTS || break | ||
7 | - /sbin/modprobe ds || break | ||
8 | + /sbin/modprobe $DS || break | ||
9 | + if [ "x$PCIC_EXTRA" != "x" ]; then | ||
10 | + /sbin/modprobe $PCIC_EXTRA | ||
11 | + fi | ||
12 | elif [ -d $PC ] ; then | ||
13 | /sbin/insmod $PC/pcmcia_core.o $CORE_OPTS | ||
14 | /sbin/insmod $PC/$PCIC.o $PCIC_OPTS | ||
15 | /sbin/insmod $PC/ds.o | ||
16 | + if [ "x$PCIC_EXTRA" != "x" ]; then | ||
17 | + /sbin/insmod $PC/$PCIC_EXTRA | ||
18 | + fi | ||
19 | else | ||
20 | echo "module directory $PC not found." | ||
21 | break | ||
22 | @@ -154,7 +160,7 @@ for x in "1" ; do | ||
23 | ;; | ||
24 | |||
25 | status) | ||
26 | - pid=`/sbin/pidof cardmgr` | ||
27 | + pid=`/bin/pidof cardmgr` | ||
28 | if [ "$pid" != "" ] ; then | ||
29 | echo "cardmgr (pid $pid) is running..." | ||
30 | EXITCODE=0 | ||
diff --git a/meta/packages/pcmcia-cs/pcmcia-cs-3.2.8/ratoc-cfu1u.patch b/meta/packages/pcmcia-cs/pcmcia-cs-3.2.8/ratoc-cfu1u.patch new file mode 100644 index 0000000000..069aa65bdd --- /dev/null +++ b/meta/packages/pcmcia-cs/pcmcia-cs-3.2.8/ratoc-cfu1u.patch | |||
@@ -0,0 +1,23 @@ | |||
1 | --- pcmcia-cs/etc/config 2005-02-06 17:02:39.714620456 +1300 | ||
2 | +++ pcmcia-cs/etc/config 2005-02-06 17:05:06.123362944 +1300 | ||
3 | @@ -131,6 +131,9 @@ | ||
4 | device "ohci1394_cb" | ||
5 | class "ieee1394" module "cb_enabler", "ohci1394_cb" | ||
6 | |||
7 | +device "hc_sl811_cs" | ||
8 | + class "usb" module "usbcore", "hc_sl811", "hc_sl811_cs" | ||
9 | + | ||
10 | # dummy drivers | ||
11 | |||
12 | device "dummy_cs" module "dummy_cs" | ||
13 | @@ -2169,6 +2172,10 @@ | ||
14 | manfid 0x0137, 0x0003 | ||
15 | bind "parport_cs" | ||
16 | |||
17 | +card "RATOC USB HOST CF+ Card" | ||
18 | + manfid 0xc015, 0x0001 | ||
19 | + bind "hc_sl811_cs" | ||
20 | + | ||
21 | card "TELES S0/PC ISDN" | ||
22 | version "TELES", "S0/PC" | ||
23 | bind "teles_cs" | ||
diff --git a/meta/packages/pcmcia-cs/pcmcia-cs-3.2.8/spitz/ide.opts b/meta/packages/pcmcia-cs/pcmcia-cs-3.2.8/spitz/ide.opts new file mode 100644 index 0000000000..c67df8e348 --- /dev/null +++ b/meta/packages/pcmcia-cs/pcmcia-cs-3.2.8/spitz/ide.opts | |||
@@ -0,0 +1,28 @@ | |||
1 | # ATA/IDE drive adapter configuration | ||
2 | # | ||
3 | # The address format is "scheme,socket,serial_no[,part]". | ||
4 | # | ||
5 | # For multi-partition devices, first return list of partitions in | ||
6 | # $PARTS. Then, we'll get called for each partition. | ||
7 | # | ||
8 | case "$ADDRESS" in | ||
9 | *,1,*,*) | ||
10 | # Socket 1 is the internal HD; don't do anything clever as it's / | ||
11 | ;; | ||
12 | *,*,*,1) | ||
13 | #INFO="Sample IDE setup" | ||
14 | DO_FSTAB="n"; | ||
15 | #DO_FSCK="y" ; | ||
16 | DO_MOUNT="y" | ||
17 | #FSTYPE="msdos" | ||
18 | #FSTYPE="auto" | ||
19 | #OPTS="" | ||
20 | #MOUNTPT="/mnt/ide" | ||
21 | ;; | ||
22 | *,*,*) | ||
23 | PARTS="1" | ||
24 | # Card eject policy options | ||
25 | NO_CHECK=n | ||
26 | NO_FUSER=y | ||
27 | ;; | ||
28 | esac | ||
diff --git a/meta/packages/pcmcia-cs/pcmcia-cs-3.2.8/wireless.opts b/meta/packages/pcmcia-cs/pcmcia-cs-3.2.8/wireless.opts new file mode 100644 index 0000000000..3e498297fc --- /dev/null +++ b/meta/packages/pcmcia-cs/pcmcia-cs-3.2.8/wireless.opts | |||
@@ -0,0 +1,47 @@ | |||
1 | # Wireless LAN adapter configuration | ||
2 | # | ||
3 | # Theory of operation : | ||
4 | # | ||
5 | # The script attempts to match a block of settings to the specific wireless | ||
6 | # card inserted, the *first* block matching the card is used. | ||
7 | # The address format is "scheme,socket,instance,hwaddr", with * as a wildcard. | ||
8 | # 'scheme' is the pcmcia scheme (set via 'cardctl scheme XXX'). | ||
9 | # 'hwaddr' is the unique MAC address identifier of the wireless card. | ||
10 | # The MAC address is usually printed on the card, or can be found via ifconfig. | ||
11 | # Some examples here use only half of the MAC address with a wildcard to | ||
12 | # match a whole family of cards... | ||
13 | # | ||
14 | # All the Wireless specific configuration is done through the Wireless | ||
15 | # Extensions, so we will just call 'iwconfig' with the right parameters | ||
16 | # defined below. | ||
17 | # Of course, you need to have iwconfig installled on your system. | ||
18 | # To download iwconfig, or for more info on Wireless Extensions : | ||
19 | # http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html | ||
20 | # | ||
21 | # Note : you don't need to fill all parameters, leave them blank, in most | ||
22 | # cases the driver will initialise itself with sane defaults values or | ||
23 | # automatically figure out the value... And no drivers do support all | ||
24 | # possible settings... | ||
25 | # | ||
26 | # If you make any mistakes, you'll get a cryptic message in the system | ||
27 | # log. You'll need to figure out on your own which parameter was wrong: | ||
28 | # cardmgr[310]: executing: './network start wvlan0' | ||
29 | # cardmgr[310]: + SIOCSIWMODE: Invalid argument | ||
30 | # I've tried to give more troubleshooting help at : | ||
31 | # http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html#debug | ||
32 | # In case of doubts, just check "/etc/pcmcia/wireless" for the gory details... | ||
33 | # | ||
34 | # Note also that this script will work only with the original Pcmcia scripts, | ||
35 | # and not with the default Red Hat scripts. Send a bug report to Red Hat ;-) | ||
36 | # | ||
37 | # Finally, send comments and flames to me, Jean Tourrilhes <jt@hpl.hp.com> | ||
38 | # | ||
39 | |||
40 | case "$ADDRESS" in | ||
41 | *,*,*,*) | ||
42 | INFO="Default Config" | ||
43 | ESSID=any | ||
44 | MODE=Managed | ||
45 | RATE=auto | ||
46 | ;; | ||
47 | esac | ||