mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-27 07:57:27 +00:00
fc78d37ff0
Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
15 lines
490 B
BlitzBasic
15 lines
490 B
BlitzBasic
SUMMARY = "Simple wrapper script which proxies signals to a child"
|
|
HOMEPAGE = "https://github.com/Yelp/dumb-init/"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=5940d39995ea6857d01b8227109c2e9c"
|
|
|
|
SRCREV = "89c1502b9d40b5cb4a844498b14d74ba1dd559bf"
|
|
SRC_URI = "git://github.com/Yelp/dumb-init;branch=master;protocol=https"
|
|
|
|
EXTRA_OEMAKE = "CC='${CC}' CFLAGS='${CFLAGS} ${LDFLAGS}'"
|
|
|
|
do_install() {
|
|
install -d ${D}${base_sbindir}
|
|
install ${S}/dumb-init ${D}${base_sbindir}/
|
|
}
|