Update of /cvsroot/leaf/src/bering-uclibc/apps/wireless_tools
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28389

Modified Files:
        buildtool.cfg buildtool.mk 
Added Files:
        wireless-pre-up wireless_tools.28.pre13.tar.gz 
Removed Files:
        wireless wireless-tools.mk wireless_tools.28.pre8.tar.gz 
        wireless_tools.txt 
Log Message:
updated to version 28pre13

--- NEW FILE: wireless-pre-up ---
#!/bin/sh

IWCONFIG=/sbin/iwconfig

if [ ! -x $IWCONFIG ]; then
  exit 0
fi

if [ -n "$IF_WIRELESS_SENS" ]; then
  $IWCONFIG "$IFACE" sens $IF_WIRELESS_SENS
fi

if [ -n "$IF_WIRELESS_MODE" ]; then
  $IWCONFIG "$IFACE" mode $IF_WIRELESS_MODE
fi

if [ -n "$IF_WIRELESS_AP" ]; then
  $IWCONFIG "$IFACE" ap $IF_WIRELESS_AP
fi

if [ -n "$IF_WIRELESS_RATE" ]; then
  $IWCONFIG "$IFACE" rate $IF_WIRELESS_RATE
fi

if [ -n "$IF_WIRELESS_RTS" ]; then
  $IWCONFIG "$IFACE" rts $IF_WIRELESS_RTS
fi

if [ -n "$IF_WIRELESS_FRAG" ]; then
  $IWCONFIG "$IFACE" frag $IF_WIRELESS_FRAG
fi

if [ -n "$IF_WIRELESS_POWER" ]; then
  $IWCONFIG "$IFACE" power $IF_WIRELESS_POWER
fi

if [ -n "$IF_WIRELESS_POWERPERIOD" ]; then
  $IWCONFIG "$IFACE" power period $IF_WIRELESS_POWERPERIOD
fi

if [ -n "$IF_WIRELESS_POWERTIMEOUT" ]; then
  $IWCONFIG "$IFACE" power timeout $IF_WIRELESS_POWERTIMEOUT
fi

if [ -n "$IF_WIRELESS_TXPOWER" ]; then
  $IWCONFIG "$IFACE" txpower $IF_WIRELESS_TXPOWER
fi

if [ -n "$IF_WIRELESS_RETRY" ]; then
  $IWCONFIG "$IFACE" retry $IF_WIRELESS_RETRY
fi

if [ -n "$IF_WIRELESS_ENC" ]; then
  eval $IWCONFIG "$IFACE" enc $IF_WIRELESS_ENC
fi

if [ -n "$IF_WIRELESS_KEY" ]; then
  eval $IWCONFIG "$IFACE" key $IF_WIRELESS_KEY
fi

if [ -n "$IF_WIRELESS_KEY1" ]; then
  $IWCONFIG "$IFACE" key [1] "$IF_WIRELESS_KEY1"
fi

if [ -n "$IF_WIRELESS_KEY2" ]; then
  $IWCONFIG "$IFACE" key [2] "$IF_WIRELESS_KEY2"
fi

if [ -n "$IF_WIRELESS_KEY3" ]; then
  $IWCONFIG "$IFACE" key [3] "$IF_WIRELESS_KEY3"
fi

if [ -n "$IF_WIRELESS_KEY4" ]; then
  $IWCONFIG "$IFACE" key [4] "$IF_WIRELESS_KEY4"
fi

if [ -n "$IF_WIRELESS_DEFAULTKEY" ]; then
  $IWCONFIG "$IFACE" key ["$IF_WIRELESS_DEFAULTKEY"]
fi

if [ -n "$IF_WIRELESS_KEYMODE" ]; then
  $IWCONFIG "$IFACE" key "$IF_WIRELESS_KEYMODE"
fi

if [ -n "$IF_WIRELESS_FREQ" ]; then
  $IWCONFIG "$IFACE" freq $IF_WIRELESS_FREQ
fi

if [ -n "$IF_WIRELESS_CHANNEL" ]; then
  $IWCONFIG "$IFACE" channel $IF_WIRELESS_CHANNEL
fi

if [ -n "$IF_WIRELESS_NICK" ]; then
  $IWCONFIG "$IFACE" nick "$IF_WIRELESS_NICK"
fi

if [ -n "$IF_WIRELESS_NWID" ]; then
  $IWCONFIG "$IFACE" nwid "$IF_WIRELESS_NWID"
fi

