* [PATCH] decode-dimms: Default to merging cells in side-by-side output mode
@ 2012-10-22 10:39 Jean Delvare
0 siblings, 0 replies; only message in thread
From: Jean Delvare @ 2012-10-22 10:39 UTC (permalink / raw)
To: Linux I2C
Default to merging cells in side-by-side output mode. Add an option to
revert to no cell merging.
---
eeprom/decode-dimms | 9 +++++++++
1 file changed, 9 insertions(+)
--- i2c-tools.orig/eeprom/decode-dimms 2012-10-22 11:26:16.531386765 +0200
+++ i2c-tools/eeprom/decode-dimms 2012-10-22 11:26:30.979391794 +0200
@@ -1696,6 +1696,8 @@ foreach (@ARGV) {
" (useful for postprocessing the output)\n",
" --side-by-side Display all DIMMs side-by-side if possible\n",
" --merge-cells Merge neighbour cells with identical values\n",
+ " (side-by-side output only, default)\n",
+ " --no-merge-cells Don't merge neighbour cells with identical values\n",
" (side-by-side output only)\n",
" -c, --checksum Decode completely even if checksum fails\n",
" -x, Read data from hexdump files\n",
@@ -1729,6 +1731,10 @@ EOF
$opt_merge = 1;
next;
}
+ if ($_ eq '--no-merge-cells') {
+ $opt_merge = 0;
+ next;
+ }
if ($_ eq '-c' || $_ eq '--checksum') {
$opt_igncheck = 1;
next;
@@ -1750,6 +1756,9 @@ EOF
push @dimm, { eeprom => basename($_), file => $_ } if $use_hexdump;
}
+# Default values
+$opt_merge = 1 unless defined $opt_merge;
+
# From a sysfs device path and an attribute name, return the attribute
# value, or undef (stolen from sensors-detect)
sub sysfs_device_attribute
--
Jean Delvare
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2012-10-22 10:39 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-22 10:39 [PATCH] decode-dimms: Default to merging cells in side-by-side output mode Jean Delvare
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).