blob: d9bc6d88e8f132e3b978340ddc00b8ada4d44d42 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
 | # vim: set ft=sh:
run_hook() {
    if [[ -n "${ip}" && -n "${archiso_nbd_srv}" ]]; then
        archiso_nbd_srv=$(eval echo ${archiso_nbd_srv})
        [[ -z "${archiso_nbd_name}" ]] && archiso_nbd_name="archiso"
        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"
    nbd-client ${archiso_nbd_srv} -N ${archiso_nbd_name} /dev/nbd0
    if [[ "${copytoram}" != "n" ]]; then
        copytoram="y"
    fi
    archisodevice=/dev/nbd0
    archiso_mount_handler ${newroot}
    msg ":: Disconnect NBD from ${archiso_nbd_srv} at /dev/nbd0"
    nbd-client -d /dev/nbd0
}
 |