mirror of
https://git.yoctoproject.org/poky
synced 2026-04-25 06:32:12 +02:00
Changes of existing tools: - ap_tools/ap-check: Add support for vfio-ap dynamic configuration - dbginfo.sh: Update/Add additional DASD data collection - dumpconf: Add new parameter 'SCP_DATA' for SCSI/NVMe/ECKD dump devices - libutil: Make formatted meta-data configurable - s390-tools: Replace 'which' with built-in 'command -v' - zdump/dfi_elf: Support core dumps of vr-kernels Bug Fixes: - chzdev: Fix warning about failed ATTR writes by udev - rust/pv: Try again if first CRL-URI is invalid - rust/pvattest: Add short option for --arpk - zdump: Fix 'zgetdump -i' ioctl error on s390 formatted dump file (From OE-Core rev: c0f57f1210396278a30efa757252c841e86b6ff4) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
36 lines
891 B
BlitzBasic
36 lines
891 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 = "4c922b105b4ccb85c51e7e48153d073742b88510"
|
|
|
|
CVE_PRODUCT = "s390-tools"
|
|
|
|
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}
|
|
}
|