|
@@ -11,7 +11,11 @@ AUTHOR = "Thomas Hood"
|
|
|
HOMEPAGE = "http://packages.debian.org/resolvconf"
|
|
|
RDEPENDS_${PN} = "bash"
|
|
|
|
|
|
-SRC_URI = "${DEBIAN_MIRROR}/main/r/resolvconf/resolvconf_${PV}.tar.xz"
|
|
|
+SRC_URI = "${DEBIAN_MIRROR}/main/r/resolvconf/resolvconf_${PV}.tar.xz \
|
|
|
+ file://fix-path-for-busybox.patch \
|
|
|
+ file://99_resolvconf \
|
|
|
+ "
|
|
|
+
|
|
|
|
|
|
SRC_URI[md5sum] = "d78ce30ea068999cd3e0523300b27255"
|
|
|
SRC_URI[sha256sum] = "c9f40f7405b37399ddbf29ca4205b4911ee35cb9ffd9be7671faa2385b1fa573"
|
|
@@ -24,13 +28,13 @@ do_compile () {
|
|
|
|
|
|
do_install () {
|
|
|
install -d ${D}${sysconfdir}/default/volatiles
|
|
|
- echo "d root root 0755 ${localstatedir}/run/${BPN}/interface none" \
|
|
|
- > ${D}${sysconfdir}/default/volatiles/99_resolvconf
|
|
|
+ install -m 0644 ${WORKDIR}/99_resolvconf ${D}${sysconfdir}/default/volatiles
|
|
|
if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then
|
|
|
install -d ${D}${sysconfdir}/tmpfiles.d
|
|
|
echo "d /run/${BPN}/interface - - - -" \
|
|
|
> ${D}${sysconfdir}/tmpfiles.d/resolvconf.conf
|
|
|
fi
|
|
|
+ install -d ${D}${base_libdir}/${BPN}
|
|
|
install -d ${D}${sysconfdir}/${BPN}
|
|
|
ln -snf ${localstatedir}/run/${BPN} ${D}${sysconfdir}/${BPN}/run
|
|
|
install -d ${D}${sysconfdir} ${D}${base_sbindir}
|
|
@@ -38,6 +42,11 @@ do_install () {
|
|
|
cp -pPR etc/* ${D}${sysconfdir}/
|
|
|
chown -R root:root ${D}${sysconfdir}/
|
|
|
install -m 0755 bin/resolvconf ${D}${base_sbindir}/
|
|
|
+ install -m 0755 bin/list-records ${D}${base_libdir}/${BPN}
|
|
|
+ install -d ${D}/${sysconfdir}/network/if-up.d
|
|
|
+ install -m 0755 debian/resolvconf.000resolvconf.if-up ${D}/${sysconfdir}/network/if-up.d/000resolvconf
|
|
|
+ install -d ${D}/${sysconfdir}/network/if-down.d
|
|
|
+ install -m 0755 debian/resolvconf.resolvconf.if-down ${D}/${sysconfdir}/network/if-down.d/resolvconf
|
|
|
install -m 0644 README ${D}${docdir}/${P}/
|
|
|
install -m 0644 man/resolvconf.8 ${D}${mandir}/man8/
|
|
|
}
|
|
@@ -51,3 +60,5 @@ pkg_postinst_${PN} () {
|
|
|
fi
|
|
|
fi
|
|
|
}
|
|
|
+
|
|
|
+FILES_${PN} += "${base_libdir}/${BPN}"
|