mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00:00
test: Fix typos and tidy up
Fix review comments that were missed at the time. Also explain why we need
to regenerate the device tree for each test.
Reported-by: Teddy Reed <teddy.reed@gmail.com>
Suggested-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Simon Glass <sjg@chromium.org>
Fixes: f6349c3c
(test: Add a README)
This commit is contained in:
parent
633cc7ae96
commit
bcbd0c8fe1
2 changed files with 8 additions and 6 deletions
|
@ -106,7 +106,9 @@ def test_vboot(u_boot_console):
|
|||
|
||||
algo = sha
|
||||
|
||||
# Compile our device tree files for kernel and U-Boot
|
||||
# Compile our device tree files for kernel and U-Boot. These are
|
||||
# regenerated here since mkimage will modify them (by adding a
|
||||
# public key) below.
|
||||
dtc('sandbox-kernel.dts')
|
||||
dtc('sandbox-u-boot.dts')
|
||||
|
||||
|
@ -139,7 +141,7 @@ def test_vboot(u_boot_console):
|
|||
sig = util.cmd(cons, 'fdtget -t bx %s %s value' % (fit, sig_node))
|
||||
byte_list = sig.split()
|
||||
byte = int(byte_list[0], 16)
|
||||
byte_list = ['%x' % (byte + 1)] + byte_list[1:]
|
||||
byte_list[0] = '%x' % (byte + 1)
|
||||
sig = ' '.join(byte_list)
|
||||
util.cmd(cons, 'fdtput -t bx %s %s value %s' % (fit, sig_node, sig))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue