diff options
author | Tom Rini <trini@ti.com> | 2013-12-06 07:19:09 -0500 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-12-06 07:19:09 -0500 |
commit | 3f56795635ab419d3378451a9291490cfa47f472 (patch) | |
tree | 9043dbaf750f7c4fd2162d8d4a2ea480dfe71860 /arch/blackfin/cpu/bootrom-asm-offsets.awk | |
parent | 1df99080cb6dea9216ee1925f03bd7cc35dc34c7 (diff) | |
parent | 985e18d14e0cb3933311945d30de6357cf8be9df (diff) |
Merge branch 'master' of git://git.denx.de/u-boot-blackfin
Diffstat (limited to 'arch/blackfin/cpu/bootrom-asm-offsets.awk')
-rw-r--r-- | arch/blackfin/cpu/bootrom-asm-offsets.awk | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/arch/blackfin/cpu/bootrom-asm-offsets.awk b/arch/blackfin/cpu/bootrom-asm-offsets.awk deleted file mode 100644 index 1d61824254..0000000000 --- a/arch/blackfin/cpu/bootrom-asm-offsets.awk +++ /dev/null @@ -1,41 +0,0 @@ -#!/usr/bin/gawk -f -BEGIN { - print "/* DO NOT EDIT: AUTOMATICALLY GENERATED" - print " * Input files: bootrom-asm-offsets.awk bootrom-asm-offsets.c.in" - print " * DO NOT EDIT: AUTOMATICALLY GENERATED" - print " */" - print "" - system("cat bootrom-asm-offsets.c.in") - print "{" -} - -{ - /* find a structure definition */ - if ($0 ~ /typedef struct .* {/) { - delete members; - i = 0; - - /* extract each member of the structure */ - while (1) { - getline - if ($1 == "}") - break; - gsub(/[*;]/, ""); - members[i++] = $NF; - } - - /* grab the structure's name */ - struct = $NF; - sub(/;$/, "", struct); - - /* output the DEFINE() macros */ - while (i-- > 0) - print "\tDEFINE(" struct ", " members[i] ");" - print "" - } -} - -END { - print "\treturn 0;" - print "}" -} |