]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/cray/L1/x2c.awk
9235e6cb36dff05d42ddfc1e587eb7a80c0c9773
[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" }