manjaro-tools/initcpio/hooks/miso_pxe_http

60 lines
1.8 KiB
Text
Raw Permalink Normal View History

2015-05-08 15:47:11 +02:00
# vim: set ft=sh:
run_hook() {
if [[ -n "${ip}" && -n "${miso_http_srv}" ]]; then
# booting with http is always copy-to-ram, so set here to make sure
# addresses are flushed and interface is set down
copytoram="y"
2015-05-08 15:47:11 +02:00
miso_http_srv=$(eval echo ${miso_http_srv})
[[ -z "${miso_http_spc}" ]] && miso_http_spc="75%"
mount_handler="miso_pxe_http_mount_handler"
fi
}
# Fetch a file with CURL
#
# $1 URL
# $2 Destination directory inside httpspace/${misobasedir}
_curl_get() {
local _url="${1}"
local _dst="${2}"
msg ":: Downloading '${_url}'"
2016-10-11 00:16:36 +02:00
if ! curl -L -f -o "/run/miso/httpspace/${misobasedir}${_dst}/${_url##*/}" --create-dirs "${_url}"; then
2015-05-08 15:47:11 +02:00
echo "ERROR: Downloading '${_url}'"
echo " Falling back to interactive prompt"
echo " You can try to fix the problem manually, log out when you are finished"
launch_interactive_shell
fi
}
miso_pxe_http_mount_handler () {
newroot="${1}"
2016-10-11 00:16:36 +02:00
msg ":: Mounting /run/miso/httpspace (tmpfs) filesystem, size='${miso_http_spc}'"
mkdir -p "/run/miso/httpspace"
mount -t tmpfs -o size="${miso_http_spc}",mode=0755 httpspace "/run/miso/httpspace"
2015-05-08 15:47:11 +02:00
local _src=${miso_http_srv}${misobasedir}/${arch}
2018-04-19 23:24:19 +02:00
for sfs in livefs mhwdfs desktopfs rootfs; do
if [[ ! -z "$( curl -L -s --head "${_src}/${sfs}.sfs" | grep "OK" )" ]]; then
_curl_get "${_src}/${sfs}.sfs" "/${arch}"
if [[ "${checksum}" == "y" ]]; then
_curl_get "${_src}/${sfs}.md5" "/${arch}"
fi
if [[ "${verify}" == "y" ]]; then
_curl_get "${_src}/${sfs}.sfs.sig" "/${arch}"
fi
fi
done
2016-10-11 00:16:36 +02:00
mkdir -p "/run/miso/bootmnt"
mount -o bind /run/miso/httpspace /run/miso/bootmnt
2015-05-08 15:47:11 +02:00
miso_mount_handler ${newroot}
}