Changeset 5162
- Timestamp:
- 03/24/08 17:42:10 (5 years ago)
- Location:
- i2c-tools/trunk
- Files:
-
- 4 modified
- 4 moved
-
CHANGES (modified) (1 diff)
-
eeprom/Module.mk (modified) (2 diffs)
-
eeprom/README (modified) (1 diff)
-
eeprom/ddcmon (modified) (1 diff)
-
eeprom/decode-dimms (moved) (moved from i2c-tools/trunk/eeprom/decode-dimms.pl)
-
eeprom/decode-edid (moved) (moved from i2c-tools/trunk/eeprom/decode-edid.pl)
-
eeprom/decode-vaio (moved) (moved from i2c-tools/trunk/eeprom/decode-vaio.pl)
-
eeprom/decode-xeon (moved) (moved from i2c-tools/trunk/eeprom/decode-xeon.pl) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
i2c-tools/trunk/CHANGES
r5160 r5162 3 3 4 4 SVN 5 Drop the trailing .pl from all perl script names 5 6 decode-dimms: Fix DDR2 SDRAM module speed decoding 6 7 Update manufacturer IDs -
i2c-tools/trunk/eeprom/Module.mk
r4908 r5162 1 1 # EEPROM decoding scripts for the Linux eeprom driver 2 2 # 3 # Copyright (C) 2007 Jean Delvare <khali@linux-fr.org>3 # Copyright (C) 2007-2008 Jean Delvare <khali@linux-fr.org> 4 4 # 5 5 # Licensed under the GNU General Public License. … … 7 7 EEPROM_DIR := eeprom 8 8 9 EEPROM_TARGETS := decode-dimms .pl decode-vaio.pl ddcmon decode-edid.pl9 EEPROM_TARGETS := decode-dimms decode-vaio ddcmon decode-edid 10 10 11 # decode-xeon .plwas not yet ported to the Linux 2.6 sysfs interface11 # decode-xeon was not yet ported to the Linux 2.6 sysfs interface 12 12 ifeq (,$(findstring /2.6., /$(KERNELVERSION))) 13 EEPROM_TARGETS += decode-xeon .pl13 EEPROM_TARGETS += decode-xeon 14 14 endif 15 15 -
i2c-tools/trunk/eeprom/README
r4490 r5162 2 2 Linux kernel driver. 3 3 4 * decode-dimms.pl (perl script) 5 Decode the information found in memory module SPD EEPROMs. 4 * decode-dimms (perl script) 5 Decode the information found in memory module SPD EEPROMs. The SPD 6 data is read either from the running system or from dump files. 6 7 7 * decode-vaio .pl(perl script)8 * decode-vaio (perl script) 8 9 Decode the information found in Sony Vaio laptop identification EEPROMs. 9 10 10 11 * ddcmon (perl script) 11 decode-edid .pl(perl script)12 decode-edid (perl script) 12 13 Decode the information found in monitor EEPROMs. Both scripts require 13 14 an access to the DDC channel of the monitor. This is typically provided 14 by framebuffer drivers. decode-edid .pladditionally requires parse-edid,15 by framebuffer drivers. decode-edid additionally requires parse-edid, 15 16 which is part of the read-edid package. ddcmon prints general 16 information, while decode-edid .plprints timing information for17 information, while decode-edid prints timing information for 17 18 inclusion into your X11 configuration file. 18 19 19 * decode-xeon .pl(perl script)20 * decode-xeon (perl script) 20 21 ID ROM data decoding for Xeon processors. Support for sysfs is still 21 22 missing, so this script doesn't work with 2.6 kernels yet. -
i2c-tools/trunk/eeprom/ddcmon
r4926 r5162 3 3 # Copyright (C) 2004-2005 Jean Delvare <khali@linux-fr.org> 4 4 # 5 # Parts inspired from decode-edid. pl.5 # Parts inspired from decode-edid. 6 6 # Copyright (C) 2003-2004 Jean Delvare <khali@linux-fr.org> 7 7 # -
i2c-tools/trunk/eeprom/decode-xeon
r4493 r5162 15 15 # If the output of this program makes no sense for a particular device, 16 16 # it is probably decoding a DIMM Serial Presence Detect (SPD) EEPROM. 17 # See ../eeprom/decode-dimms.plto decode those devices.17 # See decode-dimms to decode those devices. 18 18 # 19 19 #
