diff options
author | Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> | 2010-03-17 10:43:11 -0300 |
---|---|---|
committer | Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> | 2010-03-17 11:12:46 -0300 |
commit | 830555f71a6ea4fcda93657e7a2220d753f26757 (patch) | |
tree | f852552991065beac6c2fb9dcdcb395ef2e01939 /archiso/install | |
parent | d875052f56f236ba2e8e6a7085ddb57258e1ead3 (diff) |
[archiso] Add nbd hook, to make posible boot archiso from PXE via a NBD.
nbd (network block device utilities) package is required. This package is in AUR
at this moment: http://aur.archlinux.org/packages.php?ID=9691
Also mkinitcpio-nfs-utils is required for ipconfig.
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
Diffstat (limited to 'archiso/install')
-rw-r--r-- | archiso/install/nbd | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/archiso/install/nbd b/archiso/install/nbd new file mode 100644 index 0000000..bff232b --- /dev/null +++ b/archiso/install/nbd @@ -0,0 +1,20 @@ +# vim: set ft=sh: + +install () +{ + MODULES="nbd $(checked_modules "/drivers/net/") " + + BINARIES="" + FILES="" + SCRIPT="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 +} |