diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-12-19 13:39:30 +0100 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-01-07 18:08:20 +0100 |
commit | 3510280960ead6947a296d1d9b8744d3336381ea (patch) | |
tree | b95ba2d54549e6c28f244189e0af55fb5ff1cf28 /test | |
parent | 07b57ef1ebcb1098080385392197c3b9971e00e1 (diff) | |
download | u-boot-3510280960ead6947a296d1d9b8744d3336381ea.zip u-boot-3510280960ead6947a296d1d9b8744d3336381ea.tar.gz u-boot-3510280960ead6947a296d1d9b8744d3336381ea.tar.bz2 |
test/py: describe env__efi_loader_helloworld_file
Describe the components of environment variable
env__efi_loader_helloworld_file.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'test')
-rw-r--r-- | test/py/tests/test_efi_loader.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/py/tests/test_efi_loader.py b/test/py/tests/test_efi_loader.py index d6b214f..adf9d77 100644 --- a/test/py/tests/test_efi_loader.py +++ b/test/py/tests/test_efi_loader.py @@ -43,9 +43,10 @@ env__net_static_env_vars = [ # Details regarding a file that may be read from a TFTP server. This variable # may be omitted or set to None if TFTP testing is not possible or desired. env__efi_loader_helloworld_file = { - 'fn': 'lib/efi_loader/helloworld.efi', - 'size': 5058624, - 'crc32': 'c2244b26', + 'fn': 'lib/efi_loader/helloworld.efi', # file name + 'size': 5058624, # file length in bytes + 'crc32': 'c2244b26', # CRC32 check sum + 'addr': 0x40400000, # load address } """ |