mirror of
https://git.yoctoproject.org/poky
synced 2026-05-02 18:32:15 +02:00
Changelog: =========== - lspai: Tool to display PAI counter sets - s390-tools: Provide a ShellCheck configuration - cpumf/pai: Add command line option for realtime scheduling - dbginfo.sh: enhance ethtool collection for ROCE - libutil/util_lockfile: add routine to return owning pid of file lock - lszcrypt: Improve lszcrypt output on SE guests - rust: Use a single workspace for all rust tools - zdev: limit the derivation of ZDEV_SITE_ID - zdump/df_s390: Update 'zgetdump -i' output with zlib info - zdump/dfi_s390: Support reading compressed s390_ext dumps - zipl/boot: Integrate zlib compression to single volume DASD dumper - zipl/boot: compile the bootloaders only if HOST_ARCH is s390x - zipl: Add --no-compress option to zipl command - zkey: Also check for deconfigured and check-stopped cards - ap_tools/ap-check: handle get-attributes between pre and post event - libutil: fix util_file_read_*() using wrong format specifiers - rust/pv: fix Invalid write of size 1 (From OE-Core rev: e503e15a6c553070bf9501862db1ca132632d969) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
34 lines
863 B
BlitzBasic
34 lines
863 B
BlitzBasic
SUMMARY = "Start the program if the specified terminal device is available."
|
|
DESCRIPTION = "ttyrun is typically used to prevent a respawn through the \
|
|
init(8) program when a terminal is not available."
|
|
HOMEPAGE = "https://github.com/ibm-s390-linux/s390-tools"
|
|
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=f5118f167b055bfd7c3450803f1847af"
|
|
|
|
SRC_URI = "git://github.com/ibm-s390-linux/s390-tools;protocol=https;branch=master"
|
|
SRCREV = "c217f6be6addd4d008f110efa53fbec79681dbfd"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
EXTRA_OEMAKE = "\
|
|
V=1 \
|
|
CC="${CC}" \
|
|
DISTRELEASE=${PR} \
|
|
"
|
|
|
|
# We just want ttyrun and not the rest of s390-utils
|
|
|
|
do_configure() {
|
|
oe_runmake -C ${S}/iucvterm/src clean
|
|
}
|
|
|
|
do_compile() {
|
|
oe_runmake -C ${S}/iucvterm/src ttyrun
|
|
}
|
|
|
|
do_install() {
|
|
install -d ${D}${sbindir}
|
|
install ${S}/iucvterm/src/ttyrun ${D}${sbindir}
|
|
}
|