summaryrefslogtreecommitdiff
path: root/archiso/install/archiso_pxe_common
diff options
context:
space:
mode:
authorGerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>2011-11-28 12:28:03 -0300
committerGerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>2011-11-28 12:28:03 -0300
commit1edaf15cef3420484d1dfbf08de43fe8d800ab64 (patch)
treeeeecbe49bb2324730881d1f67d924d70777da507 /archiso/install/archiso_pxe_common
parent40965461a4a730881a153432e66521734b1b965c (diff)
[archiso] Split archiso_pxe_nbd in two hooks.
One hook only setup the network device (archiso_pxe_common) the other setup the NBD client (archiso_pxe_nbd). New bootparam: archiso_pxe_srv=IP Allow to set an IP different from the PXE server. Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
Diffstat (limited to 'archiso/install/archiso_pxe_common')
-rw-r--r--archiso/install/archiso_pxe_common24
1 files changed, 24 insertions, 0 deletions
diff --git a/archiso/install/archiso_pxe_common b/archiso/install/archiso_pxe_common
new file mode 100644
index 0000000..ebf908e
--- /dev/null
+++ b/archiso/install/archiso_pxe_common
@@ -0,0 +1,24 @@
+# vim: set ft=sh:
+
+build ()
+{
+ 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_common"
+
+ add_dir /tmp
+
+ add_binary "/lib/initcpio/ipconfig" "/bin/ipconfig"
+}
+
+help ()
+{
+cat<<HELPEOF
+ This hook loads the necessary modules for boot via PXE.
+HELPEOF
+}