requested in #482
pull/515/head
Phil Clifford 2 years ago committed by GitHub
parent f127cca13b
commit 0390dcf652
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 19
      quickget

@ -47,6 +47,7 @@ function pretty_name() {
kdeneon) PRETTY_NAME="KDE Neon";; kdeneon) PRETTY_NAME="KDE Neon";;
kolibrios) PRETTY_NAME="KolibriOS";; kolibrios) PRETTY_NAME="KolibriOS";;
linuxmint) PRETTY_NAME="Linux Mint";; linuxmint) PRETTY_NAME="Linux Mint";;
lmde) PRETTY_NAME="Linux Mint Debian Edition";;
mxlinux) PRETTY_NAME="MX Linux";; mxlinux) PRETTY_NAME="MX Linux";;
netboot) PRETTY_NAME="netboot.xyz";; netboot) PRETTY_NAME="netboot.xyz";;
netbsd) PRETTY_NAME="NetBSD";; netbsd) PRETTY_NAME="NetBSD";;
@ -183,6 +184,7 @@ function os_support() {
kolibrios \ kolibrios \
kubuntu \ kubuntu \
linuxmint \ linuxmint \
lmde \
manjaro \ manjaro \
mxlinux \ mxlinux \
netboot \ netboot \
@ -366,6 +368,13 @@ function editions_linuxmint(){
echo cinnamon mate xfce echo cinnamon mate xfce
} }
function editions_lmde(){
echo cinnamon
}
function releases_lmde(){
echo 5
}
function releases_mxlinux(){ function releases_mxlinux(){
echo 21.1 echo 21.1
} }
@ -1089,6 +1098,16 @@ function get_linuxmint() {
echo "${URL}/${ISO} ${HASH}" echo "${URL}/${ISO} ${HASH}"
} }
function get_lmde() {
local EDITION="${1:-}"
local HASH=""
local ISO="lmde-${RELEASE}-${EDITION}-64bit.iso"
local URL="https://mirror.bytemark.co.uk/linuxmint/debian"
HASH=$(wget -q -O- "${URL}/sha256sum.txt" | grep "${ISO}" | cut -d' ' -f1)
echo "${URL}/${ISO} ${HASH}"
}
function get_macos() { function get_macos() {
local BOARD_ID="" local BOARD_ID=""
local CWD="" local CWD=""

Loading…
Cancel
Save