diff options
| author | xtraeme <xtraeme@NetBSD.org> | 2007-07-01 07:39:45 +0000 |
|---|---|---|
| committer | xtraeme <xtraeme@NetBSD.org> | 2007-07-01 07:39:45 +0000 |
| commit | af211bb4e3c79fdc4e4644b7acb8564151316a4d (patch) | |
| tree | bc4250211dd14debde531558d27682404fe1b757 /usr.sbin/envstat/Makefile | |
| parent | da3f163bd280223c1d17fd1ff78946be2df177b8 (diff) | |
Imported envsys 2, a brief description of the new features:
(Part 3: userland)
* Support for detachable sensors.
* Cleaned up the API for simplicity and efficiency.
* Ability to send capacity/critical/warning events to powerd(8).
* Adapted all the code to the new locking order.
* Compatibility with the old envsys API: the ENVSYS_GTREINFO
and ENVSYS_GTREDATA ioctl(2)s are supported.
* Added support for a 'dictionary based communication channel' between
sysmon_power(9) and powerd(8), that means there is no 32 bytes event
size restriction anymore.
* Binary compatibility with old envstat(8) and powerd(8) via COMPAT_40.
* All drivers with the n^2 gtredata bug were fixed, PR kern/36226.
Tested by:
blymn: smsc(4).
bouyer: ipmi(4), mfi(4).
kefren: ug(4).
njoly: viaenv(4), adt7463.c.
riz: owtemp(4).
xtraeme: acpiacad(4), acpibat(4), acpitz(4), aiboost(4), it(4), lm(4).
Diffstat (limited to 'usr.sbin/envstat/Makefile')
| -rw-r--r-- | usr.sbin/envstat/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/usr.sbin/envstat/Makefile b/usr.sbin/envstat/Makefile index 7bba8ba5498..463ae6919f8 100644 --- a/usr.sbin/envstat/Makefile +++ b/usr.sbin/envstat/Makefile @@ -1,7 +1,11 @@ -# $NetBSD: Makefile,v 1.1 2000/03/10 05:51:57 groo Exp $ -# @(#)Makefile 8.1 (Berkeley) 6/6/93 +# $NetBSD: Makefile,v 1.2 2007/07/01 07:39:45 xtraeme Exp $ PROG= envstat -MAN= envstat.8 + +LDADD= -lprop +DPADD= ${LIBPROP} + +MAN= ${PROG}.8 +WARNS= 4 .include <bsd.prog.mk> |
