diff options
author | Enrico Jorns <ejo@pengutronix.de> | 2023-09-07 14:09:20 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-09-07 10:31:19 -0700 |
commit | 2aa8abc9171aac23df050116d82d41eafb403094 (patch) | |
tree | e8f6e9a6bf6f8f627117f26d35237a91a74bcd1a | |
parent | dcafc2c09c2ae53eb54db26c0082c190f07b05e8 (diff) | |
download | meta-openembedded-2aa8abc9171aac23df050116d82d41eafb403094.tar.gz |
microcom: add new recipe
A minimalistic terminal program for communicating with devices over a
serial connection.
It features connection via RS232 serial interfaces (including setting of
transfer rates):
microcom --speed=115200 --port=/dev/ttyS0
as well as in `telnetmode' as specified in rfc2217
microcom --telnet=somehost:port
and a (Linux specific) can mode:
microcom --can=interface:rx_id:tx_id
Signed-off-by: Enrico Jorns <ejo@pengutronix.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-devtools/microcom/microcom_2023.09.0.bb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/microcom/microcom_2023.09.0.bb b/meta-oe/recipes-devtools/microcom/microcom_2023.09.0.bb new file mode 100644 index 0000000000..4bb3e62d9f --- /dev/null +++ b/meta-oe/recipes-devtools/microcom/microcom_2023.09.0.bb | |||
@@ -0,0 +1,20 @@ | |||
1 | SUMMARY = "Minimalistic terminal program for communicating with devices over a serial connection" | ||
2 | HOMEPAGE = "https://github.com/pengutronix/microcom" | ||
3 | LICENSE = "GPL-2.0-or-later" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=c9f7c009791eaa4b9ca90dc4c9538d24" | ||
5 | |||
6 | SRC_URI = "https://github.com/pengutronix/microcom/releases/download/v${PV}/microcom-${PV}.tar.xz" | ||
7 | SRC_URI[sha256sum] = "ef42184bb35c9762b3e9c70748696f7478efacad8412a88aaf2d9a6a500231a1" | ||
8 | |||
9 | DEPENDS = "readline" | ||
10 | |||
11 | inherit autotools update-alternatives | ||
12 | |||
13 | PACKAGECONFIG ??= "" | ||
14 | PACKAGECONFIG[can] = "--enable-can,--disable-can" | ||
15 | |||
16 | EXTRA_OECONF = "--enable-largefile" | ||
17 | |||
18 | # higher priority than busybox' microcom | ||
19 | ALTERNATIVE:${PN} = "microcom" | ||
20 | ALTERNATIVE_PRIORITY[microcom] = "100" | ||