mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-18 13:11:31 +00:00
test: vboot: Reduce fake kernel size to 500 bytes
We don't need 5KB to test things out. A smaller size makes it easier to look at the FIT with fdtdump. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
da76ed2795
commit
0e29648f8e
1 changed files with 1 additions and 1 deletions
|
@ -289,7 +289,7 @@ def test_vboot(u_boot_console, sha_algo, padding, required):
|
|||
|
||||
# Create a number kernel image with zeroes
|
||||
with open('%stest-kernel.bin' % tmpdir, 'w') as fd:
|
||||
fd.write(5000 * chr(0))
|
||||
fd.write(500 * chr(0))
|
||||
|
||||
try:
|
||||
# We need to use our own device tree file. Remember to restore it
|
||||
|
|
Loading…
Add table
Reference in a new issue