Browse Source

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

git-svn-id: http://lm-sensors.org/svn/i2c-tools/trunk@4908 7894878c-1315-0410-8ee3-d5d059ff63e0
tags/v3.0.0
Jean Delvare 18 years ago
parent
commit
0eab93f819
  1. 2
      Makefile
  2. 8
      eeprom/Module.mk

2
Makefile

@ -24,6 +24,8 @@ CFLAGS += -O2
# When debugging, use the following instead
#CFLAGS += -O -g
KERNELVERSION := $(shell uname -r)
.PHONY: all strip clean install uninstall
all:

8
eeprom/Module.mk

@ -6,8 +6,12 @@
EEPROM_DIR := eeprom
EEPROM_TARGETS := decode-dimms.pl decode-vaio.pl ddcmon decode-edid.pl \
decode-xeon.pl
EEPROM_TARGETS := decode-dimms.pl decode-vaio.pl ddcmon decode-edid.pl
# decode-xeon.pl was not yet ported to the Linux 2.6 sysfs interface
ifeq (,$(findstring /2.6., /$(KERNELVERSION)))
EEPROM_TARGETS += decode-xeon.pl
endif
#
# Commands

Loading…
Cancel
Save