[oe] [PATCH] Install list-records with resolvconf package

Jate Sujjavanich jatedev at gmail.com
Mon Jun 23 14:16:42 UTC 2014


The resolvconf script uses /lib/resolvconf/list-records, but the recipe
does not install it. This causes an error when /etc/resolvconf/update.d
runs.

Signed-off-by: Jate Sujjavanich <jatedev at gmail.com>
---
 .../resolvconf/resolvconf_1.75.bb                  |    6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/meta/recipes-connectivity/resolvconf/resolvconf_1.75.bb b/meta/recipes-connectivity/resolvconf/resolvconf_1.75.bb
index 7310c83..77eac7a 100644
--- a/meta/recipes-connectivity/resolvconf/resolvconf_1.75.bb
+++ b/meta/recipes-connectivity/resolvconf/resolvconf_1.75.bb
@@ -40,8 +40,14 @@ do_install () {
 	install -m 0755 bin/resolvconf ${D}${base_sbindir}/
 	install -m 0644 README ${D}${docdir}/${P}/
 	install -m 0644 man/resolvconf.8 ${D}${mandir}/man8/
+	
+	# resolvconf requires /lib/resolvconf/list-records
+	install -d ${D}${base_libdir}/${BPN}
+	install -m 0755 ${S}/bin/list-records ${D}${base_libdir}/${BPN}
 }
 
+FILES_${PN} += "/lib/resolvconf/"
+
 pkg_postinst_${PN} () {
 	if [ -z "$D" ]; then
 		if command -v systemd-tmpfiles >/dev/null; then
-- 
1.7.9.5




More information about the Openembedded-devel mailing list