diff options
| author | Jan Luebbe <jlu@pengutronix.de> | 2023-02-14 16:17:56 +0100 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2023-02-15 08:23:49 -0800 |
| commit | 58cfd6ba88397f43bcc111f69f850558d6e28860 (patch) | |
| tree | bab4679ea0520cb0ff79f179c04baf58150b9bf0 | |
| parent | 4a6ac691f209204434da38fd271a91455391e728 (diff) | |
| download | meta-openembedded-58cfd6ba88397f43bcc111f69f850558d6e28860.tar.gz | |
smemstat: add recipe
This is useful to see which processes use physical memory.
Signed-off-by: Jan Luebbe <jlu@pengutronix.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | meta-oe/recipes-devtools/smemstat/smemstat_0.02.11.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/smemstat/smemstat_0.02.11.bb b/meta-oe/recipes-devtools/smemstat/smemstat_0.02.11.bb new file mode 100644 index 0000000000..21f315b1c2 --- /dev/null +++ b/meta-oe/recipes-devtools/smemstat/smemstat_0.02.11.bb | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | SUMMARY = "smemstat reports the physical memory usage taking into consideration shared memory" | ||
| 2 | HOMEPAGE = "https://github.com/ColinIanKing/smemstat" | ||
| 3 | LICENSE = "GPL-2.0-or-later" | ||
| 4 | |||
| 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" | ||
| 6 | |||
| 7 | DEPENDS = "ncurses" | ||
| 8 | |||
| 9 | SRC_URI = "git://github.com/ColinIanKing/smemstat.git;protocol=https;branch=master" | ||
| 10 | SRCREV = "9eea7504ab33783d804c4ed9237e299effb68874" | ||
| 11 | |||
| 12 | S = "${WORKDIR}/git" | ||
| 13 | |||
| 14 | inherit bash-completion | ||
| 15 | |||
| 16 | do_compile () { | ||
| 17 | oe_runmake smemstat | ||
| 18 | } | ||
| 19 | |||
| 20 | do_install () { | ||
| 21 | oe_runmake DESTDIR=${D} install | ||
| 22 | } | ||
