mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 09:32:21 +00:00
38 lines
855 B
Text
38 lines
855 B
Text
# Template file for 'dsl'
|
|
OSNAME="dsl"
|
|
PRETTY="Damn Small Linux"
|
|
LOGO=""
|
|
ICON="dsl.svg"
|
|
ICON_ONLINE="https://distrowatch.com/images/yvzhuwbpy/damnsmall.png"
|
|
CATEGORY="Desktop, Old Computers, Live Medium"
|
|
BASEDOF="Antix"
|
|
HOMEPAGE="https://www.damnsmalllinux.org/"
|
|
DESCRIPTION="Goal of DSL is to pack as much usable desktop distribution into an image small enough to fit on a single CD"
|
|
CREDENTIALS="-"
|
|
GPG=""
|
|
RSS=""
|
|
DW=""
|
|
|
|
function releases_() {
|
|
echo 2024.rc7
|
|
}
|
|
|
|
function editions_() {
|
|
echo lz4 cdrom
|
|
}
|
|
|
|
function get_() {
|
|
local ISO=""
|
|
local HASH=""
|
|
local URL="https://www.damnsmalllinux.org/download"
|
|
case "$EDITION" in
|
|
lz4) ISO="dsl-${RELEASE}.lz4.iso";;
|
|
cdrom) ISO="dsl-${RELEASE}.iso";;
|
|
esac
|
|
HASH=$(web_pipe "${URL}/${ISO}.md5.txt" | cut -f1)
|
|
echo "${URL}/${ISO} ${HASH}"
|
|
}
|
|
|
|
function config_() {
|
|
echo "boot=\"legacy\"" >> "${CONF_FILE}"
|
|
}
|