ISO/archiso/install/archiso_pxe_common
Gerardo Exequiel Pozzi 8bd067461d [archiso] Add DNS resolver support to archiso_pxe_common
[ramfs /]# cat /etc/resolv.conf
nameserver 192.168.0.77
[ramfs /]# curl -O http://releng.archlinux.org/pxeboot/README
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100  1129  100  1129    0     0   2191      0 --:--:-- --:--:-- --:--:--  4589
[ramfs /]#

Do not "add_binary /lib/libnss_dns.so.2", because will add libnss_dns-VERSION.so.2 as libnss_dns.so.2
Is not an issue will work (nobody links directly to VERSION), but is not nice.

Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2011-11-28 12:28:03 -03:00

34 lines
1.1 KiB
Bash

# 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 here for now, but this should go to "install/base".
add_dir /tmp
add_dir /etc
add_binary "/lib/initcpio/ipconfig" "/bin/ipconfig"
# Add hosts support files+dns
add_symlink $(readlink /lib/libnss_files.so.2) /lib/libnss_files.so.2
add_binary $(readlink -f /lib/libnss_files.so.2)
add_symlink $(readlink /lib/libnss_dns.so.2) /lib/libnss_dns.so.2
add_binary $(readlink -f /lib/libnss_dns.so.2)
echo "hosts: files dns" > $BUILDROOT/etc/nsswitch.conf
}
help ()
{
cat<<HELPEOF
This hook loads the necessary modules for boot via PXE.
HELPEOF
}