index : archiso32 | |
Archlinux32 iso tools | gitolite user |
summaryrefslogtreecommitdiff |
author | Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> | 2012-02-03 11:13:37 -0300 |
---|---|---|
committer | Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> | 2012-02-22 21:18:07 -0300 |
commit | 27940c420f01f550f36c3aa25633b43a4f2a2069 (patch) | |
tree | 065be182f2ac2314d3b50120c60d847103f9f10c /archiso/install/archiso_pxe_http | |
parent | c593c2bd2418c865dc289f8fccd81a1631e9b191 (diff) |
-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: |