Can you add following function to /usr/share/initramfs-
tools/scripts/functions:

```
log_flags() {
    for device in /sys/class/net/*; do
        echo "*** flags for $device";
        if [ -f "${device}/flags" ]; then
            cat "${device}/flags";
        fi;
    done
}
```

Please call this function in configure_networking at several places:
* at the beginning of configure_networking
* before the _update_ip_param call
* after the "wait_for_udev 10" call
* after "for ROUNDTTT in 30 60 90 120; do" (so at the beginning of the loop)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2065037

Title:
  dhcpcd is called before interfaces have carrier causing a 29 seconds
  boot delay

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/2065037/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to