mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
7f70e85309
update for CrayL1 board * Patch by Pantelis Antoniou, 21 Apr 2003: add boot support for ARTOS (a proprietary OS) * Patch by Steven Scholz, 11 Apr 2003: Add support for RTC DS1338 * Patch by Rod Boyce, 24 Jan 2003: Fix counting of extended partitions in diskboot command
6 lines
145 B
Awk
6 lines
145 B
Awk
#!/bin/awk
|
|
BEGIN { print "unsigned char bootscript[] = { \n"}
|
|
{ for (i = 2; i <= NF ; i++ ) printf "0x"$i","
|
|
print ""
|
|
}
|
|
END { print "\n};\n" }
|