summaryrefslogtreecommitdiff
path: root/parabolaiso/initcpio/install/parabolaiso_pxe_nfs
blob: efd609de34df549fe7cf5c0523f922c25c7afce1 (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 "nfs"

    add_runscript

    add_binary /usr/lib/initcpio/nfsmount /bin/nfsmount
}

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