diff options
author | Regia König | 2022-08-17 10:49:27 +0200 |
---|---|---|
committer | Regia König | 2022-08-17 10:49:27 +0200 |
commit | bc78d650cfe0b759a48afba17686671ac67c9387 (patch) | |
tree | 5268a20f5a4a716a25ae0450fcb0d6635f1ac64d /test_code | |
parent | Efi file outputs own image base (diff) | |
download | memtest86-bc78d650cfe0b759a48afba17686671ac67c9387.tar.gz memtest86-bc78d650cfe0b759a48afba17686671ac67c9387.tar.xz memtest86-bc78d650cfe0b759a48afba17686671ac67c9387.zip |
Expand analyzation script
Diffstat (limited to 'test_code')
-rw-r--r-- | test_code/OVMF_VARS.fd | bin | 540672 -> 540672 bytes | |||
-rwxr-xr-x | test_code/analyse_hello.sh | 13 |
2 files changed, 13 insertions, 0 deletions
diff --git a/test_code/OVMF_VARS.fd b/test_code/OVMF_VARS.fd Binary files differindex 852d584..d1888bc 100644 --- a/test_code/OVMF_VARS.fd +++ b/test_code/OVMF_VARS.fd diff --git a/test_code/analyse_hello.sh b/test_code/analyse_hello.sh new file mode 100755 index 0000000..2e9187f --- /dev/null +++ b/test_code/analyse_hello.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +echo "#### \$objdump -h hello.efi" +objdump -h hda-contents/hello.efi + +echo "########################################################################" +echo "#### \$peinfo hello.efi | grep text -A 5" +./peinfo hda-contents/hello.efi | grep text -A 5 + + +echo "########################################################################" +echo "#### \$cat debug.log | grep hello -A 5" +cat debug.log | grep hello -A 5 |