mirror of
https://xff.cz/git/u-boot/
synced 2025-09-30 23:11:32 +02:00
binman: Support a list of strings with the mkimage etype
At present the 'args' property of the mkimage entry type is a string. This makes it difficult to include CONFIG options in that property. In particular, this does not work: args = "-n CONFIG_SYS_SOC -E" since the preprocessor does not operate within strings, nor does this: args = "-n" CONFIG_SYS_SOC" "-E" since the device tree compiler does not understand string concatenation. With this new feature, we can do: args = "-n", CONFIG_SYS_SOC, "-E"; Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
@@ -263,7 +263,7 @@ class TestElf(unittest.TestCase):
|
||||
if not elf.ELF_TOOLS:
|
||||
self.skipTest('Python elftools not available')
|
||||
fname = self.ElfTestFile('embed_data')
|
||||
segments, entry = elf.read_segments(tools.ReadFile(fname))
|
||||
segments, entry = elf.read_segments(tools.read_file(fname))
|
||||
|
||||
def test_read_segments_fail(self):
|
||||
"""Test for read_segments() without elftools"""
|
||||
@@ -272,7 +272,7 @@ class TestElf(unittest.TestCase):
|
||||
elf.ELF_TOOLS = False
|
||||
fname = self.ElfTestFile('embed_data')
|
||||
with self.assertRaises(ValueError) as e:
|
||||
elf.read_segments(tools.ReadFile(fname))
|
||||
elf.read_segments(tools.read_file(fname))
|
||||
self.assertIn('Python elftools package is not available',
|
||||
str(e.exception))
|
||||
finally:
|
||||
@@ -282,7 +282,7 @@ class TestElf(unittest.TestCase):
|
||||
"""Test for read_segments() with an invalid ELF file"""
|
||||
fname = self.ElfTestFile('embed_data')
|
||||
with self.assertRaises(ValueError) as e:
|
||||
elf.read_segments(tools.GetBytes(100, 100))
|
||||
elf.read_segments(tools.get_bytes(100, 100))
|
||||
self.assertIn('Magic number does not match', str(e.exception))
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user