📦 Slitaz GNU/Linux
This commit is contained in:
parent
5e7e677131
commit
4c6c078d3c
26
quickget
26
quickget
|
@ -113,6 +113,7 @@ function pretty_name() {
|
||||||
rebornos) PRETTY_NAME="RebornOS";;
|
rebornos) PRETTY_NAME="RebornOS";;
|
||||||
rockylinux) PRETTY_NAME="Rocky Linux";;
|
rockylinux) PRETTY_NAME="Rocky Linux";;
|
||||||
slint) PRETTY_NAME="Slint";;
|
slint) PRETTY_NAME="Slint";;
|
||||||
|
slitaz) PRETTY_NAME="SliTaz GNU/Linux";;
|
||||||
tinycore) PRETTY_NAME="Tiny Core Linux";;
|
tinycore) PRETTY_NAME="Tiny Core Linux";;
|
||||||
truenas-core) PRETTY_NAME="TrueNAS Core";;
|
truenas-core) PRETTY_NAME="TrueNAS Core";;
|
||||||
truenas-scale) PRETTY_NAME="TrueNAS Scale";;
|
truenas-scale) PRETTY_NAME="TrueNAS Scale";;
|
||||||
|
@ -292,6 +293,7 @@ function os_support() {
|
||||||
slackware \
|
slackware \
|
||||||
slax \
|
slax \
|
||||||
slint \
|
slint \
|
||||||
|
slitaz \
|
||||||
solus \
|
solus \
|
||||||
spiral \
|
spiral \
|
||||||
tails \
|
tails \
|
||||||
|
@ -392,6 +394,7 @@ function os_homepages(){
|
||||||
slackware) HOMEPAGE="http://www.slackware.com/";;
|
slackware) HOMEPAGE="http://www.slackware.com/";;
|
||||||
slax) HOMEPAGE="https://www.slax.org/";;
|
slax) HOMEPAGE="https://www.slax.org/";;
|
||||||
slint) HOMEPAGE="https://slint.fr/";;
|
slint) HOMEPAGE="https://slint.fr/";;
|
||||||
|
slitaz) HOMEPAGE="https://www.slitaz.org/";;
|
||||||
solus) HOMEPAGE="https://getsol.us/";;
|
solus) HOMEPAGE="https://getsol.us/";;
|
||||||
spiral) HOMEPAGE="https://spirallinux.github.io/";;
|
spiral) HOMEPAGE="https://spirallinux.github.io/";;
|
||||||
tails) HOMEPAGE="https://tails.net/";;
|
tails) HOMEPAGE="https://tails.net/";;
|
||||||
|
@ -896,6 +899,10 @@ function releases_slint() {
|
||||||
echo 15.0 14.2.1
|
echo 15.0 14.2.1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function releases_slitaz() {
|
||||||
|
echo preferred core core64 loram core-5in1 preinit
|
||||||
|
}
|
||||||
|
|
||||||
function releases_solus() {
|
function releases_solus() {
|
||||||
echo 4.3
|
echo 4.3
|
||||||
}
|
}
|
||||||
|
@ -1298,6 +1305,11 @@ EOF
|
||||||
slint)
|
slint)
|
||||||
echo "disk_size=\"50G\"" >> "${CONF_FILE}"
|
echo "disk_size=\"50G\"" >> "${CONF_FILE}"
|
||||||
;;
|
;;
|
||||||
|
slitaz)
|
||||||
|
echo "boot=\"legacy\"" >> "${CONF_FILE}"
|
||||||
|
echo "disk_size=\"4G\"" >> "${CONF_FILE}"
|
||||||
|
echo "ram=\"512M\"" >> "${CONF_FILE}"
|
||||||
|
;;
|
||||||
truenas-scale|truenas-core)
|
truenas-scale|truenas-core)
|
||||||
echo "boot=\"legacy\"" >> "${CONF_FILE}"
|
echo "boot=\"legacy\"" >> "${CONF_FILE}"
|
||||||
# the rest is non-functional
|
# the rest is non-functional
|
||||||
|
@ -2415,6 +2427,20 @@ function get_slint() {
|
||||||
echo "${URL}/${ISO}" "${HASH}"
|
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() {
|
function get_solus() {
|
||||||
local EDITION="${1:-}"
|
local EDITION="${1:-}"
|
||||||
local HASH=""
|
local HASH=""
|
||||||
|
|
Loading…
Reference in New Issue