diff options
Diffstat (limited to 'meta-oe/recipes-devtools/memtool/memtool_2018.03.0.bb')
-rw-r--r-- | meta-oe/recipes-devtools/memtool/memtool_2018.03.0.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/memtool/memtool_2018.03.0.bb b/meta-oe/recipes-devtools/memtool/memtool_2018.03.0.bb new file mode 100644 index 0000000000..1e2e93bcd5 --- /dev/null +++ b/meta-oe/recipes-devtools/memtool/memtool_2018.03.0.bb | |||
@@ -0,0 +1,31 @@ | |||
1 | # SPDX-FileCopyrightText: 2024 Bosch Sicherheitssysteme GmbH | ||
2 | # | ||
3 | # SPDX-License-Identifier: MIT | ||
4 | |||
5 | SUMMARY = "A tool to manipulate and read memory mapped registers" | ||
6 | DESCRIPTION = "memtool is a program that allows to access memory mapped registers. This is useful \ | ||
7 | to inspect and modify registers from the command line. memtool can also operate on plain files, \ | ||
8 | and access PHY registers." | ||
9 | HOMEPAGE = "https://github.com/pengutronix/memtool" | ||
10 | BUGTRACKER = "https://github.com/pengutronix/memtool/issues" | ||
11 | SECTION = "devtool" | ||
12 | |||
13 | LICENSE = "GPL-2.0-only" | ||
14 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" | ||
15 | |||
16 | SRC_URI = " \ | ||
17 | http://www.pengutronix.de/software/memtool/downloads/memtool-${PV}.tar.xz \ | ||
18 | file://run-ptest \ | ||
19 | file://test_read_write_plainfiles.sh \ | ||
20 | " | ||
21 | |||
22 | SRC_URI[sha256sum] = "87cb7175266ff3a00a9c1f541c4c6c93693ffbe8dcc0d97a60d13c45ff860900" | ||
23 | |||
24 | inherit autotools ptest | ||
25 | |||
26 | do_install_ptest () { | ||
27 | install -d ${D}${PTEST_PATH}/tests | ||
28 | install -m 0755 ${UNPACKDIR}/test_* ${D}${PTEST_PATH}/tests | ||
29 | } | ||
30 | |||
31 | RDEPENDS:${PN}-ptest += "bash coreutils" | ||