if [ -n "$IF_WIRELESS_ESSID" ]; then
  $IWCONFIG "$IFACE" essid "$IF_WIRELESS_ESSID"
fi

if [ -n "$IF_WIRELESS_COMMIT" ]; then
  $IWCONFIG "$IFACE" commit
fi


--- wireless_tools.txt DELETED ---

--- wireless-tools.mk DELETED ---

--- wireless DELETED ---

Index: buildtool.mk
===================================================================
RCS file: /cvsroot/leaf/src/bering-uclibc/apps/wireless_tools/buildtool.mk,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** buildtool.mk        20 Mar 2005 15:30:08 -0000      1.4
--- buildtool.mk        8 Feb 2006 20:20:33 -0000       1.5
***************
*** 9,13 ****
  WIRELESS_TOOLS_DIR:=wireless_tools.28
  WIRELESS_TOOLS_TARGET_DIR:=$(BT_BUILD_DIR)/wireless_tools
- STRIP_OPTIONS=-s --remove-section=.note --remove-section=.comment 
  
  $(WIRELESS_TOOLS_DIR)/.source:
--- 9,12 ----
***************
*** 20,25 ****
        mkdir -p $(WIRELESS_TOOLS_TARGET_DIR)/etc/network/if-pre-up.d
        make CC=$(TARGET_CC) iwmulticall DEPFLAGS=  -C $(WIRELESS_TOOLS_DIR) 
!       -$(BT_STRIP) $(STRIP_OPTIONS) $(WIRELESS_TOOLS_DIR)/iwmulticall
!       cp -a wireless $(WIRELESS_TOOLS_TARGET_DIR)/etc/network/if-pre-up.d/
        cp -a $(WIRELESS_TOOLS_DIR)/iwmulticall 
$(WIRELESS_TOOLS_TARGET_DIR)/sbin/iwconfig
        cp -a $(WIRELESS_TOOLS_TARGET_DIR)/* $(BT_STAGING_DIR)
--- 19,24 ----
        mkdir -p $(WIRELESS_TOOLS_TARGET_DIR)/etc/network/if-pre-up.d
        make CC=$(TARGET_CC) iwmulticall DEPFLAGS=  -C $(WIRELESS_TOOLS_DIR) 
!       -$(BT_STRIP) $(BT_STRIP_BINOPTS) $(WIRELESS_TOOLS_DIR)/iwmulticall
!       cp -a wireless-pre-up 
$(WIRELESS_TOOLS_TARGET_DIR)/etc/network/if-pre-up.d/wireless
        cp -a $(WIRELESS_TOOLS_DIR)/iwmulticall 
$(WIRELESS_TOOLS_TARGET_DIR)/sbin/iwconfig
        cp -a $(WIRELESS_TOOLS_TARGET_DIR)/* $(BT_STAGING_DIR)
***************
*** 41,43 ****
  srcclean:
        rm -rf $(WIRELESS_TOOLS_DIR)
- 
--- 40,41 ----

--- wireless_tools.28.pre8.tar.gz DELETED ---

--- NEW FILE: wireless_tools.28.pre13.tar.gz ---
(This appears to be a binary file; contents omitted.)

Index: buildtool.cfg
===================================================================
RCS file: /cvsroot/leaf/src/bering-uclibc/apps/wireless_tools/buildtool.cfg,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** buildtool.cfg       6 Aug 2005 17:55:30 -0000       1.5
--- buildtool.cfg       8 Feb 2006 20:20:33 -0000       1.6
***************
*** 5,9 ****
  </File>
  
! <File wireless_tools.28.pre8.tar.gz>
        Server = cvs-sourceforge
        Directory = wireless_tools
--- 5,9 ----
  </File>
  
! <File wireless_tools.28.pre13.tar.gz>
        Server = cvs-sourceforge
        Directory = wireless_tools
***************
*** 12,16 ****
  </File>
  
! <File wireless>
        Server = cvs-sourceforge
        Directory = wireless_tools
--- 12,16 ----
  </File>
  
! <File wireless-pre-up>
        Server = cvs-sourceforge
        Directory = wireless_tools
***************
*** 18,25 ****
  </File>
  
- 
  <Package>
        <wireless>
!               Version  = 28pre8
                Revision = 1
  
--- 18,24 ----
  </File>
  
  <Package>
        <wireless>
!               Version  = 28pre13
                Revision = 1
  



-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
_______________________________________________
leaf-cvs-commits mailing list
leaf-cvs-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/leaf-cvs-commits

Reply via email to