diff options
author | Regina König | 2020-06-22 19:22:08 +0200 |
---|---|---|
committer | Regina König | 2020-06-22 19:22:08 +0200 |
commit | 9ceb9041ed616f0afd48df6913733b7f9c1f6437 (patch) | |
tree | 85e0f3bb3cd8d5534b92e6bc126d7e8a9d07c73c /test_code/working_iso | |
parent | directory for compiled efi applications (diff) | |
download | memtest86-9ceb9041ed616f0afd48df6913733b7f9c1f6437.tar.gz memtest86-9ceb9041ed616f0afd48df6913733b7f9c1f6437.tar.xz memtest86-9ceb9041ed616f0afd48df6913733b7f9c1f6437.zip |
another way to get into efi shell
Diffstat (limited to 'test_code/working_iso')
-rw-r--r-- | test_code/working_iso/README | 2 | ||||
-rw-r--r-- | test_code/working_iso/TinyCore-current.iso | bin | 0 -> 19922944 bytes | |||
-rwxr-xr-x | test_code/working_iso/boot-efi | 12 |
3 files changed, 14 insertions, 0 deletions
diff --git a/test_code/working_iso/README b/test_code/working_iso/README new file mode 100644 index 0000000..79a8b2c --- /dev/null +++ b/test_code/working_iso/README @@ -0,0 +1,2 @@ +sudo ./boot-efi TinyCore-current.iso + diff --git a/test_code/working_iso/TinyCore-current.iso b/test_code/working_iso/TinyCore-current.iso Binary files differnew file mode 100644 index 0000000..a8faf06 --- /dev/null +++ b/test_code/working_iso/TinyCore-current.iso diff --git a/test_code/working_iso/boot-efi b/test_code/working_iso/boot-efi new file mode 100755 index 0000000..28382ba --- /dev/null +++ b/test_code/working_iso/boot-efi @@ -0,0 +1,12 @@ +#!/bin/bash +kvm \ + -bios /usr/share/qemu/OVMF.fd \ + -drive format=raw,file=$1 \ + -net none \ + -serial stdio \ + -m 4G \ + -cpu host \ + -smp 2 + + + |