meta-netboot: generate appropriate resolv.conf from /proc/net/pnp 79/5879/5
authorStephane Desneux <stephane.desneux@iot.bzh>
Tue, 14 Jun 2016 17:04:44 +0000 (17:04 +0000)
committerGerrit Code Review <gerrit@172.30.200.200>
Sun, 19 Jun 2016 19:31:25 +0000 (19:31 +0000)
Change-Id: I5867a08162b1d9405c769c25d066c2d1e813bca8
Signed-off-by: Stephane Desneux <stephane.desneux@iot.bzh>
meta-netboot/recipes-core/initramfs-netboot/files/init.sh

index 81c2c79..d31988f 100644 (file)
@@ -122,13 +122,16 @@ log_info "Switching to new rootfs"
 mkdir -p run/initramfs
 pivot_root . run/initramfs || bail_out "pivot_root failed."
 
-# workaround for connman (avoid bringing down the network interface used for booting)
+# workaround for connman (avoid bringing down the network interface used for booting, disable DNS proxy)
 if [[ -f /lib/systemd/system/connman.service ]]; then
        log_info "Adjusting Connman configuration"
        iface=$(ip -o link show up | tr ':' ' ' | awk '{print $2}' | grep -v -e "^lo$" | head -1)
-       sed -i "s|connmand -n\$|connmand -n -I $iface|g" /lib/systemd/system/connman.service
+       sed -i "s|connmand -n\$|connmand -r -n -I $iface|g" /lib/systemd/system/connman.service
 fi
 
+# also use /proc/net/pnp to generate /etc/resolv.conf
+grep -v bootserver /proc/net/pnp | sed 's/^domain/search/g' >/etc/resolv.conf
+
 # finally, run systemd
 check_debug "Debug point 2. Exit to continue initrd script (run systemd)."