mirror of
https://passt.top/passt
synced 2024-11-05 20:31:11 +00:00
14 lines
232 B
Bash
14 lines
232 B
Bash
|
#! /bin/sh
|
||
|
|
||
|
LOCATIONS="/usr/share/qemu-efi-aarch64 /usr/share/edk2/aarch64"
|
||
|
|
||
|
for l in $LOCATIONS; do
|
||
|
if [ -f "$l/QEMU_EFI.fd" ]; then
|
||
|
ln -s "$l/QEMU_EFI.fd" "$1"
|
||
|
exit 0
|
||
|
fi
|
||
|
done
|
||
|
|
||
|
echo "Couldn't find QEMU_EFI.fd" >&2
|
||
|
exit 1
|