diff options
Diffstat (limited to 'meta/recipes-connectivity/resolvconf/resolvconf_1.75.bb')
| -rw-r--r-- | meta/recipes-connectivity/resolvconf/resolvconf_1.75.bb | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/meta/recipes-connectivity/resolvconf/resolvconf_1.75.bb b/meta/recipes-connectivity/resolvconf/resolvconf_1.75.bb index 7310c837e9..ee171c065e 100644 --- a/meta/recipes-connectivity/resolvconf/resolvconf_1.75.bb +++ b/meta/recipes-connectivity/resolvconf/resolvconf_1.75.bb | |||
| @@ -11,7 +11,11 @@ AUTHOR = "Thomas Hood" | |||
| 11 | HOMEPAGE = "http://packages.debian.org/resolvconf" | 11 | HOMEPAGE = "http://packages.debian.org/resolvconf" |
| 12 | RDEPENDS_${PN} = "bash" | 12 | RDEPENDS_${PN} = "bash" |
| 13 | 13 | ||
| 14 | SRC_URI = "${DEBIAN_MIRROR}/main/r/resolvconf/resolvconf_${PV}.tar.xz" | 14 | SRC_URI = "${DEBIAN_MIRROR}/main/r/resolvconf/resolvconf_${PV}.tar.xz \ |
| 15 | file://fix-path-for-busybox.patch \ | ||
| 16 | file://99_resolvconf \ | ||
| 17 | " | ||
| 18 | |||
| 15 | 19 | ||
| 16 | SRC_URI[md5sum] = "4b8bc86a3cf070e3fd0e9aff7eaaba56" | 20 | SRC_URI[md5sum] = "4b8bc86a3cf070e3fd0e9aff7eaaba56" |
| 17 | SRC_URI[sha256sum] = "16167f37a77ef4bc4596dcbefece269b6a10d10fa448594ec55ed3303193086e" | 21 | SRC_URI[sha256sum] = "16167f37a77ef4bc4596dcbefece269b6a10d10fa448594ec55ed3303193086e" |
| @@ -24,13 +28,13 @@ do_compile () { | |||
| 24 | 28 | ||
| 25 | do_install () { | 29 | do_install () { |
| 26 | install -d ${D}${sysconfdir}/default/volatiles | 30 | install -d ${D}${sysconfdir}/default/volatiles |
| 27 | echo "d root root 0755 ${localstatedir}/run/${BPN}/interface none" \ | 31 | install -m 0644 ${WORKDIR}/99_resolvconf ${D}${sysconfdir}/default/volatiles |
| 28 | > ${D}${sysconfdir}/default/volatiles/99_resolvconf | ||
| 29 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | 32 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then |
| 30 | install -d ${D}${sysconfdir}/tmpfiles.d | 33 | install -d ${D}${sysconfdir}/tmpfiles.d |
| 31 | echo "d /run/${BPN}/interface - - - -" \ | 34 | echo "d /run/${BPN}/interface - - - -" \ |
| 32 | > ${D}${sysconfdir}/tmpfiles.d/resolvconf.conf | 35 | > ${D}${sysconfdir}/tmpfiles.d/resolvconf.conf |
| 33 | fi | 36 | fi |
| 37 | install -d ${D}${base_libdir}/${BPN} | ||
| 34 | install -d ${D}${sysconfdir}/${BPN} | 38 | install -d ${D}${sysconfdir}/${BPN} |
| 35 | ln -snf ${localstatedir}/run/${BPN} ${D}${sysconfdir}/${BPN}/run | 39 | ln -snf ${localstatedir}/run/${BPN} ${D}${sysconfdir}/${BPN}/run |
| 36 | install -d ${D}${sysconfdir} ${D}${base_sbindir} | 40 | install -d ${D}${sysconfdir} ${D}${base_sbindir} |
| @@ -38,6 +42,11 @@ do_install () { | |||
| 38 | cp -pPR etc/* ${D}${sysconfdir}/ | 42 | cp -pPR etc/* ${D}${sysconfdir}/ |
| 39 | chown -R root:root ${D}${sysconfdir}/ | 43 | chown -R root:root ${D}${sysconfdir}/ |
| 40 | install -m 0755 bin/resolvconf ${D}${base_sbindir}/ | 44 | install -m 0755 bin/resolvconf ${D}${base_sbindir}/ |
| 45 | install -m 0755 bin/list-records ${D}${base_libdir}/${BPN} | ||
| 46 | install -d ${D}/${sysconfdir}/network/if-up.d | ||
| 47 | install -m 0755 debian/resolvconf.000resolvconf.if-up ${D}/${sysconfdir}/network/if-up.d/000resolvconf | ||
| 48 | install -d ${D}/${sysconfdir}/network/if-down.d | ||
| 49 | install -m 0755 debian/resolvconf.resolvconf.if-down ${D}/${sysconfdir}/network/if-down.d/resolvconf | ||
| 41 | install -m 0644 README ${D}${docdir}/${P}/ | 50 | install -m 0644 README ${D}${docdir}/${P}/ |
| 42 | install -m 0644 man/resolvconf.8 ${D}${mandir}/man8/ | 51 | install -m 0644 man/resolvconf.8 ${D}${mandir}/man8/ |
| 43 | } | 52 | } |
| @@ -51,3 +60,5 @@ pkg_postinst_${PN} () { | |||
| 51 | fi | 60 | fi |
| 52 | fi | 61 | fi |
| 53 | } | 62 | } |
| 63 | |||
| 64 | FILES_${PN} += "${base_libdir}/${BPN}" | ||
