requested in #482
This commit is contained in:
Phil Clifford 2022-06-08 21:35:43 +01:00
parent 187da46c3b
commit 256209ef20

View File

@ -45,6 +45,7 @@ function pretty_name() {
kdeneon) PRETTY_NAME="KDE Neon";;
kolibrios) PRETTY_NAME="KolibriOS";;
linuxmint) PRETTY_NAME="Linux Mint";;
lmde) PRETTY_NAME="Linux Mint Debian Edition";;
mxlinux) PRETTY_NAME="MX Linux";;
netboot) PRETTY_NAME="netboot.xyz";;
netbsd) PRETTY_NAME="NetBSD";;
@ -177,6 +178,7 @@ function os_support() {
kolibrios \
kubuntu \
linuxmint \
lmde \
manjaro \
mxlinux \
netboot \
@ -349,6 +351,13 @@ function editions_linuxmint(){
echo cinnamon mate xfce
}
function editions_lmde(){
echo cinnamon
}
function releases_lmde(){
echo 5
}
function releases_mxlinux(){
echo 21
}
@ -1007,6 +1016,16 @@ function get_linuxmint() {
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() {
local BOARD_ID=""
local CWD=""