libgcrypt: update to 1.4.6
[openembedded.git] / recipes / orinoco / spectrum-fw / get_symbol_fw
1 #!/bin/sh
2
3 # Get firmware for Symbol Spectrum24 Trilogy.
4 # Both the header file and the binary firmware files are produced.
5
6 # Copyright (C) 2004 Pavel Roskin <proski@gnu.org>
7
8 # This script is Free Software, and it can be copied, distributed and
9 # modified as defined in the GNU General Public License.  A copy of
10 # its license can be downloaded from http://www.gnu.org/copyleft/gpl.html
11
12 # Usage: get_symbol_fw
13 # Output: spectrum_fw.h symbol_sp24t_prim_fw symbol_sp24t_sec_fw
14 # Needed tools: curl (or wget), unzip, perl.
15
16 set -e
17
18 DL_INT1='S24DRVR392B67-01.exe'
19 DL_INT2='Driver Only Installer/NetWLan5.sys'
20 DRIVER1=symbol1.drv
21 DRIVER2=symbol2.drv
22
23 unzip -p $DL_INT1 "$DL_INT2" >$DRIVER2
24         
25 perl parse_symbol_fw $DRIVER2 spectrum_fw.h symbol_sp24t_prim_fw \
26     symbol_sp24t_sec_fw
27                             
28 rm -f $DRIVER1 $DRIVER2
29