diff --git a/actions/slackware b/actions/slackware index 818a27a..6e7d01c 100644 --- a/actions/slackware +++ b/actions/slackware @@ -18,3 +18,7 @@ function get_() { HASH=$(web_pipe "${URL}/${ISO}.md5" | cut -d' ' -f1) echo "${URL}/${ISO} ${HASH}" } + +function specific_tweaks() { + echo "boot=\"legacy\"" >> "${CONF_FILE}" +} diff --git a/actions/slax b/actions/slax index 616356c..b736b74 100644 --- a/actions/slax +++ b/actions/slax @@ -29,3 +29,7 @@ function get_() { HASH=$(web_pipe "${URL}/md5.txt" | grep '64bit-' | cut -d' ' -f1 | tail -n1) echo "${URL}/${ISO} ${HASH}" } + +function specific_tweaks() { + echo "boot=\"legacy\"" >> "${CONF_FILE}" +} diff --git a/actions/tails b/actions/tails index fc38c68..f50256c 100644 --- a/actions/tails +++ b/actions/tails @@ -19,3 +19,7 @@ function get_() { HASH=$(echo "${JSON}" | jq -r '.installations[0]."installation-paths"[]|select(.type=="iso")|."target-files"[0].sha256') echo "${URL} ${HASH}" } + +function specific_tweaks() { + echo "boot=\"legacy\"" >> "${CONF_FILE}" +} diff --git a/actions/tinycore b/actions/tinycore index ca310b8..ec4033e 100644 --- a/actions/tinycore +++ b/actions/tinycore @@ -27,3 +27,7 @@ function get_() { HASH=$(web_pipe "${URL}/${ISO}.md5.txt" | cut -d' ' -f1) echo "${URL}/${ISO} ${HASH}" } + +function specific_tweaks() { + echo "boot=\"legacy\"" >> "${CONF_FILE}" +} diff --git a/quickget b/quickget index 49ab2a5..e022595 100755 --- a/quickget +++ b/quickget @@ -596,8 +596,6 @@ EOF # OS specific tweaks case ${OS} in - dragonflybsd|haiku|openbsd|netbsd|slackware|slax|tails|tinycore) - echo "boot=\"legacy\"" >> "${CONF_FILE}";; esac if [ "${OS}" == "ubuntu" ] && [[ ${RELEASE} == *"daily"* ]]; then