diff options
| author | Tom Rini <[email protected]> | 2024-06-30 10:59:42 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-06-30 10:59:42 -0600 |
| commit | 2f9603392355e21c379b4adddea7c6b35cf09b9b (patch) | |
| tree | 3341b0c0f5a604fe1b55781de81a7cad3f36bc10 /cmd | |
| parent | 48641bfab793b5ffbf481ee2085fb8c0432da5fa (diff) | |
| parent | 636480e4e7088d05d7ff77af72ca00443c62b3e9 (diff) | |
Merge tag 'efi-2024-10-rc1' of https://source.denx.de/u-boot/custodians/u-boot-efi into next
Pull request efi-2024-10-rc1
Documentation:
Update requirements.txt to use current Python module versions
Add a page describing debugging U-Boot with GDB
FIT: describe data-size as a conditionally mandatory property
Correct link to FIT specification in SPL code.
Correct kaslrseed command long text description
UEFI:
Add unit test checking that don't have kaslr-seed when measuring boot
Deduplicate code for measured boot.
Other:
Print size information in fwu command
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/fwu_mdata.c | 1 | ||||
| -rw-r--r-- | cmd/kaslrseed.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/cmd/fwu_mdata.c b/cmd/fwu_mdata.c index 3c8be576ac7..9c048d69a13 100644 --- a/cmd/fwu_mdata.c +++ b/cmd/fwu_mdata.c @@ -22,6 +22,7 @@ static void print_mdata(struct fwu_data *data) printf("\tFWU Metadata\n"); printf("crc32: %#x\n", data->crc32); printf("version: %#x\n", data->version); + printf("size: %#x\n", data->metadata_size); printf("active_index: %#x\n", data->active_index); printf("previous_active_index: %#x\n", data->previous_active_index); diff --git a/cmd/kaslrseed.c b/cmd/kaslrseed.c index 0712097ed05..2ad983a11f9 100644 --- a/cmd/kaslrseed.c +++ b/cmd/kaslrseed.c @@ -33,7 +33,7 @@ static int do_kaslr_seed(struct cmd_tbl *cmdtp, int flag, int argc, char *const } U_BOOT_LONGHELP(kaslrseed, - "[n]\n" + "\n" " - append random bytes to chosen kaslr-seed node\n"); U_BOOT_CMD( |
