Changeset 2117

Show
Ignore:
Timestamp:
11/29/03 20:38:10 (5 years ago)
Author:
khali
Message:

Don't include dmidecode anymore.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • lm-sensors/trunk/doc/progs

    r2026 r2117  
    2424* prog/daemon/healthd.sh (written in bash, not installed) 
    2525  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) information 
    29   in the BIOS and prints out the useful information. 
    3026 
    3127* prog/detect/i2cdetect (written in C, installed by 'make install') 
  • lm-sensors/trunk/prog/detect/Module.mk

    r2065 r2117  
    2424# Regrettably, even 'simply expanded variables' will not put their currently 
    2525# defined value verbatim into the command-list of rules... 
    26 PROGDETECTTARGETS := $(MODULE_DIR)/i2cdetect $(MODULE_DIR)/dmidecode 
    27 PROGDETECTSOURCES := $(MODULE_DIR)/i2cdetect.c $(MODULE_DIR)/dmidecode.c 
     26PROGDETECTTARGETS := $(MODULE_DIR)/i2cdetect 
     27PROGDETECTSOURCES := $(MODULE_DIR)/i2cdetect.c 
    2828PROGDETECTSBININSTALL := $(MODULE_DIR)/sensors-detect \ 
    2929                         $(MODULE_DIR)/i2cdetect 
     
    4242        mkdir -p $(DESTDIR)$(SBINDIR) 
    4343        $(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         fi 
    4744user_install :: install-prog-detect 
    4845