Linux-2.6.12-rc2
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
This commit is contained in:
31
drivers/net/starfire_firmware.pl
Normal file
31
drivers/net/starfire_firmware.pl
Normal file
@@ -0,0 +1,31 @@
|
||||
#!/usr/bin/perl
|
||||
|
||||
# This script can be used to generate a new starfire_firmware.h
|
||||
# from GFP_RX.DAT and GFP_TX.DAT, files included with the DDK
|
||||
# and also with the Novell drivers.
|
||||
|
||||
open FW, "GFP_RX.DAT" || die;
|
||||
open FWH, ">starfire_firmware.h" || die;
|
||||
|
||||
printf(FWH "static u32 firmware_rx[] = {\n");
|
||||
$counter = 0;
|
||||
while ($foo = <FW>) {
|
||||
chomp;
|
||||
printf(FWH " 0x%s, 0x0000%s,\n", substr($foo, 4, 8), substr($foo, 0, 4));
|
||||
$counter++;
|
||||
}
|
||||
|
||||
close FW;
|
||||
open FW, "GFP_TX.DAT" || die;
|
||||
|
||||
printf(FWH "};\t/* %d Rx instructions */\n#define FIRMWARE_RX_SIZE %d\n\nstatic u32 firmware_tx[] = {\n", $counter, $counter);
|
||||
$counter = 0;
|
||||
while ($foo = <FW>) {
|
||||
chomp;
|
||||
printf(FWH " 0x%s, 0x0000%s,\n", substr($foo, 4, 8), substr($foo, 0, 4));
|
||||
$counter++;
|
||||
}
|
||||
|
||||
close FW;
|
||||
printf(FWH "};\t/* %d Tx instructions */\n#define FIRMWARE_TX_SIZE %d\n", $counter, $counter);
|
||||
close(FWH);
|
Reference in New Issue
Block a user