summaryrefslogtreecommitdiff
path: root/archiso/install/archiso_pxe_nbd
diff options
context:
space:
mode:
Diffstat (limited to 'archiso/install/archiso_pxe_nbd')
-rw-r--r--archiso/install/archiso_pxe_nbd24
1 files changed, 0 insertions, 24 deletions
diff --git a/archiso/install/archiso_pxe_nbd b/archiso/install/archiso_pxe_nbd
deleted file mode 100644
index c8ba1a4..0000000
--- a/archiso/install/archiso_pxe_nbd
+++ /dev/null
@@ -1,24 +0,0 @@
-# vim: set ft=sh:
-
-build ()
-{
- MODULES="nbd"
- MODULES="${MODULES} $(comm -2 -3 <(checked_modules "/drivers/net/" | sort) \
- <(find $MODULEDIR/kernel/drivers/net/{irda,phy,wimax,wireless} \
- -name '*.ko*' \
- -exec bash -c 'printf "%s\n" "${@%%.ko*}" | sed "s@.*/@@;s@-@_@" | sort' _ {} +) \
- | grep -v -e 'ppp_' -e 'plip' -e 'pppoe')"
- 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
-}