mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
32 lines
1.2 KiB
Text
32 lines
1.2 KiB
Text
netbsd
|
|
|
|
netbsd 10.1: https://cdn.netbsd.org/pub/NetBSD/NetBSD-10.1/images/NetBSD-10.1-amd64.iso
|
|
netbsd 10.0: https://cdn.netbsd.org/pub/NetBSD/NetBSD-10.0/images/NetBSD-10.0-amd64.iso
|
|
netbsd 9.4: https://cdn.netbsd.org/pub/NetBSD/NetBSD-9.4/images/NetBSD-9.4-amd64.iso
|
|
netbsd 9.3: https://cdn.netbsd.org/pub/NetBSD/NetBSD-9.3/images/NetBSD-9.3-amd64.iso
|
|
|
|
# Template file for 'netbsd'
|
|
OSNAME="netbsd"
|
|
PRETTY="NetBSD"
|
|
BASEDOF="-"
|
|
DESCRIPTION="Free, fast, secure, and highly portable Unix-like Open Source operating system. It is available for a wide range of platforms, from large-scale servers and powerful desktop systems to handheld and embedded devices"
|
|
HOMEPAGE="https://www.netbsd.org"
|
|
CREDENTIALS="-"
|
|
GUEST="netbsd"
|
|
|
|
RELEASES="9.4 9.3 10.1 10.0"
|
|
|
|
|
|
function get_() {
|
|
local HASH=""
|
|
local ISO="NetBSD-${RELEASE}-amd64.iso"
|
|
local URL="https://cdn.netbsd.org/pub/NetBSD/NetBSD-${RELEASE}/images"
|
|
HASH=$(web_pipe "${URL}/MD5" | grep "${ISO}" | cut -d' ' -f4)
|
|
echo "${URL}/${ISO} ${HASH}"
|
|
}
|
|
|
|
function specific_tweaks() {
|
|
echo "boot=\"legacy\"" >> "${CONF_FILE}"
|
|
}
|
|
|
|
|