index : archiso32 | |
Archlinux32 iso tools | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | archiso/install/archiso_pxe_nbd | 20 |
diff --git a/archiso/install/archiso_pxe_nbd b/archiso/install/archiso_pxe_nbd new file mode 100644 index 0000000..4bebd15 --- /dev/null +++ b/archiso/install/archiso_pxe_nbd @@ -0,0 +1,20 @@ +# vim: set ft=sh: + +install () +{ + MODULES="nbd $(checked_modules "/drivers/net/") " + + BINARIES="" + FILES="" + SCRIPT="archiso_pxe_nbd" + + add_binary "/usr/sbin/nbd-client" "/bin/nbd-client" + add_binary "/lib/initcpio/ipconfig" "/bin/ipconfig" +} + +help () +{ +cat<<HELPEOF + This hook loads the necessary modules for boot via PXE and NBD. +HELPEOF +} |