9ca157c140
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
19 lines
253 B
Bash
19 lines
253 B
Bash
# 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
|
|
}
|