mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
test: correct architecture in EFI FIT test
On arm64 the its we use to generate the test FIT image has
arch = "arm";
We should use "arm64" here which is mapped to IH_ARCH_ARM64 via
uimage_arch[].
Fixes: 8391f95549
("test/py: Create a test for launching UEFI binaries from FIT images")
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
This commit is contained in:
parent
4533b3d0a3
commit
0773e4d9d9
1 changed files with 5 additions and 0 deletions
|
@ -431,6 +431,11 @@ def test_efi_fit_launch(u_boot_console):
|
|||
cons = u_boot_console
|
||||
# Array slice removes leading/trailing quotes.
|
||||
sys_arch = cons.config.buildconfig.get('config_sys_arch', '"sandbox"')[1:-1]
|
||||
if sys_arch == 'arm':
|
||||
arm64 = cons.config.buildconfig.get('config_arm64')
|
||||
if arm64:
|
||||
sys_arch = 'arm64'
|
||||
|
||||
is_sandbox = sys_arch == 'sandbox'
|
||||
|
||||
if is_sandbox:
|
||||
|
|
Loading…
Reference in a new issue