Update of /cvsroot/leaf/src/bering-uclibc/apps/wlan-ng
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9763
Modified Files:
config
Added Files:
buildtool.cfg buildtool.mk linux-wlan-ng-post-down
linux-wlan-ng-pre-up wlan-ng.conf
Log Message:
add buildtool setup for wlan-ng, note that the modules are compiled with gcc
3.x instead of gcc 2.95. Something to look at
--- NEW FILE: buildtool.mk ---
# makefile for wlan-ng
include $(MASTERMAKEFILE)
WLAN-NG_DIR:=linux-wlan-ng-0.2.0
WLAN-NG_TARGET_DIR:=$(BT_BUILD_DIR)/wlan-ng
export BUILD_MODULES=y
export KSRC=$(BT_LINUX_DIR)
# can be empty, using kernel pcmcia
export PSRC=
export HCOMPILE=$(BT_STAGING_DIR)/usr/bin/
#export HCOMPILE=$(BT_STAGING_DIR)/usr/local/kgcc/bin/
$(WLAN-NG_DIR)/.source:
zcat $(WLAN-NG_SOURCE) | tar -xvf -
zcat $(WLAN-NG_PATCH) | patch -d $(WLAN-NG_DIR) -p1
touch $(WLAN-NG_DIR)/.source
$(WLAN-NG_DIR)/.configured: $(WLAN-NG_DIR)/.source
(cd $(WLAN-NG_DIR) ; ./Configure -d ../config );
touch $(WLAN-NG_DIR)/.configured
source: $(WLAN-NG_DIR)/.source
$(WLAN-NG_DIR)/.build: $(WLAN-NG_DIR)/.configured
mkdir -p $(WLAN-NG_TARGET_DIR)
mkdir -p $(WLAN-NG_TARGET_DIR)/sbin
mkdir -p $(WLAN-NG_TARGET_DIR)/etc/pcmcia
mkdir -p $(WLAN-NG_TARGET_DIR)/etc/network/if-post-down.d
mkdir -p $(WLAN-NG_TARGET_DIR)/etc/network/if-pre-up.d
mkdir -p $(BT_STAGING_DIR)/lib/modules/$(BT_KERNEL_RELEASE)/usb
mkdir -p $(BT_STAGING_DIR)/lib/modules/$(BT_KERNEL_RELEASE)/net
mkdir -p $(BT_STAGING_DIR)/lib/modules/$(BT_KERNEL_RELEASE)/pcmcia
make CC=$(TARGET_CC) LD=$(TARGET_LD) -C $(WLAN-NG_DIR) all
# make -C $(WLAN-NG_DIR) all
-$(BT_STRIP) -s --remove-section=.note --remove-section=.comment
$(WLAN-NG_DIR)/src/wlanctl/wlanctl
-$(BT_STRIP) -s --remove-section=.note --remove-section=.comment
$(WLAN-NG_DIR)/src/nwepgen/nwepgen
-$(BT_STRIP) -s --remove-section=.note --remove-section=.comment
$(WLAN-NG_DIR)/src/wlancfg/wlancfg
-$(BT_STRIP) -s --remove-section=.note --remove-section=.comment
$(WLAN-NG_DIR)/src/wland/wland
cp -a $(WLAN-NG_DIR)/src/wlanctl/wlanctl
$(WLAN-NG_TARGET_DIR)/sbin/wlanctl-ng
cp -a $(WLAN-NG_DIR)/src/nwepgen/nwepgen $(WLAN-NG_TARGET_DIR)/sbin
cp -a $(WLAN-NG_DIR)/src/wlancfg/wlancfg $(WLAN-NG_TARGET_DIR)/sbin
cp -a $(WLAN-NG_DIR)/src/wland/wland $(WLAN-NG_TARGET_DIR)/sbin
cp -a wlan-ng.conf $(WLAN-NG_TARGET_DIR)/etc/pcmcia
cp -a linux-wlan-ng-pre-up $(WLAN-NG_TARGET_DIR)/etc/network/if-pre-up.d
cp -a linux-wlan-ng-post-down
$(WLAN-NG_TARGET_DIR)/etc/network/if-post-down.d
cp -a $(WLAN-NG_TARGET_DIR)/* $(BT_STAGING_DIR)
cp -a $(WLAN-NG_DIR)/src/p80211/p80211.o
$(BT_STAGING_DIR)/lib/modules/$(BT_KERNEL_RELEASE)/net/
cp -a $(WLAN-NG_DIR)/src/prism2/driver/prism2_usb.o
$(BT_STAGING_DIR)/lib/modules/$(BT_KERNEL_RELEASE)/usb/
cp -a $(WLAN-NG_DIR)/src/prism2/driver/prism2_pci.o
$(BT_STAGING_DIR)/lib/modules/$(BT_KERNEL_RELEASE)/net/
cp -a $(WLAN-NG_DIR)/src/prism2/driver/prism2_plx.o
$(BT_STAGING_DIR)/lib/modules/$(BT_KERNEL_RELEASE)/net/
cp -a $(WLAN-NG_DIR)/src/prism2/driver/prism2_cs.o
$(BT_STAGING_DIR)/lib/modules/$(BT_KERNEL_RELEASE)/pcmcia/
/sbin/depmod -ae -b $(BT_STAGING_DIR) -r -F
$(BT_STAGING_DIR)/lib/modules/$(BT_KERNEL_RELEASE)/build/System.map
$(BT_KERNEL_RELEASE)
touch $(WLAN-NG_DIR)/.build
build: $(WLAN-NG_DIR)/.build
clean:
-make -C $(WLAN-NG_DIR) mrproper
rm -f $(WLAN-NG_DIR)/.build
rm -f $(WLAN-NG_DIR)/.configured
rm -rf $(WLAN-NG_TARGET_DIR)
rm -f $(BT_STAGING_DIR)/lib/modules/$(BT_KERNEL_RELEASE)/net/p80211.o
rm -f
$(BT_STAGING_DIR)/lib/modules/$(BT_KERNEL_RELEASE)/usb/prism2_usb.o
rm -f
$(BT_STAGING_DIR)/lib/modules/$(BT_KERNEL_RELEASE)/net/prism2_pci.o
rm -f
$(BT_STAGING_DIR)/lib/modules/$(BT_KERNEL_RELEASE)/net/prism2_plx.o
rm -f
$(BT_STAGING_DIR)/lib/modules/$(BT_KERNEL_RELEASE)/pcmcia/prism2_cs.o
srcclean: clean
rm -rf $(WLAN-NG_DIR)
rm -f $(WLAN-NG_DIR)/.source
--- NEW FILE: linux-wlan-ng-pre-up ---
#!/bin/sh
#
# This script takes care of bringing up wlan-ng device.
# It is run by ifup, and gets information from the
# /etc/network/interfaces file. It is derived from the
# init.d/wlan script in the wlan-ng distribution
case $IFACE in
wlan?)
# Remainder of script.
;;
*)
# Not a wlan-ng device.
exit 0
;;
esac
WLANCTL=/sbin/wlanctl-ng
PRIV_GENERATOR=/sbin/nwepgen
if [ ! -x $WLANCTL ] ; then
exit 0
fi
# Create a lock file; remove on script exit. This is a fairly crummy lock,
# but all it needs to do is prevent hotplug from calling this script,
# which may happen when the module is loaded below. Since it should only
# happen when the module is loaded, I don't need a proper lock.
if [ -e /var/lock/wlan-$IFACE.lock ]; then
exit 0
fi
touch /var/lock/wlan-$IFACE.lock
cleanup () {
rm -f /var/lock/wlan-$IFACE.lock
}
trap cleanup 0
if [ -z "$IF_WIRELESS_MODE" ]; then
IF_WIRELESS_MODE="ad_hoc"
fi
if [ -z "$IF_WLAN_NG_HOSTWEP" ]; then
IF_WLAN_NG_HOSTWEP=false
fi
if [ -z "$IF_WLAN_NG_DEFAULT_KEY_ID" ]; then
IF_WLAN_NG_DEFAULT_KEY_ID=0
fi
if [ -z "$IF_WLAN_NG_EXCLUDE_UNENCRYPTED" ]; then
IF_WLAN_NG_EXCLUDE_UNENCRYPTED=true
fi
if [ -z "$IF_WLAN_NG_PRIV_KEY128" ]; then
IF_WLAN_NG_PRIV_KEY128=false
fi
if [ -z "$IF_WLAN_NG_BCINT" ]; then
IF_WLAN_NG_BCINT=100
fi
if [ -z "$IF_WLAN_NG_BASICRATES" ]; then
IF_WLAN_NG_BASICRATES="2 4"
fi
if [ -z "$IF_WLAN_NG_OPRATES" ]; then
IF_WLAN_NG_OPRATES="2 4 11 22"
fi
if [ -z "$IF_WLAN_NG_AUTHTYPE" ]; then
IF_WLAN_NG_AUTHTYPE="opensystem"
fi
if [ -z "$IF_WIRELESS_CHANNEL" ]; then
IF_WIRELESS_CHANNEL=1
fi
# Bring the card up into an operable state.
result=`$WLANCTL $IFACE lnxreq_ifstate ifstate=enable`
if [ $? = 0 ] ; then
eval $result
if [ $resultcode != "success" ]; then
echo "Failed to enable the device, resultcode=" $resultcode "."
>&2
exit 1
fi
else
echo "Failed to enable the device, exitcode=" $? "." >&2
exit 1
fi
# Set user-specified MIB items.
for i in $IF_WLAN_NG_USER_MIBS; do
result=`$WLANCTL $IFACE dot11req_mibset "mibattribute=$i"`
if [ $? = 0 ] ; then
eval $result
if [ $resultcode != "success" ] ; then
echo "Failed to set user MIB $i." >&2
exit 1
fi
else
echo "Failed to set user MIB $i." >&2
exit 1
fi
done
if [ "$IF_WIRELESS_ENC" = "on" ]; then
# Set up WEP.
result=`$WLANCTL $IFACE dot11req_mibget
mibattribute=dot11PrivacyOptionImplemented`
if [ $? = 0 ] ; then
eval $result
eval $mibattribute
else
echo "mibget failed." >&2
exit 1
fi
if [ "$dot11PrivacyOptionImplemented" != "true" ]; then
echo "Cannot enable privacy,
dot11PrivacyOptionImplemented=$dot11PrivacyOptionImplemented." >&2
exit 1
fi
$WLANCTL $IFACE lnxreq_hostwep decrypt=$IF_WLAN_NG_HOSTWEP
encrypt=$IF_WLAN_NG_HOSTWEP >/dev/null
$WLANCTL $IFACE dot11req_mibset \
mibattribute=dot11WEPDefaultKeyID=$IF_WLAN_NG_DEFAULT_KEY_ID \
>/dev/null
$WLANCTL $IFACE dot11req_mibset \
mibattribute=dot11ExcludeUnencrypted=$IF_WLAN_NG_EXCLUDE_UNENCRYPTED \
>/dev/null
$WLANCTL $IFACE dot11req_mibset \
mibattribute=dot11PrivacyInvoked=true >/dev/null
if [ -e "$IF_WLAN_NG_KEYFILE" ]; then
IF_WLAN_NG_PRIV_GENSTR=`cat $IF_WLAN_NG_KEYFILE`
fi
if [ ! -z "$IF_WLAN_NG_PRIV_GENSTR" ]; then
if [ "$IF_WLAN_NG_PRIV_KEY128" = "false" ]; then
keys=`$PRIV_GENERATOR "$IF_WLAN_NG_PRIV_GENSTR" 5`
else
keys=`$PRIV_GENERATOR "$IF_WLAN_NG_PRIV_GENSTR" 13`
fi
knum=0
for i in $keys; do
$WLANCTL $IFACE dot11req_mibset \
mibattribute=dot11WEPDefaultKey$knum=$i \
>/dev/null
knum=$(expr $knum + 1)
done
else
$WLANCTL $IFACE dot11req_mibset \
mibattribute=dot11WEPDefaultKey0=$IF_WLAN_NG_KEY0 \
>/dev/null
$WLANCTL $IFACE dot11req_mibset \
mibattribute=dot11WEPDefaultKey1=$IF_WLAN_NG_KEY1 \
>/dev/null
$WLANCTL $IFACE dot11req_mibset \
mibattribute=dot11WEPDefaultKey2=$IF_WLAN_NG_KEY2 \
>/dev/null
$WLANCTL $IFACE dot11req_mibset \
mibattribute=dot11WEPDefaultKey3=$IF_WLAN_NG_KEY3 \
>/dev/null
fi
fi
# MAC startup
if [ "$IF_WIRELESS_MODE" = "ad_hoc" ] ||
[ "$IF_WIRELESS_MODE" = "ad-hoc" ]; then
startcmd="$WLANCTL $IFACE dot11req_start "
startcmd="$startcmd ssid=$IF_WIRELESS_ESSID"
startcmd="$startcmd bsstype=independent"
startcmd="$startcmd beaconperiod=$IF_WLAN_NG_BCINT"
startcmd="$startcmd dtimperiod=3"
startcmd="$startcmd cfpollable=false"
startcmd="$startcmd cfpollreq=false"
startcmd="$startcmd cfpperiod=3"
startcmd="$startcmd cfpmaxduration=100"
startcmd="$startcmd probedelay=100"
startcmd="$startcmd dschannel=$IF_WIRELESS_CHANNEL"
j=1
for i in $IF_WLAN_NG_BASICRATES; do
startcmd="$startcmd basicrate$j=$i"
j=$(expr $j + 1)
done
j=1
for i in $IF_WLAN_NG_OPRATES; do
startcmd="$startcmd operationalrate$j=$i"
j=$(expr $j + 1)
done
results=`$startcmd`
if [ $? = 0 ]; then
eval $results
if [ $resultcode != "success" ] ; then
echo "IBSS not started, resultcode=$resultcode" >&2
exit 1
fi
else
echo FAILED: $startcmd >&2
exit 1
fi
else
# Infrastructure mode.
results=`$WLANCTL $IFACE lnxreq_autojoin \
"ssid=$IF_WIRELESS_ESSID" \
authtype=$IF_WLAN_NG_AUTHTYPE | sed
's/\([^=]*\)=\(.*\)/\1="\2"/'`
if [ $? = 0 ]; then
eval $results
if [ ${resultcode:-"failure"} != "success" ]; then
echo 'error: Autojoin indicated failure!' >&2
exit 1
fi
fi
fi
--- NEW FILE: linux-wlan-ng-post-down ---
#!/bin/sh
#
# This script takes care of bringing down wlan-ng devices.
# It is run by ifdown.
WLANCTL=/sbin/wlanctl-ng
if [ ! -x $WLANCTL ] ; then
exit 0
fi
case $IFACE in
wlan?)
# Reset device to make sure it is not trying to generate
# interrupts.
result=`$WLANCTL $IFACE lnxreq_ifstate ifstate=disable`
# Remove lock file, just in case.
rm -f /var/lock/wlan-$IFACE.lock
;;
esac
--- NEW FILE: wlan-ng.conf ---
device "prism2_cs"
class "network" module "p80211", "prism2_cs"
# class "network" module "prism2_cs"
# This is commented out as the regular orinoco drivers can handle this
# card.
#card "Intersil PRISM2 Reference Design 11Mb/s 802.11b WLAN Card"
# version "INTERSIL", "HFA384x/IEEE"
# bind "prism2_cs"
card "Compaq WL100/200 11Mb/s 802.11b WLAN Card"
manfid 0x0138, 0x0002
bind "prism2_cs"
card "Compaq iPaq HNW-100 11Mb/s 802.11b WLAN Card"
manfid 0x028a, 0x0002
bind "prism2_cs"
card "Samsung SWL2000-N 11Mb/s 802.11b WLAN Card"
manfid 0x0250, 0x0002
bind "prism2_cs"
card "Z-Com XI300 11Mb/s 802.11b WLAN Card"
manfid 0xd601, 0x0002
bind "prism2_cs"
card "ZoomAir 4100 11Mb/s 802.11b WLAN Card"
version "ZoomAir 11Mbps High", "Rate wireless Networking"
bind "prism2_cs"
# Disabled in Debian package because the normal pcmcia drivers handle this
# one.
#card "Linksys WPC11 11Mbps 802.11b WLAN Card"
# version "Instant Wireless ", " Network PC CARD", "Version 01.02"
# bind "prism2_cs"
card "Addtron AWP-100 11Mbps 802.11b WLAN Card"
version "Addtron", "AWP-100 Wireless PCMCIA", "Version 01.02"
bind "prism2_cs"
card "D-Link DWL-650 11Mbps 802.11b WLAN Card"
version "D", "Link DWL-650 11Mbps WLAN Card", "Version 01.02"
bind "prism2_cs"
card "SMC 2632W 11Mbps 802.11b WLAN Card"
version "SMC", "SMC2632W", "Version 01.02"
bind "prism2_cs"
card "BroMax Freeport 11Mbps 802.11b WLAN Card (Prism 2.5)"
version "Intersil", "PRISM 2_5 PCMCIA ADAPTER", "ISL37300P", "Eval-RevA"
bind "prism2_cs"
# This one is commented out since it matches the common lucent/orinoco
# card.
#card "Intersil PRISM2 Reference Design 11Mb/s WLAN Card"
# manfid 0x0156, 0x0002
# bind "prism2_cs"
card "Bromax OEM 11Mbps 802.11b WLAN Card (Prism 2.5)"
manfid 0x0274, 0x1612
bind "prism2_cs"
card "Bromax OEM 11Mbps 802.11b WLAN Card (Prism 3)"
manfid 0x0274, 0x1613
bind "prism2_cs"
card "corega K.K. Wireless LAN PCC-11"
version "corega K.K.", "Wireless LAN PCC-11"
bind "prism2_cs"
card "corega K.K. Wireless LAN PCCA-11"
version "corega K.K.", "Wireless LAN PCCA-11"
bind "prism2_cs"
card "CONTEC FLEXSCAN/FX-DDS110-PCC"
manfid 0xc001, 0x0008
bind "prism2_cs"
card "PLANEX GeoWave/GW-NS110"
version "PLANEX", "GeoWave/GW-NS110"
bind "prism2_cs"
card "Ambicom WL1100 11Mbps 802.11b WLAN Card"
version "OEM", "PRISM2 IEEE 802.11 PC-Card", "Version 01.02"
bind "prism2_cs"
card "LeArtery SYNCBYAIR 11Mbps 802.11b WLAN Card"
version "LeArtery", "SYNCBYAIR 11Mbps Wireless LAN PC Card", "Version 01.02"
bind "prism2_cs"
card "Intermec MobileLAN 11Mbps 802.11b WLAN Card"
manfid 0x01ff, 0x0008
bind "prism2_cs"
card "NETGEAR MA401 11Mbps 802.11 WLAN Card"
version "NETGEAR MA401 Wireless PC", "Card", "Version 01.00"
bind "prism2_cs"
card "Intersil PRISM Freedom 11mbps 802.11 WLAN Card"
version "Intersil", "PRISM Freedom PCMCIA Adapter", "ISL37100P", "Eval-RevA"
bind "prism2_cs"
card "OTC Wireless AirEZY 2411-PCC 11Mbps 802.11 WLAN Card"
version "OTC", "Wireless AirEZY 2411-PCC WLAN Card", "Version 01.02"
bind "prism2_cs"
card "Dynalink L11HDT 11Mbps 802.11 WLAN Card"
version "802.11", "11Mbps Wireless LAN Card", "v08C1", ""
manfid 0xc250, 0x0002
bind "prism2_cs"
card "PROXIM RangeLAN-DS/LAN PC CARD"
version "PROXIM", "RangeLAN-DS/LAN PC CARD"
bind "prism2_cs"
card "ACTIONTEC PRISM Wireless LAN PC Card"
version "ACTIONTEC", "PRISM Wireless LAN PC Card", "0381", "RevA"
manfid 0x1668, 0x0101
bind "prism2_cs"
# This one is disabled as well due to conflict with the normal pcmcia
# drivers.
#card "3Com AirConnect 3CRWE737A"
# version "3Com", "3CRWE737A AirConnect Wireless LAN PC Card"
# bind "prism2_cs"
card "3Com AirConnect 3CRWE777A"
version "3Com", "3CRWE777A AirConnect Wireless LAN PCI Card"
bind "prism2_cs"
card "ASUS WL-100 802.11b WLAN PC Card"
version "ASUS", "802_11b_PC_CARD_25"
bind "prism2_cs"
card "ASUS WL-110 802.11b WLAN CF Card"
version "ASUS", "802_11B_CF_CARD_25"
bind "prism2_cs"
card "BUFFALO WLI-CF-S11G 802.11b WLAN Card"
version "BUFFALO", "WLI-CF-S11G"
bind "prism2_cs"
card "Linksys WCF11 11Mbps 802.11b WLAN Card (Prism 2.5)"
version "The Linksys Group, Inc.", "Wireless Network CF Card", "ISL37300P",
"RevA"
bind "prism2_cs"
card "Linksys WCF12 11Mbps 802.11b WLAN Card (Prism 3)"
version "Linksys", "Wireless CompactFlash Card", "", ""
manfid 0x028a, 0x0673
bind "prism2_cs"
card "NETGEAR MA401RA 11Mbps 802.11 WLAN Card"
version "NETGEAR MA401RA Wireless PC", "Card", "ISL37300P", "Eval-RevA"
bind "prism2_cs"
card "D-Link DCF-660W 11Mbps 802.11b WLAN Card"
manfid 0xd601, 0x0005
bind "prism2_cs"
card "Microsoft Wireless Notebook Adapter MN-520"
manfid 0x02d2, 0x0001
bind "prism2_cs"
card "AnyPoint(TM) Wireless II PC Card"
manfid 0x0089, 0x0002
bind "prism2_cs"
card "DemarcTech Relia-Wave 180mW 802.11b WLAN Card"
manfid 0xd601, 0x0005
bind "prism2_cs"
card "D-Link DRC-650 802.11b WLAN Card"
version "D", "Link DRC-650 11Mbps WLAN Card", "Version 01.02", ""
bind "prism2_cs"
--- NEW FILE: buildtool.cfg ---
<File buildtool.mk>
Server = cvs-sourceforge
Revision = HEAD
Directory = wlan-ng
</File>
<File linux-wlan-ng_0.2.0.orig.tar.gz>
Server = cvs-sourceforge
Revision = HEAD
envname = WLAN-NG_SOURCE
Directory = wlan-ng
</File>
<File linux-wlan-ng_0.2.0-15.diff.gz>
Server = cvs-sourceforge
Revision = HEAD
envname = WLAN-NG_PATCH
Directory = wlan-ng
</File>
<File config>
Server = cvs-sourceforge
Revision = HEAD
Directory = wlan-ng
</File>
<File wlan-ng.conf>
Server = cvs-sourceforge
Revision = HEAD
Directory = wlan-ng
</File>
<File linux-wlan-ng-pre-up>
Server = cvs-sourceforge
Revision = HEAD
Directory = wlan-ng
</File>
<File linux-wlan-ng-post-down>
Server = cvs-sourceforge
Revision = HEAD
Directory = wlan-ng
</File>
<Package>
<wlan-ng>
Version = 0.2.0-15
Revision = 1
Help <<EOF
linux-wlan-ng is a set of drivers and utilities that is
intended to provide the full
range of IEEE 802.11 MAC management capabilities for use in
user-mode utilities and
scripts.
The package currently supports the Intersil 802.11b Prism2,
Prism2.5 and Prism3
reference designs for PCMCIA, PCI and USB.
Additionally, the package includes support for the PLX9052
based PCI to PCMCIA adapter
with a few different PCMCIA cards.
Homepage: http://www.linux-wlan.com/linux-wlan/
LEAF package by __PACKAGER__, __BUILDDATE__
EOF
<Permissions>
Files = 644
Directories = 755
</Permissions>
<Owner>
Files = root:root
Directories = root:root
</Owner>
<Contents>
<File>
Filename = sbin/wlanctl-ng
Source = sbin/wlanctl-ng
Type = binary
Permissions = 755
</File>
<File>
Filename = sbin/wland
Source = sbin/wland
Type = binary
Permissions = 755
</File>
<File>
Filename = sbin/nwepgen
Source = sbin/nwepgen
Type = binary
Permissions = 755
</File>
<File>
Filename = sbin/wlancfg
Source = sbin/wlancfg
Type = binary
Permissions = 755
</File>
<File>
Filename = etc/pcmcia/wlan-ng.conf
Source = etc/pcmcia/wlan-ng.conf
Description = wlan-ng PCMCIA conf file
Type = binary
Type = conf
Permissions = 644
</File>
<File>
Filename =
etc/network/if-pre-up.d/linux-wlan-ng-pre-up
Source =
etc/network/if-pre-up.d/linux-wlan-ng-pre-up
Type = binary
Permissions = 755
</File>
<File>
Filename =
etc/network/if-post-down.d/linux-wlan-ng-post-down
Source =
etc/network/if-post-down.d/linux-wlan-ng-post-down
Type = binary
Permissions = 755
</File>
<File>
Filename = etc/wlan
Type = directory
Type = list
</File>
</Contents>
</wlan-ng>
</Package>
Index: config
===================================================================
RCS file: /cvsroot/leaf/src/bering-uclibc/apps/wlan-ng/config,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** config 21 Dec 2004 11:13:16 -0000 1.2
--- config 21 Dec 2004 20:39:07 -0000 1.3
***************
*** 16,18 ****
--- 16,19 ----
PRISM2_PCI=$BUILD_MODULES
PRISM2_USB=$BUILD_MODULES
+ HOST_COMPILE=$HCOMPILE
TARGET_ROOT_ON_HOST=
-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://productguide.itmanagersjournal.com/
_______________________________________________
leaf-cvs-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/leaf-cvs-commits