summaryrefslogtreecommitdiff
path: root/archiso/install/archiso_pxe_nfs
diff options
context:
space:
mode:
authorNicolás Reynolds <apoyosis@correo.inta.gob.ar>2012-09-13 22:35:30 -0300
committerNicolás Reynolds <apoyosis@correo.inta.gob.ar>2012-09-13 22:35:30 -0300
commit4b38c919cbb133c35a06b330e8de9f305c5b4792 (patch)
tree0f995b2f9a80bbe1975bd33e89cb67609c46d144 /archiso/install/archiso_pxe_nfs
parentaaddf796dcaa9c62859c386d81abc4bfb9e02eec (diff)
parent83cebf9e43fb3734c003ae358c4d308728dca7e4 (diff)
Merge branch 'master' of gparabola:archiso
Conflicts: README archiso/Makefile archiso/hooks/archiso archiso/hooks/archiso_loop_mnt archiso/hooks/archiso_pxe_nbd archiso/install/archiso archiso/install/archiso_loop_mnt archiso/install/archiso_pxe_nbd archiso/mkarchiso archiso/testiso configs/baseline/build.sh configs/releng/build.sh configs/releng/packages.i686 configs/releng/packages.x86_64 configs/releng/root-image/etc/hosts configs/releng/root-image/etc/issue configs/releng/root-image/etc/rc.conf configs/releng/syslinux.dual/archiso_pxe32.cfg configs/releng/syslinux.dual/archiso_pxe64.cfg configs/releng/syslinux/archiso_head.cfg configs/releng/syslinux/archiso_pxe.cfg configs/releng/syslinux/archiso_sys.cfg
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: