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_common | |
parent | f44ef7d798ff0b70ac0d40bf1ebb5ba53b9c5513 (diff) |
-rw-r--r-- | archiso/install/archiso_pxe_common | 19 |
diff --git a/archiso/install/archiso_pxe_common b/archiso/install/archiso_pxe_common index ce54f7a..b37e5a1 100644 --- a/archiso/install/archiso_pxe_common +++ b/archiso/install/archiso_pxe_common @@ -1,33 +1,30 @@ -# vim: set ft=sh: +#!/bin/bash -build () -{ +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 here for now, but this should go to "install/base". - add_dir /tmp - add_dir /etc - add_binary "/lib/initcpio/ipconfig" "/bin/ipconfig" + add_binary /lib/initcpio/ipconfig /bin/ipconfig # Add hosts support files+dns add_symlink /lib/libnss_files.so.2 $(readlink /lib/libnss_files.so.2) add_binary $(readlink -f /lib/libnss_files.so.2) add_symlink /lib/libnss_dns.so.2 $(readlink /lib/libnss_dns.so.2) add_binary $(readlink -f /lib/libnss_dns.so.2) + + add_dir /etc echo "hosts: files dns" > $BUILDROOT/etc/nsswitch.conf } -help () -{ +help() { cat<<HELPEOF This hook loads the necessary modules for boot via PXE. HELPEOF } + +# vim: set ft=sh ts=4 sw=4 et: |