Gentoo Archives: gentoo-doc-cvs

From: Josh Saddler <nightmorph@×××××××××××.org>
To: gentoo-doc-cvs@l.g.o
Subject: [gentoo-doc-cvs] cvs commit: gentoo-sparc-faq.xml
Date: Wed, 20 Sep 2006 10:02:55
Message-Id: 20060920100242.F35E764518@smtp.gentoo.org
1 nightmorph 06/09/20 10:02:42
2
3 Modified: gentoo-sparc-faq.xml
4 Log:
5 Updated Sparc FAQ for bug 148276
6
7 Revision Changes Path
8 1.12 xml/htdocs/doc/en/gentoo-sparc-faq.xml
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/gentoo-sparc-faq.xml?rev=1.12&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/gentoo-sparc-faq.xml?rev=1.12&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/gentoo-sparc-faq.xml?r1=1.11&r2=1.12
13
14 Index: gentoo-sparc-faq.xml
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/gentoo-sparc-faq.xml,v
17 retrieving revision 1.11
18 retrieving revision 1.12
19 diff -u -r1.11 -r1.12
20 --- gentoo-sparc-faq.xml 26 May 2006 20:55:10 -0000 1.11
21 +++ gentoo-sparc-faq.xml 20 Sep 2006 10:02:42 -0000 1.12
22 @@ -1,5 +1,5 @@
23 <?xml version='1.0' encoding="UTF-8"?>
24 -<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/gentoo-sparc-faq.xml,v 1.11 2006/05/26 20:55:10 nightmorph Exp $ -->
25 +<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/gentoo-sparc-faq.xml,v 1.12 2006/09/20 10:02:42 nightmorph Exp $ -->
26
27 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
28 <guide link="/doc/en/gentoo-sparc-faq.xml">
29 @@ -19,8 +19,8 @@
30 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
31 <license/>
32
33 -<version>1.7</version>
34 -<date>2006-05-26</date>
35 +<version>1.8</version>
36 +<date>2006-09-20</date>
37
38 <chapter>
39 <title>Documentation Notes</title>
40 @@ -376,12 +376,11 @@
41 </ul>
42
43 <p>
44 -Also, Gentoo/SPARC developer Sven Blumenstein keeps a list of PC hardware that
45 -has been tested with the PCI based SPARC64 systems at
46 -<uri>http://dev.gentoo.org/~bazik/hw.php</uri>. Feel free to add your results
47 -at testing PC or non-Sun hardware to the list by emailing <mail
48 -link="bazik@g.o">bazik@g.o</mail> with the information on the
49 -hardware as displayed in the existing hardware list.
50 +Also, the Gentoo/SPARC team maintains a <uri
51 +link="/proj/en/base/sparc/hwlist.xml">list of non-Sun PCI hardware that has
52 +been tested on Gentoo/SPARC</uri>. To submit additions to the list, email
53 +<mail>sparc@g.o</mail> with the information on the hardware as displayed
54 +in the existing hardware list.
55 </p>
56
57 </body>
58 @@ -392,8 +391,60 @@
59 <body>
60
61 <p>
62 -The UltraLinux FAQ has the answer at
63 -<uri>http://www.ultralinux.org/faq.html#q_2_1</uri>.
64 +The <uri link="http://www.ultralinux.org/faq.html#q_2_1">UltraLinux FAQ</uri>
65 +has the answer.
66 +</p>
67 +
68 +</body>
69 +</section>
70 +<section>
71 +<title>My box has more than one Sun Ethernet device. Why do they all have the
72 +same MAC address and how do I fix it?</title>
73 +<body>
74 +
75 +<p>
76 +First, the reason they all they all have the same setting is due to a value in
77 +OpenBoot PROM (OBP). The story goes that in times past, it was assumed that if
78 +a host had multiple interfaces, the interfaces would not reside on the same
79 +Ethernet and therefore having the MAC address unique to a machine rather than
80 +to a NIC wouldn't be a problem. As time went on and different technologies
81 +developed, the opposite was proven.
82 +</p>
83 +
84 +<p>
85 +As for fixing the issue, there are two ways to it; from OBP and from Linux. The
86 +OBP variable <c>local-mac-address?</c> controls this behavior. The following
87 +commands will help you to determine what <c>local-mac-address?</c> is set to:
88 +</p>
89 +
90 +<pre caption="View local-mac-address? setting from OBP">
91 +ok <i>printenv local-mac-address?</i>
92 +local-mac-address? = false
93 +</pre>
94 +
95 +<pre caption="View local-mac-address? setting from Linux">
96 +# <i>eeprom local-mac-address?</i>
97 +local-mac-address?=false
98 +</pre>
99 +
100 +<p>
101 +As you'll notice from the samples above, <c>local-mac-address?</c> is set to
102 +<b>false</b>. This will cause all interfaces on a SPARC to use the same MAC
103 +address. To change this behavior, use either of the commands below (depending
104 +on whether you do it from OBP or Linux):
105 +</p>
106 +
107 +<pre caption="Set local-mac-address? from OBP">
108 +ok <i>setenv local-mac-address?=true</i>
109 +local-mac-address? = true
110 +</pre>
111 +
112 +<pre caption="Set local-mac-address? from Linux">
113 +# <i>eeprom local-mac-address?=true</i>
114 +</pre>
115 +
116 +<p>
117 +Note that you may need to reboot to see the changes take affect.
118 </p>
119
120 </body>
121
122
123
124 --
125 gentoo-doc-cvs@g.o mailing list