summaryrefslogtreecommitdiff
path: root/archiso/install/archiso_pxe_nfs
diff options
context:
space:
mode:
Diffstat (limited to 'archiso/install/archiso_pxe_nfs')
-rw-r--r--archiso/install/archiso_pxe_nfs16
1 files changed, 16 insertions, 0 deletions
diff --git a/archiso/install/archiso_pxe_nfs b/archiso/install/archiso_pxe_nfs
new file mode 100644
index 0000000..f7b6f5d
--- /dev/null
+++ b/archiso/install/archiso_pxe_nfs
@@ -0,0 +1,16 @@
+#!/bin/bash
+
+build() {
+ MODULES="nfs"
+ SCRIPT="archiso_pxe_nfs"
+
+ add_binary /lib/initcpio/nfsmount /bin/nfsmount
+}
+
+help() {
+ cat <<HELPEOF
+ This hook loads the necessary modules for boot via PXE and NFS.
+HELPEOF
+}
+
+# vim: set ft=sh ts=4 sw=4 et: