diff options
Diffstat (limited to 'archiso/install/archiso_pxe_http')
-rw-r--r-- | archiso/install/archiso_pxe_http | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/archiso/install/archiso_pxe_http b/archiso/install/archiso_pxe_http new file mode 100644 index 0000000..9731732 --- /dev/null +++ b/archiso/install/archiso_pxe_http @@ -0,0 +1,18 @@ +# vim: set ft=sh: + +build () +{ + MODULES="" + BINARIES="" + FILES="" + SCRIPT="archiso_pxe_http" + + add_binary "/usr/bin/curl" +} + +help () +{ +cat<<HELPEOF + This hook loads the necessary modules for boot via PXE and HTTP/FTP with curl. +HELPEOF +} |