From dd4d1615701b998bf5f163fcb6a5e7a1fce21561 Mon Sep 17 00:00:00 2001 From: "Kevin Veen-Birkenbach [aka. Frantz]" Date: Tue, 19 May 2020 10:31:18 +0200 Subject: [PATCH] Added manjaro gnome image --- README.md | 2 +- scripts/image/setup.sh | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5594915..a2bd921 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,7 @@ To pase the configuration to the program use this syntax: echo "sdX" # | The device echo "64_bit" # | The architecture type; arm or 64_bit echo "manjaro" # | The operation system - echo "architect" # | The version + echo "gnome" # | The version #echo "n" # ├── If arch: Should a encrypted setup be used? (y/n) echo "n" # | Should the image download be forced?(y/n) echo "y" # | Should the image be transfered to $device_path?(y/n) diff --git a/scripts/image/setup.sh b/scripts/image/setup.sh index c3d4e94..d7bcee8 100644 --- a/scripts/image/setup.sh +++ b/scripts/image/setup.sh @@ -84,6 +84,7 @@ case "$architecture" in case "$os" in "manjaro") echo "1) architect" + echo "1) gnome" ;; *) error "The os system \"$os\" is not supported yet for 64bit!" @@ -125,6 +126,11 @@ case "$os" in base_download_url="https://osdn.net/frs/redir.php?m=dotsrc&f=%2Fstorage%2Fg%2Fm%2Fma%2Fmanjaro%2Farchitect%2F20.0%2F"; imagename="manjaro-architect-20.0-200426-linux56.iso" ;; + "gnome") + image_checksum="d16118207c546c18201703d80b6356b1522b47d0" + base_download_url="https://osdn.net/frs/redir.php?m=dotsrc&f=/storage/g/m/ma/manjaro/gnome/20.0.1/"; + imagename="manjaro-gnome-20.0.1-200511-linux56.iso" + ;; *) os_does_not_support_raspberry_version_error ;;