diff options
| -rw-r--r-- | meta/recipes-connectivity/avahi/avahi_0.7.bb | 1 | ||||
| -rw-r--r-- | meta/recipes-connectivity/avahi/files/0001-Fix-opening-etc-resolv.conf-error.patch | 40 |
2 files changed, 41 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/avahi/avahi_0.7.bb b/meta/recipes-connectivity/avahi/avahi_0.7.bb index b695be9130..3d5f334a88 100644 --- a/meta/recipes-connectivity/avahi/avahi_0.7.bb +++ b/meta/recipes-connectivity/avahi/avahi_0.7.bb | |||
| @@ -3,6 +3,7 @@ require avahi.inc | |||
| 3 | SRC_URI += "file://00avahi-autoipd \ | 3 | SRC_URI += "file://00avahi-autoipd \ |
| 4 | file://99avahi-autoipd \ | 4 | file://99avahi-autoipd \ |
| 5 | file://initscript.patch \ | 5 | file://initscript.patch \ |
| 6 | file://0001-Fix-opening-etc-resolv.conf-error.patch \ | ||
| 6 | " | 7 | " |
| 7 | 8 | ||
| 8 | inherit update-rc.d systemd useradd | 9 | inherit update-rc.d systemd useradd |
diff --git a/meta/recipes-connectivity/avahi/files/0001-Fix-opening-etc-resolv.conf-error.patch b/meta/recipes-connectivity/avahi/files/0001-Fix-opening-etc-resolv.conf-error.patch new file mode 100644 index 0000000000..11e7e8a9bc --- /dev/null +++ b/meta/recipes-connectivity/avahi/files/0001-Fix-opening-etc-resolv.conf-error.patch | |||
| @@ -0,0 +1,40 @@ | |||
| 1 | From 78967814f5c37ed67f4cf64d70c9f76a03ee89bc Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Chen Qi <Qi.Chen@windriver.com> | ||
| 3 | Date: Wed, 20 Jun 2018 13:57:35 +0800 | ||
| 4 | Subject: [PATCH] Fix opening /etc/resolv.conf error | ||
| 5 | |||
| 6 | Fix to start avahi-daemon after systemd-resolved.service. This is because | ||
| 7 | /etc/resolv.conf is a link to /etc/resolv-conf.systemd which in turn is | ||
| 8 | a symlink to /run/systemd/resolve/resolv.conf. And /run/systemd/resolve/resolv.conf | ||
| 9 | is created by systemd-resolved.service by default in current OE's systemd | ||
| 10 | based systems. | ||
| 11 | |||
| 12 | This fixes errro like below. | ||
| 13 | |||
| 14 | Failed to open /etc/resolv.conf: Invalid argument | ||
| 15 | |||
| 16 | In fact, handling of /etc/resolv.conf is quite distro specific. So this patch | ||
| 17 | is marked as OE specific. | ||
| 18 | |||
| 19 | Upstream-Status: Inappropriate [OE Specific] | ||
| 20 | |||
| 21 | Signed-off-by: Chen Qi <Qi.Chen@windriver.com> | ||
| 22 | --- | ||
| 23 | avahi-daemon/avahi-daemon.service.in | 1 + | ||
| 24 | 1 file changed, 1 insertion(+) | ||
| 25 | |||
| 26 | diff --git a/avahi-daemon/avahi-daemon.service.in b/avahi-daemon/avahi-daemon.service.in | ||
| 27 | index 548c834..63e28e4 100644 | ||
| 28 | --- a/avahi-daemon/avahi-daemon.service.in | ||
| 29 | +++ b/avahi-daemon/avahi-daemon.service.in | ||
| 30 | @@ -18,6 +18,7 @@ | ||
| 31 | [Unit] | ||
| 32 | Description=Avahi mDNS/DNS-SD Stack | ||
| 33 | Requires=avahi-daemon.socket | ||
| 34 | +After=systemd-resolved.service | ||
| 35 | |||
| 36 | [Service] | ||
| 37 | Type=dbus | ||
| 38 | -- | ||
| 39 | 2.11.0 | ||
| 40 | |||
