Add env4801 0.2, output the voltages and temperatures of a Soekris

Net4801 computer.

PR:		ports/74316
Submitted by:	Patrick M. Hausen (pmh@hausen.com)
This commit is contained in:
Lars Thegler
2005-04-03 11:54:33 +00:00
parent 1c2c4d471d
commit 4951bf1468
6 changed files with 78 additions and 0 deletions

View File

@@ -121,6 +121,7 @@
SUBDIR += e2fsprogs
SUBDIR += eject
SUBDIR += enteruser
SUBDIR += env4801
SUBDIR += eroaster
SUBDIR += est
SUBDIR += estctrl

37
sysutils/env4801/Makefile Normal file
View File

@@ -0,0 +1,37 @@
# Ports collection makefile for: env4801
# Date created: Tue, Nov 24th, 2004
# Whom: Patrick M. Hausen (pmh@hausen.com)
#
# $FreeBSD$
#
PORTNAME= env4801
PORTVERSION= 0.2
CATEGORIES= sysutils
MASTER_SITES= http://phk.freebsd.dk/soekris/env4801/
DISTFILES= Makefile env4801.c
DIST_SUBDIR= env4801
MAINTAINER= pmh@hausen.com
COMMENT= Output the voltages and temperatures of a Soekris Net4801 computer
NO_WRKSUBDIR= yes
EXTRACT_CMD= ${CP}
EXTRACT_BEFORE_ARGS=
EXTRACT_AFTER_ARGS= ${WRKSRC}
RC_SCRIPTS_SUB= PREFIX=${PREFIX}
PLIST_FILES= sbin/env4801 etc/rc.d/env4801.sh
post-extract:
@${SED} ${RC_SCRIPTS_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \
${FILESDIR}/env4801.sh > ${WRKSRC}/env4801.sh
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/env4801 ${PREFIX}/sbin
${INSTALL_SCRIPT} ${WRKSRC}/env4801.sh ${PREFIX}/etc/rc.d
post-install:
@${SED} ${RC_SCRIPTS_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} ${PKGMESSAGE}
.include <bsd.port.mk>

View File

@@ -0,0 +1,4 @@
MD5 (env4801/Makefile) = 84e12097921baf6e9b3e9f938be6a29c
SIZE (env4801/Makefile) = 379
MD5 (env4801/env4801.c) = 4578ff38083aac95e71a127899294c88
SIZE (env4801/env4801.c) = 1995

View File

@@ -0,0 +1,10 @@
#!/bin/sh
#
case "$1" in
start|restart)
%%PREFIX%%/sbin/env4801 -i
;;
stop)
;;
esac

View File

@@ -0,0 +1,16 @@
Soekris Net4801 Environmental Monitor
This is a small program to output the voltages and temperatures
from the PC87366 chip in the Net4801 computer from Soekris.com.
First run the program with a "-i" to initialize the hardware:
# env4801 -i
Then, as often as you feel like, read out the measured values:
# env4801
Author: Poul-Henning Kamp (phk@freebsd.org)
WWW: http://phk.freebsd.dk/soekris/env4801/
http://www.soekris.com/

View File

@@ -0,0 +1,10 @@
================================================================
This port installed %%PREFIX%%/etc/rc.d/env4801.sh to initialize
the hardware at boot time. The env4801 utility will only run on
a Soekris Engineering Net4801 device. See pkg-descr for more
information as currently there is no manpage.
Make sure you have /dev/io enabled by putting io_load="YES" in
/boot/loader.conf or device io in your kernel config file.
================================================================