summaryrefslogtreecommitdiff
path: root/tools/binman/ftest.py
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2025-02-24 10:32:04 -0600
committerTom Rini <trini@konsulko.com>2025-02-24 10:32:04 -0600
commit523a56cc54637a0c04a1e87c262599faf26d7d69 (patch)
tree40db33daadc1e9f14cade4bb5fe6d03ee426788c /tools/binman/ftest.py
parent7520827be3dbde7fb7324d63d263d650d427c035 (diff)
Revert "Merge patch series "Add preload_check_sign tool""
This reverts commit c8750efe02c20725388dd4279896aaf306acfad4, reversing changes made to 8c6cf8aeea7e57ca686de8b765e4baf3a7ef1fa7. Unfortunately these changes do not build on macOS hosts. Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'tools/binman/ftest.py')
-rw-r--r--tools/binman/ftest.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/tools/binman/ftest.py b/tools/binman/ftest.py
index e0685884cef..d2802f67e2d 100644
--- a/tools/binman/ftest.py
+++ b/tools/binman/ftest.py
@@ -762,16 +762,6 @@ class TestFunctional(unittest.TestCase):
return False
return True
- def _CheckPreload(self, image, key, algo="sha256,rsa2048",
- padding="pkcs-1.5"):
- try:
- tools.run('preload_check_sign', '-k', key, '-a', algo, '-p',
- padding, '-f', image)
- except:
- self.fail('Expected image signed with a pre-load')
- return False
- return True
-
def testRun(self):
"""Test a basic run with valid args"""
result = self._RunBinman('-h')
@@ -5791,14 +5781,9 @@ fdt fdtmap Extract the devicetree blob from the fdtmap
data = self._DoReadFileDtb(
'230_pre_load.dts', entry_args=entry_args,
extra_indirs=[os.path.join(self._binman_dir, 'test')])[0]
-
- image_fname = tools.get_output_filename('image.bin')
- is_signed = self._CheckPreload(image_fname, self.TestFile("dev.key"))
-
self.assertEqual(PRE_LOAD_MAGIC, data[:len(PRE_LOAD_MAGIC)])
self.assertEqual(PRE_LOAD_VERSION, data[4:4 + len(PRE_LOAD_VERSION)])
self.assertEqual(PRE_LOAD_HDR_SIZE, data[8:8 + len(PRE_LOAD_HDR_SIZE)])
- self.assertEqual(is_signed, True)
def testPreLoadNoKey(self):
"""Test an image with a pre-load heade0r with missing key"""