Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch Add flags to all instances of lm(4), add a referenc...



details:   https://anonhg.NetBSD.org/src/rev/5a9b3ba22425
branches:  trunk
changeset: 751925:5a9b3ba22425
user:      pgoyette <pgoyette%NetBSD.org@localhost>
date:      Mon Feb 08 21:45:31 2010 +0000

description:
Add flags to all instances of lm(4), add a reference to man page

diffstat:

 sys/arch/amd64/conf/GENERIC  |  7 ++++---
 sys/arch/i386/conf/ALL       |  9 +++++----
 sys/arch/i386/conf/GENERIC   |  7 ++++---
 sys/arch/i386/conf/XEN3_DOM0 |  5 +++--
 4 files changed, 16 insertions(+), 12 deletions(-)

diffs (112 lines):

diff -r cc9c642c3849 -r 5a9b3ba22425 sys/arch/amd64/conf/GENERIC
--- a/sys/arch/amd64/conf/GENERIC       Mon Feb 08 21:42:41 2010 +0000
+++ b/sys/arch/amd64/conf/GENERIC       Mon Feb 08 21:45:31 2010 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.264 2010/02/06 20:12:32 pgoyette Exp $
+# $NetBSD: GENERIC,v 1.265 2010/02/08 21:45:32 pgoyette Exp $
 #
 # GENERIC machine description file
 #
@@ -22,7 +22,7 @@
 
 options        INCLUDE_CONFIG_FILE     # embed config file in kernel binary
 
-#ident                 "GENERIC-$Revision: 1.264 $"
+#ident                 "GENERIC-$Revision: 1.265 $"
 
 maxusers       64              # estimated number of users
 
@@ -422,7 +422,8 @@
 amdtemp* at pci? dev ? function ?      # AMD CPU Temperature sensors
 
 # LM7[89] and compatible hardware monitors
-#lm0   at isa? port 0x290              # other common ports: 0x280, 0x310
+# Use flags to select temp sensor type (see lm(4) man page for details)
+#lm0   at isa? port 0x290 flags 0x0    # other common ports: 0x280, 0x310
 
 # SMSC LPC47B397 hardware monitor functions
 #smsc0   at isa? port 0x02e
diff -r cc9c642c3849 -r 5a9b3ba22425 sys/arch/i386/conf/ALL
--- a/sys/arch/i386/conf/ALL    Mon Feb 08 21:42:41 2010 +0000
+++ b/sys/arch/i386/conf/ALL    Mon Feb 08 21:45:31 2010 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: ALL,v 1.233 2010/02/06 21:27:51 pgoyette Exp $
+# $NetBSD: ALL,v 1.234 2010/02/08 21:45:31 pgoyette Exp $
 # From NetBSD: GENERIC,v 1.787 2006/10/01 18:37:54 bouyer Exp
 #
 # ALL machine description file
@@ -17,7 +17,7 @@
 
 options        INCLUDE_CONFIG_FILE     # embed config file in kernel binary
 
-#ident                 "ALL-$Revision: 1.233 $"
+#ident                 "ALL-$Revision: 1.234 $"
 
 maxusers       64              # estimated number of users
 
@@ -682,7 +682,8 @@
 dbcool* at iic? addr 0x2E              # Tyan S2882-D
 
 # LM7[89] and compatible hardware monitors
-lm0    at iic? addr 0x2e
+# Use flags to select temp sensor type (see lm(4) man page for details)
+lm0    at iic? addr 0x2e flags 0x0
 
 pic16lc*       at iic? addr 0x10       # XBOX PIC16LC
 xbseeprom*     at iic? addr 0x54       # XBOX serial EEPROM
@@ -697,7 +698,7 @@
 itesio0        at isa? port 0x2e
 
 # LM7[89] and compatible hardware monitors
-lm0    at isa? port 0x290              # other common: 0x280, 0x310
+lm0    at isa? port 0x290 flags 0x0    # other common: 0x280, 0x310
 
 # SMSC LPC47B397 hardware monitor functions
 smsc0  at isa? port 0x02e
diff -r cc9c642c3849 -r 5a9b3ba22425 sys/arch/i386/conf/GENERIC
--- a/sys/arch/i386/conf/GENERIC        Mon Feb 08 21:42:41 2010 +0000
+++ b/sys/arch/i386/conf/GENERIC        Mon Feb 08 21:45:31 2010 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.963 2010/02/06 20:12:32 pgoyette Exp $
+# $NetBSD: GENERIC,v 1.964 2010/02/08 21:45:31 pgoyette Exp $
 #
 # GENERIC machine description file
 #
@@ -22,7 +22,7 @@
 
 options        INCLUDE_CONFIG_FILE     # embed config file in kernel binary
 
-#ident                 "GENERIC-$Revision: 1.963 $"
+#ident                 "GENERIC-$Revision: 1.964 $"
 
 maxusers       64              # estimated number of users
 
@@ -652,7 +652,8 @@
 #itesio0       at isa? port 0x2e
 
 # LM7[89] and compatible hardware monitors
-#lm0   at isa? port 0x290              # other common: 0x280, 0x310
+# Use flags to select temp sensor type (see lm(4) man page for details)
+#lm0   at isa? port 0x290 flags 0x0    # other common: 0x280, 0x310
 
 # SMSC LPC47B397 hardware monitor functions
 #smsc0 at isa? port 0x02e
diff -r cc9c642c3849 -r 5a9b3ba22425 sys/arch/i386/conf/XEN3_DOM0
--- a/sys/arch/i386/conf/XEN3_DOM0      Mon Feb 08 21:42:41 2010 +0000
+++ b/sys/arch/i386/conf/XEN3_DOM0      Mon Feb 08 21:45:31 2010 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: XEN3_DOM0,v 1.27 2010/01/07 18:49:30 tnn Exp $
+#      $NetBSD: XEN3_DOM0,v 1.28 2010/02/08 21:45:32 pgoyette Exp $
 #
 #      XEN3_0: Xen 3.0 domain0 kernel
 
@@ -282,7 +282,8 @@
 #dbcool* at iic? addr 0x2E             # Tyan S2882-D
 
 # LM7[89] and compatible hardware monitors
-#lm0   at isa? port 0x290              # other common: 0x280, 0x310, 0xc00
+# Use flags to select temp sensor type (see lm(4) man page for details)
+#lm0   at isa? port 0x290 flags 0x0    # other common: 0x280, 0x310, 0xc00
 
 # VIA VT82C686A/VT8231 Hardware Monitor and Power Management TImer
 #viaenv*       at pci? dev ? function ?



Home | Main Index | Thread Index | Old Index