pseudo_1.7.5.bb 891 B

1234567891011121314151617181920212223
  1. require pseudo.inc
  2. SRC_URI = "http://downloads.yoctoproject.org/releases/pseudo/${BPN}-${PV}.tar.bz2 \
  3. file://0001-configure-Prune-PIE-flags.patch \
  4. file://fallback-passwd \
  5. file://fallback-group \
  6. file://moreretries.patch \
  7. file://handle-remove-xattr.patch \
  8. file://obey-ldflags.patch \
  9. file://pseudo-glibc-rtld-next-workaround.patch \
  10. "
  11. SRC_URI[md5sum] = "c10209938f03128d0c193f041ff3596d"
  12. SRC_URI[sha256sum] = "fd89cadec984d3b8202aca465898b1bb4350e0d63ba9aa9ac899f6f50270e688"
  13. PSEUDO_EXTRA_OPTS ?= "--enable-force-async --without-passwd-fallback"
  14. do_install_append_class-native () {
  15. install -d ${D}${sysconfdir}
  16. # The fallback files should never be modified
  17. install -m 444 ${WORKDIR}/fallback-passwd ${D}${sysconfdir}/passwd
  18. install -m 444 ${WORKDIR}/fallback-group ${D}${sysconfdir}/group
  19. }