Added manjaro gnome image

This commit is contained in:
Kevin Veen-Birkenbach 2020-05-19 10:31:18 +02:00
parent 0aba1daf41
commit dd4d161570
2 changed files with 7 additions and 1 deletions

View File

@ -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)

View File

@ -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
;;