Changeset 4908

Show
Ignore:
Timestamp:
09/29/07 23:20:33 (1 year ago)
Author:
khali
Message:

Don't install decode-xeon.pl on Linux 2.6 systems, it doesn't work there.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • i2c-tools/trunk/Makefile

    r4906 r4908  
    2525#CFLAGS += -O -g 
    2626 
     27KERNELVERSION   := $(shell uname -r) 
     28 
    2729.PHONY: all strip clean install uninstall 
    2830 
  • i2c-tools/trunk/eeprom/Module.mk

    r4907 r4908  
    77EEPROM_DIR      := eeprom 
    88 
    9 EEPROM_TARGETS  := decode-dimms.pl decode-vaio.pl ddcmon decode-edid.pl \ 
    10                    decode-xeon.pl 
     9EEPROM_TARGETS  := decode-dimms.pl decode-vaio.pl ddcmon decode-edid.pl 
     10 
     11# decode-xeon.pl was not yet ported to the Linux 2.6 sysfs interface 
     12ifeq (,$(findstring /2.6., /$(KERNELVERSION))) 
     13EEPROM_TARGETS  += decode-xeon.pl 
     14endif 
    1115 
    1216#