From b5c5428dbb69c55af4d81b91e8482c6a62565d42 Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Tue, 9 Apr 2024 15:10:18 +0800 Subject: ttyrun: upgrade 2.31.0 -> 2.32.0 Changelog: =========== - dbginfo.sh: dash compatible copy sequence - rust/pv_core: Fix UvDeviceInfo::get() method - zipl/src: Fix leak of files if run with a broken configuration - zkey: Fix convert command to accept only keys of type CCA-AESDATA (From OE-Core rev: 12d22dc4df0b9c5cbdd9ebc7fd25ded7ee7f1948) Signed-off-by: Wang Mingyu Signed-off-by: Richard Purdie --- meta/recipes-core/ttyrun/ttyrun_2.31.0.bb | 33 ------------------------------- meta/recipes-core/ttyrun/ttyrun_2.32.0.bb | 33 +++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+), 33 deletions(-) delete mode 100644 meta/recipes-core/ttyrun/ttyrun_2.31.0.bb create mode 100644 meta/recipes-core/ttyrun/ttyrun_2.32.0.bb diff --git a/meta/recipes-core/ttyrun/ttyrun_2.31.0.bb b/meta/recipes-core/ttyrun/ttyrun_2.31.0.bb deleted file mode 100644 index 122dd9d8e7..0000000000 --- a/meta/recipes-core/ttyrun/ttyrun_2.31.0.bb +++ /dev/null @@ -1,33 +0,0 @@ -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 = "6f15ed326491a17d83ca60cd2bda47fb5e8a0175" - -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} -} diff --git a/meta/recipes-core/ttyrun/ttyrun_2.32.0.bb b/meta/recipes-core/ttyrun/ttyrun_2.32.0.bb new file mode 100644 index 0000000000..9a8be15dab --- /dev/null +++ b/meta/recipes-core/ttyrun/ttyrun_2.32.0.bb @@ -0,0 +1,33 @@ +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 = "9eea78b3ad8ab3710fb3b2d80b9cd058d7c8aba7" + +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} +} -- cgit v1.2.3-54-g00ecf