mirror of
https://git.yoctoproject.org/poky
synced 2026-04-01 23:02:21 +02:00
Adds proper support for fifos, giving performance back to bitbake with the recent logging changes. (From OE-Core rev: 0295947a2ccc66037f9c20f06b4b69a781a046bd) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
20 lines
628 B
BlitzBasic
20 lines
628 B
BlitzBasic
require pseudo.inc
|
|
|
|
SRC_URI = " \
|
|
http://www.yoctoproject.org/downloads/${BPN}/${BPN}-${PV}.tar.bz2 \
|
|
file://fallback-passwd \
|
|
file://fallback-group \
|
|
"
|
|
|
|
SRC_URI[md5sum] = "4cd39502f9bd0e734dee80e08b28a5f1"
|
|
SRC_URI[sha256sum] = "9f2caca5f1579a376a509cd81a81156fc208650add9f0af275da9e911f18f291"
|
|
|
|
PSEUDO_EXTRA_OPTS ?= "--enable-force-async --without-passwd-fallback"
|
|
|
|
do_install_append_class-native () {
|
|
install -d ${D}${sysconfdir}
|
|
# The fallback files should never be modified
|
|
install -m 444 ${WORKDIR}/fallback-passwd ${D}${sysconfdir}/passwd
|
|
install -m 444 ${WORKDIR}/fallback-group ${D}${sysconfdir}/group
|
|
}
|