mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2025-12-10 07:44:53 +01:00
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" }
|