Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/install/archiso_pxe_nbd
blob: 2d19f0e94c742e4555b491749371cb28d310d91d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env bash
#
# SPDX-License-Identifier: GPL-3.0-or-later

build() {
    add_module "nbd"

    add_runscript

    add_binary nbd-client
}

help() {
    cat <<HELPEOF
  This hook loads the necessary modules for boot via PXE and NBD.
HELPEOF
}