]> git.karo-electronics.de Git - karo-tx-uboot.git/blob - board/cray/L1/x2c.awk
* Patch by David Updegraff, 22 Apr 2003:
[karo-tx-uboot.git] / board / cray / L1 / x2c.awk
1 #!/bin/awk
2 BEGIN { print "unsigned char bootscript[] = { \n"}
3 { for (i = 2; i <= NF ; i++ ) printf "0x"$i","
4   print ""
5 }
6 END { print "\n};\n" }