Changeset 2117
- Timestamp:
- 11/29/03 20:38:10 (9 years ago)
- Location:
- lm-sensors/trunk
- Files:
-
- 1 removed
- 2 modified
-
doc/progs (modified) (1 diff)
-
prog/detect/Module.mk (modified) (2 diffs)
-
prog/detect/dmidecode.c (deleted)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/doc/progs
r2026 r2117 24 24 * prog/daemon/healthd.sh (written in bash, not installed) 25 25 An example of a very simple hardware health monitoring daemon. 26 27 * prog/detect/dmidecode (written in C, installed by 'make install')28 This program scans the DMI (Desktop Management Interface) information29 in the BIOS and prints out the useful information.30 26 31 27 * prog/detect/i2cdetect (written in C, installed by 'make install') -
lm-sensors/trunk/prog/detect/Module.mk
r2065 r2117 24 24 # Regrettably, even 'simply expanded variables' will not put their currently 25 25 # defined value verbatim into the command-list of rules... 26 PROGDETECTTARGETS := $(MODULE_DIR)/i2cdetect $(MODULE_DIR)/dmidecode27 PROGDETECTSOURCES := $(MODULE_DIR)/i2cdetect.c $(MODULE_DIR)/dmidecode.c26 PROGDETECTTARGETS := $(MODULE_DIR)/i2cdetect 27 PROGDETECTSOURCES := $(MODULE_DIR)/i2cdetect.c 28 28 PROGDETECTSBININSTALL := $(MODULE_DIR)/sensors-detect \ 29 29 $(MODULE_DIR)/i2cdetect … … 42 42 mkdir -p $(DESTDIR)$(SBINDIR) 43 43 $(INSTALL) -o root -g root -m 755 $(PROGDETECTSBININSTALL) $(DESTDIR)$(SBINDIR) 44 if [ ! -e $(DESTDIR)$(SBINDIR)/dmidecode -o $(DESTDIR)$(SBINDIR)/dmidecode -ot $(PROGDETECTDIR)/dmidecode.c ] ; then \45 $(INSTALL) -o root -g root -m 755 $(PROGDETECTDIR)/dmidecode $(DESTDIR)$(SBINDIR) ; \46 fi47 44 user_install :: install-prog-detect 48 45
