mirror of
https://github.com/linuxboot/linuxboot
synced 2024-11-22 17:01:28 +00:00
6f0cf0cab8
Signed-off-by: Ronald G. Minnich <rminnich@gmail.com>
10 lines
276 B
Bash
Executable File
10 lines
276 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
rm -f /tmp/xxx.bin
|
|
utk -xzPath /usr/bin/xz \
|
|
/mnt/hgfs/rminnich/Downloads/OVMF.fd \
|
|
remove BdsDxe insert_dxe up2bds.ffs \
|
|
remove Shell insert_dxe up2shellfull.ffs \
|
|
save /tmp/xxx.fd
|
|
/usr/bin/qemu-system-x86_64 -nographic -net none -bios /tmp/xxx.fd
|