From f33892c62d4a4a5d68c17ff8ce62b7a41becde1a Mon Sep 17 00:00:00 2001 From: Attila Pinter Date: Mon, 18 Oct 2021 18:30:06 +0700 Subject: [PATCH] adding openSUSE MicroOS only --- README.md | 9 +++++++-- quickget | 9 +++++++-- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d4c93a2..6de8fe0 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ comprehensive support for macOS and Windows**. * Ubuntu, and all the official flavours, supported by `quickget` * Fedora, supported by `quickget` * linuxmint Cinnamon, MATE, and xfce, supported by `quickget` - * openSUSE Leap and Tumbleweed, supported by `quickget` + * openSUSE Leap, Tumbleweed and MicroOS, supported by `quickget` * Full SPICE support including host/guest clipboard sharing * VirtIO-webdavd file sharing for Linux and Windows guests * VirtIO-9p file sharing for Linux and macOS guests @@ -308,7 +308,7 @@ quickemu --vm linuxmint-mate-20.2.conf ## openSUSE Guest -`quickemu` supports openSUSE Leap and Tumbleweed. +`quickemu` supports openSUSE Leap, Tumbleweed and MicroOS. For the installation to complete properly, on the "Installation Settings" screen, you need to disable the "Update NVRAM" option. @@ -325,6 +325,11 @@ quickget opensuse tumbleweed quickemu --vm opensuse-tumbleweed ``` +```bash +quickget opensuse microos +quickemu --vm opensuse-microos +``` + # SPICE The following features are available while using the SPICE protocol: diff --git a/quickget b/quickget index 98dbd68..cef5a92 100755 --- a/quickget +++ b/quickget @@ -39,7 +39,8 @@ function releases_opensuse(){ 15_1 \ 15_2 \ 15_3 \ - tumbleweed + tumbleweed \ + microos } function releases_macos() { @@ -507,7 +508,7 @@ function get_opensuse() { local VERSION="" case ${RELEASE} in - 15_0|15_1|15_2|15_3|tumbleweed) VERSION=${RELEASE//_/.};; + 15_0|15_1|15_2|15_3|tumbleweed|microos) VERSION=${RELEASE//_/.};; *) echo "ERROR! openSUSE ${RELEASE} is not a supported release." releases_opensuse @@ -518,6 +519,10 @@ function get_opensuse() { if [ "${VERSION}" == "tumbleweed" ]; then ISO="openSUSE-Tumbleweed-DVD-x86_64-Current.iso" URL="${DL_BASE}/tumbleweed/iso/${ISO}" + elif + [ "${VERSION}" == "microos" ]; then + ISO="openSUSE-MicroOS-DVD-x86_64-Current.iso" + URL="${DL_BASE}/tumbleweed/iso/${ISO}" else ISO="openSUSE-Leap-${VERSION}-DVD-x86_64.iso" URL="${DL_BASE}/distribution/leap/${VERSION}/iso/${ISO}"