From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from lists.gentoo.org ([140.105.134.102] helo=robin.gentoo.org) by nuthatch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1GPyus-0007Qe-Sd for garchives@archives.gentoo.org; Wed, 20 Sep 2006 10:02:55 +0000 Received: from robin.gentoo.org (localhost [127.0.0.1]) by robin.gentoo.org (8.13.8/8.13.6) with SMTP id k8KA2i5k009793; Wed, 20 Sep 2006 10:02:44 GMT Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by robin.gentoo.org (8.13.8/8.13.6) with ESMTP id k8KA2hd8010227 for ; Wed, 20 Sep 2006 10:02:43 GMT Received: from lark (lark.gentoo.osuosl.org [140.211.166.177]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with SMTP id F35E764518 for ; Wed, 20 Sep 2006 10:02:42 +0000 (UTC) Received: by lark (sSMTP sendmail emulation); Wed, 20 Sep 2006 10:02:42 +0000 From: "Josh Saddler" Date: Wed, 20 Sep 2006 10:02:42 +0000 To: gentoo-doc-cvs@lists.gentoo.org Subject: [gentoo-doc-cvs] cvs commit: gentoo-sparc-faq.xml Message-Id: <20060920100242.F35E764518@smtp.gentoo.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-doc-cvs@gentoo.org Reply-to: docs-team@lists.gentoo.org X-Archives-Salt: 4728e4df-892e-4b83-acaf-0ae83312cb3c X-Archives-Hash: 78290452cf97f38a3d5640b0d5af32a0 nightmorph 06/09/20 10:02:42 Modified: gentoo-sparc-faq.xml Log: Updated Sparc FAQ for bug 148276 Revision Changes Path 1.12 xml/htdocs/doc/en/gentoo-sparc-faq.xml file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/gentoo-sparc-faq.xml?rev=1.12&view=markup plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/gentoo-sparc-faq.xml?rev=1.12&content-type=text/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/gentoo-sparc-faq.xml?r1=1.11&r2=1.12 Index: gentoo-sparc-faq.xml =================================================================== RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/gentoo-sparc-faq.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- gentoo-sparc-faq.xml 26 May 2006 20:55:10 -0000 1.11 +++ gentoo-sparc-faq.xml 20 Sep 2006 10:02:42 -0000 1.12 @@ -1,5 +1,5 @@ - + @@ -19,8 +19,8 @@ -1.7 -2006-05-26 +1.8 +2006-09-20 Documentation Notes @@ -376,12 +376,11 @@

-Also, Gentoo/SPARC developer Sven Blumenstein keeps a list of PC hardware that -has been tested with the PCI based SPARC64 systems at -http://dev.gentoo.org/~bazik/hw.php. Feel free to add your results -at testing PC or non-Sun hardware to the list by emailing bazik@gentoo.org with the information on the -hardware as displayed in the existing hardware list. +Also, the Gentoo/SPARC team maintains a list of non-Sun PCI hardware that has +been tested on Gentoo/SPARC. To submit additions to the list, email +sparc@gentoo.org with the information on the hardware as displayed +in the existing hardware list.

@@ -392,8 +391,60 @@

-The UltraLinux FAQ has the answer at -http://www.ultralinux.org/faq.html#q_2_1. +The UltraLinux FAQ +has the answer. +

+ + + +
+My box has more than one Sun Ethernet device. Why do they all have the +same MAC address and how do I fix it? + + +

+First, the reason they all they all have the same setting is due to a value in +OpenBoot PROM (OBP). The story goes that in times past, it was assumed that if +a host had multiple interfaces, the interfaces would not reside on the same +Ethernet and therefore having the MAC address unique to a machine rather than +to a NIC wouldn't be a problem. As time went on and different technologies +developed, the opposite was proven. +

+ +

+As for fixing the issue, there are two ways to it; from OBP and from Linux. The +OBP variable local-mac-address? controls this behavior. The following +commands will help you to determine what local-mac-address? is set to: +

+ +
+ok printenv local-mac-address?
+local-mac-address? =  false
+
+ +
+# eeprom local-mac-address?
+local-mac-address?=false
+
+ +

+As you'll notice from the samples above, local-mac-address? is set to +false. This will cause all interfaces on a SPARC to use the same MAC +address. To change this behavior, use either of the commands below (depending +on whether you do it from OBP or Linux): +

+ +
+ok setenv local-mac-address?=true
+local-mac-address? =  true
+
+ +
+# eeprom local-mac-address?=true
+
+ +

+Note that you may need to reboot to see the changes take affect.

-- gentoo-doc-cvs@gentoo.org mailing list