1edaf15cef
One hook only setup the network device (archiso_pxe_common) the other setup the NBD client (archiso_pxe_nbd). New bootparam: archiso_pxe_srv=IP Allow to set an IP different from the PXE server. Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
45 lines
1.4 KiB
Bash
45 lines
1.4 KiB
Bash
# vim: set ft=sh:
|
|
|
|
run_hook() {
|
|
if [[ -n "${ip}" ]]; then
|
|
[[ -z "${archiso_nbd_name}" ]] && archiso_nbd_name="archiso"
|
|
[[ -z "${archiso_nbd_srv}" ]] && archiso_nbd_srv="${pxeserver}"
|
|
|
|
mount_handler="archiso_pxe_nbd_mount_handler"
|
|
fi
|
|
}
|
|
|
|
archiso_pxe_nbd_mount_handler () {
|
|
newroot="${1}"
|
|
|
|
# Module autoloading like with loop devices does not work, doing manually...
|
|
modprobe nbd 2> /dev/null
|
|
msg ":: Waiting for boot device..."
|
|
while ! poll_device /dev/nbd0 30; do
|
|
echo "ERROR: boot device didn't show up after 30 seconds..."
|
|
echo " Falling back to interactive prompt"
|
|
echo " You can try to fix the problem manually, log out when you are finished"
|
|
launch_interactive_shell
|
|
done
|
|
|
|
msg ":: Setup NBD from ${archiso_nbd_srv} at /dev/nbd0"
|
|
if [[ "${copytoram}" = "y" ]]; then
|
|
nbd-client ${archiso_nbd_srv} -N ${archiso_nbd_name} /dev/nbd0
|
|
else
|
|
nbd-client ${archiso_nbd_srv} -N ${archiso_nbd_name} /dev/nbd0 -persist
|
|
fi
|
|
|
|
archisodevice=/dev/nbd0
|
|
|
|
archiso_mount_handler ${newroot}
|
|
|
|
if [[ "${copytoram}" = "y" ]]; then
|
|
msg ":: Disconnect NBD from ${archiso_nbd_srv} at /dev/nbd0"
|
|
nbd-client -d /dev/nbd0
|
|
else
|
|
mkdir -p /run/archiso
|
|
pidof nbd-client > /run/archiso/nbd_client.pid
|
|
cp /archiso_pxe_nbd ${newroot}/etc/rc.d/functions.d/
|
|
fi
|
|
}
|