Skip to content

Commit

Permalink
Add Slitaz GNU/Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
zen0bit committed Oct 19, 2023
1 parent 265be79 commit 872e543
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions quickget
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ function pretty_name() {
reactos) PRETTY_NAME="ReactOS";;
rebornos) PRETTY_NAME="RebornOS";;
rockylinux) PRETTY_NAME="Rocky Linux";;
slitaz) PRETTY_NAME="SliTaz GNU/Linux";;
tinycore) PRETTY_NAME="Tiny Core Linux";;
truenas-core) PRETTY_NAME="TrueNAS Core";;
truenas-scale) PRETTY_NAME="TrueNAS Scale";;
Expand Down Expand Up @@ -234,6 +235,7 @@ function os_support() {
rockylinux \
siduction \
slackware \
slitaz \
solus \
spiral \
tails \
Expand Down Expand Up @@ -626,6 +628,10 @@ function releases_slackware() {
echo 14.2 15.0
}

function releases_slitaz() {
echo preferred core core64 loram core-5in1 preinit
}

function releases_solus() {
echo 4.3
}
Expand Down Expand Up @@ -989,6 +995,11 @@ EOF
echo "disk_size=\"2G\"" >> "${CONF_FILE}"
echo "ram=\"128M\"" >> "${CONF_FILE}"
;;
slitaz)
echo "boot=\"legacy\"" >> "${CONF_FILE}"
echo "disk_size=\"4G\"" >> "${CONF_FILE}"
echo "ram=\"512M\"" >> "${CONF_FILE}"
;;
truenas-scale|truenas-core)
echo "boot=\"legacy\"" >> "${CONF_FILE}"
# the rest is non-functional
Expand Down Expand Up @@ -1860,6 +1871,20 @@ function get_slackware() {
echo "${URL}/${ISO} ${HASH}"
}

function get_slitaz() {
local HASH=""
local ISO="slitaz-rolling-${RELEASE}"
local URL="http://mirror.slitaz.org/iso/rolling"

case ${RELEASE} in
preferred) ISO="slitaz-rolling";;
*) ISO="slitaz-rolling-${RELEASE}";;
esac

HASH=$(wget -q -O- "${URL}/${ISO}.md5" | cut -d' ' -f1)
echo "${URL}/${ISO}.iso ${HASH}"
}

function get_solus() {
local EDITION="${1:-}"
local HASH=""
Expand Down

0 comments on commit 872e543

Please sign in to comment.