diff options
| author | Alexander Kanavin <alex.kanavin@gmail.com> | 2024-03-06 07:42:25 -0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-03-07 17:25:03 +0000 |
| commit | c1cdc892d71bbf13beb97cfa430c14f53bc65805 (patch) | |
| tree | 358617b28fd8cd1a771a9a1ca413ccd1e0566e82 /meta/recipes-core/ttyrun/ttyrun_2.31.0.bb | |
| parent | bd0c5a7781d152c3ec03d64ecf54a61ef18101d4 (diff) | |
| download | poky-c1cdc892d71bbf13beb97cfa430c14f53bc65805.tar.gz | |
ttyrun: upgrade 2.30.0 -> 2.31.0
(From OE-Core rev: 60b45299b515348c2a312d88d94d748fcfc344cf)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/ttyrun/ttyrun_2.31.0.bb')
| -rw-r--r-- | meta/recipes-core/ttyrun/ttyrun_2.31.0.bb | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/meta/recipes-core/ttyrun/ttyrun_2.31.0.bb b/meta/recipes-core/ttyrun/ttyrun_2.31.0.bb new file mode 100644 index 0000000000..122dd9d8e7 --- /dev/null +++ b/meta/recipes-core/ttyrun/ttyrun_2.31.0.bb | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | SUMMARY = "Start the program if the specified terminal device is available." | ||
| 2 | DESCRIPTION = "ttyrun is typically used to prevent a respawn through the \ | ||
| 3 | init(8) program when a terminal is not available." | ||
| 4 | HOMEPAGE = "https://github.com/ibm-s390-linux/s390-tools" | ||
| 5 | |||
| 6 | LICENSE = "MIT" | ||
| 7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=f5118f167b055bfd7c3450803f1847af" | ||
| 8 | |||
| 9 | SRC_URI = "git://github.com/ibm-s390-linux/s390-tools;protocol=https;branch=master" | ||
| 10 | SRCREV = "6f15ed326491a17d83ca60cd2bda47fb5e8a0175" | ||
| 11 | |||
| 12 | S = "${WORKDIR}/git" | ||
| 13 | |||
| 14 | EXTRA_OEMAKE = "\ | ||
| 15 | V=1 \ | ||
| 16 | CC="${CC}" \ | ||
| 17 | DISTRELEASE=${PR} \ | ||
| 18 | " | ||
| 19 | |||
| 20 | # We just want ttyrun and not the rest of s390-utils | ||
| 21 | |||
| 22 | do_configure() { | ||
| 23 | oe_runmake -C ${S}/iucvterm/src clean | ||
| 24 | } | ||
| 25 | |||
| 26 | do_compile() { | ||
| 27 | oe_runmake -C ${S}/iucvterm/src ttyrun | ||
| 28 | } | ||
| 29 | |||
| 30 | do_install() { | ||
| 31 | install -d ${D}${sbindir} | ||
| 32 | install ${S}/iucvterm/src/ttyrun ${D}${sbindir} | ||
| 33 | } | ||
