1 | #!/usr/bin/env python
|
---|
2 | #
|
---|
3 | # Copyright (c) 2008 Martin Decky
|
---|
4 | # All rights reserved.
|
---|
5 | #
|
---|
6 | # Redistribution and use in source and binary forms, with or without
|
---|
7 | # modification, are permitted provided that the following conditions
|
---|
8 | # are met:
|
---|
9 | #
|
---|
10 | # - Redistributions of source code must retain the above copyright
|
---|
11 | # notice, this list of conditions and the following disclaimer.
|
---|
12 | # - Redistributions in binary form must reproduce the above copyright
|
---|
13 | # notice, this list of conditions and the following disclaimer in the
|
---|
14 | # documentation and/or other materials provided with the distribution.
|
---|
15 | # - The name of the author may not be used to endorse or promote products
|
---|
16 | # derived from this software without specific prior written permission.
|
---|
17 | #
|
---|
18 | # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
19 | # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
20 | # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
21 | # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
22 | # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
23 | # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
24 | # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
25 | # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
26 | # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
27 | # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
28 | #
|
---|
29 | """
|
---|
30 | Binary package creator
|
---|
31 | """
|
---|
32 |
|
---|
33 | import sys
|
---|
34 | import os
|
---|
35 | import subprocess
|
---|
36 |
|
---|
37 | def usage(prname):
|
---|
38 | "Print usage syntax"
|
---|
39 | print prname + " <OBJCOPY> <FORMAT> <ARCH> <ALIGNMENT> <UINTPTR>"
|
---|
40 |
|
---|
41 | def main():
|
---|
42 | if (len(sys.argv) < 6):
|
---|
43 | usage(sys.argv[0])
|
---|
44 | return
|
---|
45 |
|
---|
46 | if (not sys.argv[4].isdigit()):
|
---|
47 | print "<ALIGNMENT> must be a number"
|
---|
48 | return
|
---|
49 |
|
---|
50 | objcopy = sys.argv[1]
|
---|
51 | format = sys.argv[2]
|
---|
52 | arch = sys.argv[3]
|
---|
53 | align = int(sys.argv[4], 0)
|
---|
54 | uintptr = sys.argv[5]
|
---|
55 |
|
---|
56 | workdir = os.getcwd()
|
---|
57 |
|
---|
58 | header = file("_components.h", "w")
|
---|
59 | data = file("_components.c", "w")
|
---|
60 |
|
---|
61 | header.write("#ifndef ___COMPONENTS_H__\n")
|
---|
62 | header.write("#define ___COMPONENTS_H__\n\n")
|
---|
63 |
|
---|
64 | data.write("#include \"_components.h\"\n\n")
|
---|
65 | data.write("void init_components(component_t *components)\n")
|
---|
66 | data.write("{\n")
|
---|
67 |
|
---|
68 | cnt = 0
|
---|
69 | link = ""
|
---|
70 | for task in sys.argv[6:]:
|
---|
71 | basename = os.path.basename(task)
|
---|
72 | plainname = os.path.splitext(basename)[0]
|
---|
73 | path = os.path.dirname(task)
|
---|
74 | object = plainname + ".o"
|
---|
75 | symbol = "_binary_" + basename.replace(".", "_")
|
---|
76 | macro = plainname.upper()
|
---|
77 |
|
---|
78 | print task + " -> " + object
|
---|
79 |
|
---|
80 | if (align > 1):
|
---|
81 | link += "\t\t. = ALIGN(" + ("%d" % align) + ");\n"
|
---|
82 |
|
---|
83 | link += "\t\t*(." + plainname + "_image);\n"
|
---|
84 |
|
---|
85 | header.write("extern int " + symbol + "_start;\n")
|
---|
86 | header.write("extern int " + symbol + "_end;\n\n")
|
---|
87 | header.write("#define " + macro + "_START ((void *) &" + symbol + "_start)\n")
|
---|
88 | header.write("#define " + macro + "_END ((void *) &" + symbol + "_end)\n")
|
---|
89 | header.write("#define " + macro + "_SIZE ((" + uintptr + ") " + macro + "_END - (" + uintptr + ") " + macro + "_START)\n\n")
|
---|
90 |
|
---|
91 | data.write("\tcomponents[" + ("%d" % cnt) + "].name = \"" + plainname + "\";\n")
|
---|
92 | data.write("\tcomponents[" + ("%d" % cnt) + "].start = " + macro + "_START;\n")
|
---|
93 | data.write("\tcomponents[" + ("%d" % cnt) + "].end = " + macro + "_END;\n")
|
---|
94 | data.write("\tcomponents[" + ("%d" % cnt) + "].size = " + macro + "_SIZE;\n\n")
|
---|
95 |
|
---|
96 | os.chdir(path)
|
---|
97 | subprocess.call([objcopy,
|
---|
98 | "-I", "binary",
|
---|
99 | "-O", format,
|
---|
100 | "-B", arch,
|
---|
101 | "--rename-section", ".data=." + plainname + "_image",
|
---|
102 | basename, os.path.join(workdir, object)])
|
---|
103 | os.chdir(workdir)
|
---|
104 |
|
---|
105 | cnt += 1
|
---|
106 |
|
---|
107 | header.write("#define COMPONENTS " + ("%d" % cnt) + "\n\n")
|
---|
108 | header.write("typedef struct {\n")
|
---|
109 | header.write("\tchar *name;\n\n")
|
---|
110 | header.write("\tvoid *start;\n")
|
---|
111 | header.write("\tvoid *end;\n")
|
---|
112 | header.write("\t" + uintptr + " size;\n")
|
---|
113 | header.write("} component_t;\n\n")
|
---|
114 | header.write("extern void init_components(component_t *components);\n\n")
|
---|
115 | header.write("#endif\n")
|
---|
116 |
|
---|
117 | data.write("}\n")
|
---|
118 |
|
---|
119 | header.close()
|
---|
120 | data.close()
|
---|
121 |
|
---|
122 | linkname = "_link.ld"
|
---|
123 | link_in = file(linkname + ".in", "r")
|
---|
124 | template = link_in.read(os.path.getsize(linkname + ".in"))
|
---|
125 | link_in.close()
|
---|
126 |
|
---|
127 | link_out = file(linkname, "w")
|
---|
128 | link_out.write(template.replace("[[COMPONENTS]]", link))
|
---|
129 | link_out.close()
|
---|
130 |
|
---|
131 | if __name__ == '__main__':
|
---|
132 | main()
|
---|