diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2014-06-10 02:01:56 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2014-06-11 14:55:56 -0400 |
commit | 263427040784f1fdb519c827e463c8b4ef192370 (patch) | |
tree | b784a7893f147c20b66cf600123467ce725c6d53 | |
parent | 43197a2aec677333797aebdfb5f5429875ba6901 (diff) | |
download | seabios-263427040784f1fdb519c827e463c8b4ef192370.tar.gz |
build: Remove unused function getSectionsStart() from layoutrom.py.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rwxr-xr-x | scripts/layoutrom.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/scripts/layoutrom.py b/scripts/layoutrom.py index b3254061..28e7d0c6 100755 --- a/scripts/layoutrom.py +++ b/scripts/layoutrom.py @@ -343,11 +343,6 @@ def getRelocs(sections, type=None, category=None, notcategory=None): out.append(section.finalloc + reloc.offset) return out -# Return the start address and minimum alignment for a set of sections -def getSectionsStart(sections, defaddr=0): - return min([section.finalloc for section in sections - if section.finalloc is not None] or [defaddr]) - # Output the linker scripts for all required sections. def writeLinkerScripts(li, out16, out32seg, out32flat): # Write 16bit linker script |