From e701b15347d75ada54146affb88f9320d4cd5d72 Mon Sep 17 00:00:00 2001 From: aiminick Date: Wed, 13 Oct 2021 23:21:06 +0800 Subject: [PATCH] Update qemu_winx11.md --- docs/qemu_winx11.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/qemu_winx11.md b/docs/qemu_winx11.md index 52a8583..f151beb 100644 --- a/docs/qemu_winx11.md +++ b/docs/qemu_winx11.md @@ -8,4 +8,14 @@ qemu-system-sparc qemu-system-x86 qemu-utils; \ do echo -n "$i=$(apt-cache madison qemu|head -n1|awk '{print $3}') "; \ done) ; \ apt install $pkgs + +pkgs=$(for i in qemu-efi qemu-efi-aarch64 qemu-efi-arm; \ +do echo -n "$i=$(apt-cache madison qemu|head -n1|awk '{print $3}') "; \ +done) ; \ +apt install $pkgs + +pkgs=$(for i in ipxe-qemu; \ +do echo -n "$i=$(apt-cache madison qemu|head -n1|awk '{print $3}') "; \ +done) ; \ +apt install $pkgs ```