X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=debian%2Fpatches%2F29_support_dns_in_initramfs.patch;fp=debian%2Fpatches%2F29_support_dns_in_initramfs.patch;h=0000000000000000000000000000000000000000;hb=26c670d1211c57b5b9c0317a7506f4f25765b238;hp=f481eea5a24bab507c2e9c14e2385cafe2aed731;hpb=14f658f90367f29d20e4fed7ad3a228994057e58;p=live-boot-grml.git diff --git a/debian/patches/29_support_dns_in_initramfs.patch b/debian/patches/29_support_dns_in_initramfs.patch deleted file mode 100644 index f481eea..0000000 --- a/debian/patches/29_support_dns_in_initramfs.patch +++ /dev/null @@ -1,55 +0,0 @@ -commit 10caf0b2db3fc04fae24ca896cf21f6aed12bbbc -Author: Christian Hofstaedtler -Date: Fri Mar 25 23:02:38 2011 +0100 - - support DNS in boot environment - - Thanks to Ulrich Dangel for discovering this. [Closes: issue848] - ---- a/backend/initramfs-tools/live.hook -+++ b/backend/initramfs-tools/live.hook -@@ -228,23 +228,26 @@ - - # Some experimental stuff - --case "${LIVE_DNS}" in -- true) -- [ "${QUIET}" ] || echo -n " dns" -- -- # /lib/libnss_dns.so.*:a DNS -- # /lib/libnss_files.so.*: /etc/hosts and /etc/passwd -- # /lib/libnss_compat.so.*: /etc/passwd -- -- for _SHLIB in $(find /lib -name 'libnss_dns.so.*') -- do -- copy_exec "${_SHLIB}" -- done -- -- # might be needed if /etc/hosts is used -- #mkdir -p "${DESTDIR}/etc" -- #cp -p /etc/nsswitch.conf "${DESTDIR}/etc" -- ;; --esac -+[ "${QUIET}" ] || echo -n " dns" -+ -+# /lib/libnss_dns.so.*:a DNS -+# /lib/libnss_files.so.*: /etc/hosts and /etc/passwd -+# /lib/libnss_compat.so.*: /etc/passwd -+ -+for _SHLIB in $(find /lib -name 'libnss_dns.so.*') -+do -+ copy_exec "${_SHLIB}" -+done -+ -+# might be needed if /etc/hosts is used -+#mkdir -p "${DESTDIR}/etc" -+#cp -p /etc/nsswitch.conf "${DESTDIR}/etc" -+ -+# vlan support -+if [ -x /sbin/vconfig ] -+then -+ copy_exec /sbin/vconfig -+ manual_add_modules 8021q -+fi - - [ "${QUIET}" ] || echo .