blob: 5a2816248bc50017f55f7a12396162a6db18e395 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
DESCRIPTION = "Lightweight console network and disk bandwidth monitor"
LICENSE = "GPLv2"
DEPENDS = "ncurses"
PR = "r0"
SRC_URI = "${SOURCEFORGE_MIRROR}/bwmng/bwm-ng-${PV}.tar.gz"
inherit autotools
# Use /proc/net/dev and /proc/diskstats rather than full libstatgrab.
# Disable netstat -i parser as it's not compatible with busybox netstat.
EXTRA_OECONF = " \
--with-procnetdev --with-diskstats \
--with-libstatgrab=no \
--with-netstatlinux=no \
"
|