From 60a3d24a0fd59341b6c9162405c110699172b87d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vincent=20Stehl=C3=A9?= Date: Mon, 7 Feb 2022 11:34:44 +0100 Subject: [PATCH 1/3] README: regroup capsule commands MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Regroup all the UEFI commands related to capsule update in the same fw/capsule-update.log. Signed-off-by: Vincent Stehlé --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0ade0c4..d75b3de 100644 --- a/README.md +++ b/README.md @@ -96,8 +96,6 @@ execute. Shell> dh -d -v Shell> memmap Shell> smbiosview - Shell> CapsuleApp.efi -P - Shell> CapsuleApp.efi -E #### `./fw/capsule-update.log` Demonstrate that `UpdateCapsule()` works by capturing a log of using @@ -117,7 +115,9 @@ The U-Boot console log should now show a different version of firmware. ``` Shell> fs2:\ -FS2:\> efi/boot/app/capsuleapp.efi capsule.bin +FS2:\> EFI/BOOT/app/CapsuleApp.efi -P +FS2:\> EFI/BOOT/app/CapsuleApp.efi -E +FS2:\> EFI/BOOT/app/CapsuleApp.efi capsule.bin ``` ### `./os-logs/` -- GitLab From 04398d47b42400aedadcb99c5b3e4e7d7706fd30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vincent=20Stehl=C3=A9?= Date: Mon, 7 Feb 2022 11:34:54 +0100 Subject: [PATCH 2/3] README: capture os release MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Borrow from the ES band and ask for the os-release contents. Signed-off-by: Vincent Stehlé --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index d75b3de..7446044 100644 --- a/README.md +++ b/README.md @@ -142,6 +142,7 @@ must include: # lsblk # dmidecode # uname -a +# cat /etc/os-release # efibootmgr # cp -r /sys/firmware ~/ # tar czf ~/sys-firmware.tar.gz ~/firmware -- GitLab From 13d78f94c54ac7289c70c4348b69e170918f833e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vincent=20Stehl=C3=A9?= Date: Mon, 7 Feb 2022 15:36:47 +0100 Subject: [PATCH 3/3] README: add Linux BSA commands MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add the commands to insert the kernel module and run the BSA tests under Linux. Signed-off-by: Vincent Stehlé --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7446044..d8cb08e 100644 --- a/README.md +++ b/README.md @@ -45,8 +45,11 @@ Manual test results must include both a console log of the commands executed and the result files (if any) generated by the test. #### `./manual-results/bsa-linux/console.log` +Run the following commands at Linux prompt to test BSA and attach the console +log: -Place the console log captured when running BSA manually on Linux. + / # insmod /lib/modules/bsa_acs.ko + / # /bin/bsa ### `./docs/` Place any firmware or device documentation, manuals, user guides, build instructions, etc.. -- GitLab