diff options
Diffstat (limited to 'archiso/install/archiso_pxe_nbd')
-rw-r--r-- | archiso/install/archiso_pxe_nbd | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/archiso/install/archiso_pxe_nbd b/archiso/install/archiso_pxe_nbd index 747e5b9..0784e2c 100644 --- a/archiso/install/archiso_pxe_nbd +++ b/archiso/install/archiso_pxe_nbd @@ -1,20 +1,18 @@ -# vim: set ft=sh: +#!/bin/bash -build () -{ +build() { MODULES="nbd" - BINARIES="" - FILES="" SCRIPT="archiso_pxe_nbd" add_binary nbd-client - add_file "/lib/initcpio/archiso_pxe_nbd" "/archiso_pxe_nbd" + add_file /lib/initcpio/archiso_pxe_nbd /archiso_pxe_nbd } -help () -{ +help() { cat<<HELPEOF This hook loads the necessary modules for boot via PXE and NBD. HELPEOF } + +# vim: set ft=sh ts=4 sw=4 et: |