summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEnrico Jorns <ejo@pengutronix.de>2023-09-07 14:09:20 +0200
committerKhem Raj <raj.khem@gmail.com>2023-09-07 10:31:19 -0700
commit2aa8abc9171aac23df050116d82d41eafb403094 (patch)
treee8f6e9a6bf6f8f627117f26d35237a91a74bcd1a
parentdcafc2c09c2ae53eb54db26c0082c190f07b05e8 (diff)
downloadmeta-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.bb20
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 @@
1SUMMARY = "Minimalistic terminal program for communicating with devices over a serial connection"
2HOMEPAGE = "https://github.com/pengutronix/microcom"
3LICENSE = "GPL-2.0-or-later"
4LIC_FILES_CHKSUM = "file://COPYING;md5=c9f7c009791eaa4b9ca90dc4c9538d24"
5
6SRC_URI = "https://github.com/pengutronix/microcom/releases/download/v${PV}/microcom-${PV}.tar.xz"
7SRC_URI[sha256sum] = "ef42184bb35c9762b3e9c70748696f7478efacad8412a88aaf2d9a6a500231a1"
8
9DEPENDS = "readline"
10
11inherit autotools update-alternatives
12
13PACKAGECONFIG ??= ""
14PACKAGECONFIG[can] = "--enable-can,--disable-can"
15
16EXTRA_OECONF = "--enable-largefile"
17
18# higher priority than busybox' microcom
19ALTERNATIVE:${PN} = "microcom"
20ALTERNATIVE_PRIORITY[microcom] = "100"