index : mkinitcpio-archiso32 | |
Archlinux32 initcpio scripts used by archiso | 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 | d4cb94d662c5ff515ec9fa9920be13f841632869 (patch) | |
tree | cf142c8e2eeafec68de898c1f71a41a1f1bc83a7 /archiso/install/archiso_pxe_nbd | |
parent | f44ef7d798ff0b70ac0d40bf1ebb5ba53b9c5513 (diff) |
-rw-r--r-- | archiso/install/archiso_pxe_nbd | 14 |
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: |