summaryrefslogtreecommitdiff
path: root/archiso/install/archiso_pxe_http
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_http
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_http')
-rw-r--r--archiso/install/archiso_pxe_http15
1 files changed, 15 insertions, 0 deletions
diff --git a/archiso/install/archiso_pxe_http b/archiso/install/archiso_pxe_http
new file mode 100644
index 0000000..9e2ff65
--- /dev/null
+++ b/archiso/install/archiso_pxe_http
@@ -0,0 +1,15 @@
+#!/bin/bash
+
+build() {
+ SCRIPT="archiso_pxe_http"
+
+ add_binary curl
+}
+
+help() {
+cat<<HELPEOF
+ This hook loads the necessary modules for boot via PXE and HTTP.
+HELPEOF
+}
+
+# vim: set ft=sh ts=4 sw=4 et: