2020-07-11 18:13:20 +02:00
|
|
|
#!/bin/ash
|
2020-05-30 00:01:28 +02:00
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
2011-11-28 16:28:03 +01:00
|
|
|
|
|
|
|
run_hook() {
|
2020-07-16 14:49:23 +02:00
|
|
|
# shellcheck disable=SC2154
|
|
|
|
# defined via initcpio's parse_cmdline()
|
2020-07-11 18:13:20 +02:00
|
|
|
if [ -n "${ip}" ] && [ -n "${archiso_http_srv}" ]; then
|
2011-12-02 04:44:02 +01:00
|
|
|
|
2016-06-30 10:09:26 +02:00
|
|
|
# booting with http is always copy-to-ram, so set here to make sure
|
|
|
|
# addresses are flushed and interface is set down
|
2020-07-11 18:13:20 +02:00
|
|
|
export copytoram="y"
|
2016-06-30 10:09:26 +02:00
|
|
|
|
2020-07-11 18:13:20 +02:00
|
|
|
archiso_http_srv=$(eval echo "${archiso_http_srv}")
|
|
|
|
[ -z "${archiso_http_spc}" ] && archiso_http_spc="75%"
|
2011-12-02 04:44:02 +01:00
|
|
|
|
2020-07-11 18:13:20 +02:00
|
|
|
export mount_handler="archiso_pxe_http_mount_handler"
|
2011-11-28 16:28:03 +01:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Fetch a file with CURL
|
|
|
|
#
|
|
|
|
# $1 URL
|
2011-12-03 22:20:43 +01:00
|
|
|
# $2 Destination directory inside httpspace/${archisobasedir}
|
2011-11-28 16:28:03 +01:00
|
|
|
_curl_get() {
|
|
|
|
local _url="${1}"
|
|
|
|
local _dst="${2}"
|
|
|
|
|
|
|
|
msg ":: Downloading '${_url}'"
|
2020-07-16 14:49:23 +02:00
|
|
|
# shellcheck disable=SC2154
|
|
|
|
# defined via initcpio's parse_cmdline()
|
2012-08-01 00:52:09 +02:00
|
|
|
if ! curl -L -f -o "/run/archiso/httpspace/${archisobasedir}${_dst}/${_url##*/}" --create-dirs "${_url}"; then
|
2011-11-28 16:28:03 +01: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
|
|
|
|
}
|
|
|
|
|
2011-12-03 22:08:57 +01:00
|
|
|
archiso_pxe_http_mount_handler () {
|
2011-11-28 16:28:03 +01:00
|
|
|
newroot="${1}"
|
|
|
|
|
2011-12-03 22:20:43 +01:00
|
|
|
msg ":: Mounting /run/archiso/httpspace (tmpfs) filesystem, size='${archiso_http_spc}'"
|
|
|
|
mkdir -p "/run/archiso/httpspace"
|
|
|
|
mount -t tmpfs -o size="${archiso_http_spc}",mode=0755 httpspace "/run/archiso/httpspace"
|
2011-11-28 16:28:03 +01:00
|
|
|
|
2020-07-16 14:49:23 +02:00
|
|
|
# shellcheck disable=SC2154
|
|
|
|
# defined via initcpio's parse_cmdline()
|
2014-06-28 05:35:50 +02:00
|
|
|
_curl_get "${archiso_http_srv}${archisobasedir}/${arch}/airootfs.sfs" "/${arch}"
|
2011-11-28 16:28:03 +01:00
|
|
|
|
2020-07-16 14:49:23 +02:00
|
|
|
# shellcheck disable=SC2154
|
|
|
|
# defined via initcpio's parse_cmdline()
|
2020-07-11 18:13:20 +02:00
|
|
|
if [ "${checksum}" = "y" ]; then
|
2017-10-16 09:12:50 +02:00
|
|
|
_curl_get "${archiso_http_srv}${archisobasedir}/${arch}/airootfs.sha512" "/${arch}"
|
2011-12-03 21:45:45 +01:00
|
|
|
fi
|
2020-07-16 14:49:23 +02:00
|
|
|
# shellcheck disable=SC2154
|
|
|
|
# defined via initcpio's parse_cmdline()
|
2020-07-11 18:13:20 +02:00
|
|
|
if [ "${verify}" = "y" ]; then
|
2016-02-13 01:08:49 +01:00
|
|
|
_curl_get "${archiso_http_srv}${archisobasedir}/${arch}/airootfs.sfs.sig" "/${arch}"
|
|
|
|
fi
|
2011-11-28 16:28:03 +01:00
|
|
|
|
2011-12-03 21:45:45 +01:00
|
|
|
mkdir -p "/run/archiso/bootmnt"
|
2011-12-03 22:20:43 +01:00
|
|
|
mount -o bind /run/archiso/httpspace /run/archiso/bootmnt
|
2011-11-28 16:28:03 +01:00
|
|
|
|
2020-07-11 18:13:20 +02:00
|
|
|
archiso_mount_handler "${newroot}"
|
2011-11-28 16:28:03 +01:00
|
|
|
}
|
2020-07-11 18:13:20 +02:00
|
|
|
|
|
|
|
# vim: set ft=sh:
|