index : archiso32 | |
Archlinux32 iso tools | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | archiso/install/archiso_pxe_http | 13 |
diff --git a/archiso/install/archiso_pxe_http b/archiso/install/archiso_pxe_http index 38a8ee5..9e2ff65 100644 --- a/archiso/install/archiso_pxe_http +++ b/archiso/install/archiso_pxe_http @@ -1,18 +1,15 @@ -# vim: set ft=sh: +#!/bin/bash -build () -{ - MODULES="" - BINARIES="" - FILES="" +build() { SCRIPT="archiso_pxe_http" add_binary curl } -help () -{ +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: |