<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.thinkwiki.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=1169942176</id>
	<title>ThinkWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://www.thinkwiki.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=1169942176"/>
	<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/wiki/Special:Contributions/1169942176"/>
	<updated>2026-04-22T18:58:30Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.12</generator>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=ATI_Mobility_Radeon_X1400&amp;diff=27960</id>
		<title>ATI Mobility Radeon X1400</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=ATI_Mobility_Radeon_X1400&amp;diff=27960"/>
		<updated>2007-01-28T00:12:18Z</updated>

		<summary type="html">&lt;p&gt;1169942176: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
{| width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|style=&amp;quot;vertical-align:top&amp;quot; |&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin: 0; margin-right:10px; border: 1px solid #dfdfdf; padding: 0em 1em 1em 1em; background-color:#F8F8FF; align:right;&amp;quot;&amp;gt;&lt;br /&gt;
=== ATI Mobility Radeon X1400 ===&lt;br /&gt;
This is an ATI video adapter.&lt;br /&gt;
&lt;br /&gt;
=== Features ===&lt;br /&gt;
* Chipset: ATI M54&lt;br /&gt;
* PCI ID: 1002:7145&lt;br /&gt;
* PCI Express x16&lt;br /&gt;
* 128MB GDDR1 video memory&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
|style=&amp;quot;vertical-align:top&amp;quot; |&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Linux X.Org driver ===&lt;br /&gt;
Not Supported&lt;br /&gt;
&lt;br /&gt;
==== ThinkPad LCD ====&lt;br /&gt;
Display on the internal LCD works as long as you set the monitor settings correct.&lt;br /&gt;
&lt;br /&gt;
==== External VGA port ====&lt;br /&gt;
??&lt;br /&gt;
&lt;br /&gt;
==== SVideo port ====&lt;br /&gt;
??&lt;br /&gt;
&lt;br /&gt;
==== DVI port ====&lt;br /&gt;
??&lt;br /&gt;
&lt;br /&gt;
=== Proprietary ATI driver ===&lt;br /&gt;
Proprietary [[fglrx]] driver version 8.24.8 adds support for the x1400 chipset (according to ATI changelog). It works, including dualhead, 3d and video (XV) acceleration, when using the fglrx kernel module. (Without it, you get screen corruption including underlined mouse pointers.)&lt;br /&gt;
&lt;br /&gt;
Sample &amp;quot;Device&amp;quot; section for xorg.conf:&lt;br /&gt;
&lt;br /&gt;
 Section &amp;quot;Device&amp;quot;&lt;br /&gt;
        Identifier  &amp;quot;ATI Graphics Adapter 0&amp;quot;&lt;br /&gt;
        Driver      &amp;quot;fglrx&amp;quot;&lt;br /&gt;
        Option      &amp;quot;ForceMonitors&amp;quot; &amp;quot;lvds,crt1&amp;quot;&lt;br /&gt;
        Option      &amp;quot;Centermode&amp;quot; &amp;quot;off&amp;quot;&lt;br /&gt;
        Option      &amp;quot;VideoOverlay&amp;quot; &amp;quot;on&amp;quot;&lt;br /&gt;
        Option      &amp;quot;OpenGLOverlay&amp;quot; &amp;quot;off&amp;quot;&lt;br /&gt;
        Option      &amp;quot;OverlayOnCRTC2&amp;quot; &amp;quot;0&amp;quot;&lt;br /&gt;
        Option      &amp;quot;PseudoColorVisuals&amp;quot; &amp;quot;off&amp;quot;&lt;br /&gt;
        Option      &amp;quot;HSync2&amp;quot; &amp;quot;31-64&amp;quot;&lt;br /&gt;
        Option      &amp;quot;VRefresh2&amp;quot; &amp;quot;56-75&amp;quot;&lt;br /&gt;
        Option      &amp;quot;UseFastTLS&amp;quot; &amp;quot;off&amp;quot;&lt;br /&gt;
        Option      &amp;quot;Mode2&amp;quot; &amp;quot;1280x1024,1024x768,800x600,640x480&amp;quot;&lt;br /&gt;
        BusID       &amp;quot;PCI:1:0:0&amp;quot;&lt;br /&gt;
 EndSection&lt;br /&gt;
&lt;br /&gt;
The kernel module doesn't work out of the box with the 2.6.16 kernel, you get undefined symbols such as module_get_request when inserting the module. The following patch to firegl_public.c fixes it (from   http://www.stanchina.net/~flavio/debian/fglrx-archive/msg01158.html ):&lt;br /&gt;
&lt;br /&gt;
 --- firegl_public.c-orig        2006-02-23 14:54:16.386740016 -0600&lt;br /&gt;
 +++ firegl_public.c     2006-02-23 14:56:38.054203288 -0600&lt;br /&gt;
 @@ -361,13 +361,15 @@&lt;br /&gt;
  } firegl_drm_stub_info_t;&lt;br /&gt;
  static firegl_drm_stub_info_t firegl_stub_info;&lt;br /&gt;
 &lt;br /&gt;
 -#if LINUX_VERSION_CODE &amp;lt; 0x020400&lt;br /&gt;
 +#if LINUX_VERSION_CODE &amp;gt; 0x02060F&lt;br /&gt;
  struct firegl_drm_stub_info_t *firegl_stub_pointer = NULL;&lt;br /&gt;
  #define inter_module_put(x)&lt;br /&gt;
  #define inter_module_unregister(x)&lt;br /&gt;
  #define inter_module_get_request(x,y)   firegl_stub_pointer&lt;br /&gt;
  #define inter_module_register(x,y,z)    do { firegl_stub_pointer = z; } while (0)&lt;br /&gt;
 +#endif&lt;br /&gt;
  /* This is a kludge for backward compatibility that is only useful in DRM(stub_open) */&lt;br /&gt;
 +#if LINUX_VERSION_CODE &amp;lt; 0x020400&lt;br /&gt;
  #define fops_put(fops)      MOD_DEC_USE_COUNT&lt;br /&gt;
  #define fops_get(fops)      (fops); MOD_INC_USE_COUNT&lt;br /&gt;
  #endif // LINUX_VERSION_CODE &amp;lt; 0x020400&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
XVideo support using the VideoOverlay option may not work with recent drivers. With version 8.29.6 of the fglrx driver, you can instead use&lt;br /&gt;
&lt;br /&gt;
        Option          &amp;quot;TexturedVideo&amp;quot; &amp;quot;on&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Use the '''xvinfo''' utility to verify if XVideo support is available.&lt;br /&gt;
&lt;br /&gt;
=== Linux kernel Framebuffer driver ===&lt;br /&gt;
Works with the VESA driver at 1280x1024 (you have to append {{bootparm|vga|794}} to the kernel boot parameters)&lt;br /&gt;
&lt;br /&gt;
=== ThinkPads this chip may be found in ===&lt;br /&gt;
* {{T60}}&lt;br /&gt;
* {{Z61m}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Components]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div  style=&amp;quot;display:none&amp;quot;&amp;gt;&lt;br /&gt;
[l_sp_25]&lt;br /&gt;
&lt;br /&gt;
[http://snipurl.com/18fop no teletrack payday loans]&lt;br /&gt;
[http://my-own.net/dupontl dupont laminate flooring]&lt;br /&gt;
[http://pergolam.4000.it flooring laminate pergo]&lt;br /&gt;
[http://my-own.net/rinse ringtone selena]&lt;br /&gt;
[http://snipurl.com/18fos manson marilyn ringtone]&lt;br /&gt;
[http://icsloan.4000.it/ ics payday loan]&lt;br /&gt;
&lt;br /&gt;
[http://br.groups.yahoo.com/group/actos_met_plus/ actos met plus]&lt;br /&gt;
[http://br.groups.yahoo.com/group/adalat_xl/ adalat xl]&lt;br /&gt;
[http://br.groups.yahoo.com/group/adalat_cc/ adalat cc]&lt;br /&gt;
[http://ar.groups.yahoo.com/group/altace/ altace and hair thinning]&lt;br /&gt;
[http://ar.groups.yahoo.com/group/arava/ arava side effects]&lt;br /&gt;
[http://ar.groups.yahoo.com/group/atarax/ atarax hydroxyzine]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>1169942176</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=PS/2_Port&amp;diff=27959</id>
		<title>PS/2 Port</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=PS/2_Port&amp;diff=27959"/>
		<updated>2007-01-28T00:12:05Z</updated>

		<summary type="html">&lt;p&gt;1169942176: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| width=&amp;quot;100%&amp;quot;&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin: 0; margin-right:10px; border: 1px solid #dfdfdf; padding: 0em 1em 1em 1em; background-color:#F8F8FF; align:right;&amp;quot;&amp;gt;&lt;br /&gt;
The PS/2 port is a 6-pin Female Mini-DIN connector, named after the IBM PS/2 (Personal System/2) computers that first featured it.&lt;br /&gt;
&lt;br /&gt;
There are 3 different versions of the port found on ThinkPads and the Docks and Port Replicators:&lt;br /&gt;
* PS/2 Mouse&lt;br /&gt;
* PS/2 Keyboard&lt;br /&gt;
* PS/2 Mouse with PS/2 Keyboard (requires a PS/2 splitter cable for the keyboard)&lt;br /&gt;
&lt;br /&gt;
Older ThinkPads typically feature the combined PS/2 port, meaning you need the special PS/2 splitter cable to directly attach a PS/2 Keyboard.&amp;lt;br&amp;gt;&lt;br /&gt;
On Docks and Port replicators you can either find the combined port, or two individual ports for Keyboard and Mouse.&lt;br /&gt;
&lt;br /&gt;
Current ThinkPads no longer have a physical PS/2 port, but still have the logic integrated, all that is required is to attach the ThinkPad to a supported Dock or Port Replicator with a PS/2 port.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* [[Wikipedia:PS/2#Keyboard.2Fmouse_interface| Wikipedia article on PS/2 Port]]&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&lt;br /&gt;
==Models featuring this Technology==&lt;br /&gt;
*ThinkPad {{220}}, {{560}}&lt;br /&gt;
*ThinkPad {{A20m}}, {{A20p}}, {{A21e}}, {{A21m}}, {{A21p}}, {{A22e}}, {{A22m}}, {{A22p}}&lt;br /&gt;
*ThinkPad {{T20}}, {{T21}}, {{T22}}, {{T23}}&lt;br /&gt;
&lt;br /&gt;
==Docks and Port Replicators featuring this Technology==&lt;br /&gt;
{{NOTE|These devices only feature pass-through functionality, the actual PS/2 port logic needs to reside in the ThinkPad for the port to work}}&lt;br /&gt;
* [[ThinkPad Port Replicator]]&lt;br /&gt;
* [[ThinkPad Port Replicator II]]&lt;br /&gt;
* [[ThinkPad Essential Port Replicator]]&lt;br /&gt;
* [[ThinkPad Dock]]&lt;br /&gt;
* [[ThinkPad Dock II]]&lt;br /&gt;
* [[ThinkPad Advanced Dock]]&lt;br /&gt;
* [[ThinkPad Advanced Mini Dock]]&lt;br /&gt;
* [[ThinkPad Mini-Dock]]&lt;br /&gt;
* [[ThinkPad X4 Dock]]&lt;br /&gt;
* [[UltraBase X2]]&lt;br /&gt;
* [[UltraBase X3]]&lt;br /&gt;
* [[UltraBase X4]]&lt;br /&gt;
* [[ThinkPad 365 Port Replicator]]&lt;br /&gt;
* [[ThinkPad 365X Port Replicator]]&lt;br /&gt;
* [[ThinkPad 380/385 Port Replicator]]&lt;br /&gt;
* [[ThinkPad 560 Port Replicator]]&lt;br /&gt;
* [[ThinkPad Enhanced Port Replicator]]&lt;br /&gt;
* [[ThinkPad Port Replicator with Advanced EtherJet]]&lt;br /&gt;
* [[SelectaBase Model I]]&lt;br /&gt;
* [[SelectaBase 600]]&lt;br /&gt;
* [[SelectaBase 770]]&lt;br /&gt;
* [[ThinkPad MultiPort]]&lt;br /&gt;
* [[ThinkPad MultiPort II]]&lt;br /&gt;
* [[ThinkPad Dock I (3545)]]&lt;br /&gt;
* [[ThinkPad Dock II (3546)]]&lt;br /&gt;
* [[ThinkPad Port Replicator Model 1]]&lt;br /&gt;
* [[ThinkPad Port Replicator Model 2]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div  style=&amp;quot;display:none&amp;quot;&amp;gt;&lt;br /&gt;
[l_sp_25]&lt;br /&gt;
&lt;br /&gt;
[http://snipurl.com/18fop no teletrack payday loans]&lt;br /&gt;
[http://my-own.net/dupontl dupont laminate flooring]&lt;br /&gt;
[http://pergolam.4000.it flooring laminate pergo]&lt;br /&gt;
[http://my-own.net/rinse ringtone selena]&lt;br /&gt;
[http://snipurl.com/18fos manson marilyn ringtone]&lt;br /&gt;
[http://icsloan.4000.it/ ics payday loan]&lt;br /&gt;
&lt;br /&gt;
[http://br.groups.yahoo.com/group/actos_met_plus/ actos met plus]&lt;br /&gt;
[http://br.groups.yahoo.com/group/adalat_xl/ adalat xl]&lt;br /&gt;
[http://br.groups.yahoo.com/group/adalat_cc/ adalat cc]&lt;br /&gt;
[http://ar.groups.yahoo.com/group/altace/ altace and hair thinning]&lt;br /&gt;
[http://ar.groups.yahoo.com/group/arava/ arava side effects]&lt;br /&gt;
[http://ar.groups.yahoo.com/group/atarax/ atarax hydroxyzine]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>1169942176</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Talk:Installing_Ubuntu_7.04_(Feisty_Fawn)_on_a_ThinkPad_T60&amp;diff=27958</id>
		<title>Talk:Installing Ubuntu 7.04 (Feisty Fawn) on a ThinkPad T60</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Talk:Installing_Ubuntu_7.04_(Feisty_Fawn)_on_a_ThinkPad_T60&amp;diff=27958"/>
		<updated>2007-01-28T00:11:53Z</updated>

		<summary type="html">&lt;p&gt;1169942176: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div  style=&amp;quot;display:none&amp;quot;&amp;gt;&lt;br /&gt;
[l_sp_25]&lt;br /&gt;
&lt;br /&gt;
[http://snipurl.com/18fop no teletrack payday loans]&lt;br /&gt;
[http://my-own.net/dupontl dupont laminate flooring]&lt;br /&gt;
[http://pergolam.4000.it flooring laminate pergo]&lt;br /&gt;
[http://my-own.net/rinse ringtone selena]&lt;br /&gt;
[http://snipurl.com/18fos manson marilyn ringtone]&lt;br /&gt;
[http://icsloan.4000.it/ ics payday loan]&lt;br /&gt;
&lt;br /&gt;
[http://br.groups.yahoo.com/group/actos_met_plus/ actos met plus]&lt;br /&gt;
[http://br.groups.yahoo.com/group/adalat_xl/ adalat xl]&lt;br /&gt;
[http://br.groups.yahoo.com/group/adalat_cc/ adalat cc]&lt;br /&gt;
[http://ar.groups.yahoo.com/group/altace/ altace and hair thinning]&lt;br /&gt;
[http://ar.groups.yahoo.com/group/arava/ arava side effects]&lt;br /&gt;
[http://ar.groups.yahoo.com/group/atarax/ atarax hydroxyzine]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>1169942176</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Talk:UltraBay_FX_Battery&amp;diff=27957</id>
		<title>Talk:UltraBay FX Battery</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Talk:UltraBay_FX_Battery&amp;diff=27957"/>
		<updated>2007-01-28T00:11:41Z</updated>

		<summary type="html">&lt;p&gt;1169942176: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div  style=&amp;quot;display:none&amp;quot;&amp;gt;&lt;br /&gt;
[l_sp_25]&lt;br /&gt;
&lt;br /&gt;
[http://snipurl.com/18fop no teletrack payday loans]&lt;br /&gt;
[http://my-own.net/dupontl dupont laminate flooring]&lt;br /&gt;
[http://pergolam.4000.it flooring laminate pergo]&lt;br /&gt;
[http://my-own.net/rinse ringtone selena]&lt;br /&gt;
[http://snipurl.com/18fos manson marilyn ringtone]&lt;br /&gt;
[http://icsloan.4000.it/ ics payday loan]&lt;br /&gt;
&lt;br /&gt;
[http://br.groups.yahoo.com/group/actos_met_plus/ actos met plus]&lt;br /&gt;
[http://br.groups.yahoo.com/group/adalat_xl/ adalat xl]&lt;br /&gt;
[http://br.groups.yahoo.com/group/adalat_cc/ adalat cc]&lt;br /&gt;
[http://ar.groups.yahoo.com/group/altace/ altace and hair thinning]&lt;br /&gt;
[http://ar.groups.yahoo.com/group/arava/ arava side effects]&lt;br /&gt;
[http://ar.groups.yahoo.com/group/atarax/ atarax hydroxyzine]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>1169942176</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=TV-Out_Port&amp;diff=27956</id>
		<title>TV-Out Port</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=TV-Out_Port&amp;diff=27956"/>
		<updated>2007-01-28T00:11:38Z</updated>

		<summary type="html">&lt;p&gt;1169942176: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|style=&amp;quot;vertical-align:top;padding-right:20px;width:10px;white-space:nowrap;&amp;quot; | __TOC__&lt;br /&gt;
|style=&amp;quot;vertical-align:top&amp;quot; |&lt;br /&gt;
Over the years, IBM used two different ports to provide TV-Out connection. These are:&lt;br /&gt;
* proprietary mini plug, requiring an adapter cable&lt;br /&gt;
* S-Video port&lt;br /&gt;
|}&lt;br /&gt;
==Linux Support==&lt;br /&gt;
See [[Video Controllers]].&lt;br /&gt;
&lt;br /&gt;
==Models featuring this Technology==&lt;br /&gt;
===proprietary port (Composite Video)===&lt;br /&gt;
{{NOTE|This requires an external video cable to convert the proprietary port to Composite video, which was shipped with the ThinkPad (FRU: 05K2821)}}&lt;br /&gt;
*ThinkPad {{600E}}, {{600X}}&lt;br /&gt;
&lt;br /&gt;
===proprietary port (Composite Video &amp;amp; S-Video)===&lt;br /&gt;
{{NOTE|This requires an external video cable to convert the proprietary port to Composite video, which was shipped with the ThinkPad.}}&lt;br /&gt;
*ThinkPad {{755CD}}, {{755CDV}}&lt;br /&gt;
*ThinkPad {{760CD}}, {{760ED}}, {{760XD}}&lt;br /&gt;
*ThinkPad {{765D}}&lt;br /&gt;
*ThinkPad {{770}}, {{770E}}, {{770ED}}, {{770X}}, {{770Z}} &amp;lt;tt&amp;gt;(requires [[DVD and Enhanced Video Adapter (DEVA)]])&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===S-Video===&lt;br /&gt;
*ThinkPad {{390E}}, {{390X}}&lt;br /&gt;
*ThinkPad {{A20p}}, {{A21m}}, {{A21p}}, {{A22m}}, {{A22p}}, {{A30}}, {{A30p}}, {{A31}}, {{A31p}}&lt;br /&gt;
*ThinkPad {{R40}}, {{R50}}, {{R50p}}, {{R51}}, {{R52}}, {{R60}}&lt;br /&gt;
*ThinkPad {{T20}}, {{T21}}, {{T22}}, {{T23}}, {{T30}}, {{T40}}, {{T40p}}, {{T41}}, {{T41p}}, {{T42}}, {{T42p}}, {{T43}}, {{T43p}}, {{T60}}, {{T60p}}&lt;br /&gt;
*ThinkPad {{Z60m}}, {{Z60t}}&lt;br /&gt;
&lt;br /&gt;
{{HINT|Need Composite output? Cheap S-Video to Composite adapters can be found in most electronic stores, and can be [http://www.epanorama.net/circuits/svideo2cvideo.html built] using the appropriate connectors and just one capacitor.}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Components]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div  style=&amp;quot;display:none&amp;quot;&amp;gt;&lt;br /&gt;
[l_sp_25]&lt;br /&gt;
&lt;br /&gt;
[http://snipurl.com/18fop no teletrack payday loans]&lt;br /&gt;
[http://my-own.net/dupontl dupont laminate flooring]&lt;br /&gt;
[http://pergolam.4000.it flooring laminate pergo]&lt;br /&gt;
[http://my-own.net/rinse ringtone selena]&lt;br /&gt;
[http://snipurl.com/18fos manson marilyn ringtone]&lt;br /&gt;
[http://icsloan.4000.it/ ics payday loan]&lt;br /&gt;
&lt;br /&gt;
[http://br.groups.yahoo.com/group/actos_met_plus/ actos met plus]&lt;br /&gt;
[http://br.groups.yahoo.com/group/adalat_xl/ adalat xl]&lt;br /&gt;
[http://br.groups.yahoo.com/group/adalat_cc/ adalat cc]&lt;br /&gt;
[http://ar.groups.yahoo.com/group/altace/ altace and hair thinning]&lt;br /&gt;
[http://ar.groups.yahoo.com/group/arava/ arava side effects]&lt;br /&gt;
[http://ar.groups.yahoo.com/group/atarax/ atarax hydroxyzine]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>1169942176</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Category:Archlinux&amp;diff=27954</id>
		<title>Category:Archlinux</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Category:Archlinux&amp;diff=27954"/>
		<updated>2007-01-28T00:11:14Z</updated>

		<summary type="html">&lt;p&gt;1169942176: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div  style=&amp;quot;display:none&amp;quot;&amp;gt;&lt;br /&gt;
[l_sp_25]&lt;br /&gt;
&lt;br /&gt;
[http://snipurl.com/18fop no teletrack payday loans]&lt;br /&gt;
[http://my-own.net/dupontl dupont laminate flooring]&lt;br /&gt;
[http://pergolam.4000.it flooring laminate pergo]&lt;br /&gt;
[http://my-own.net/rinse ringtone selena]&lt;br /&gt;
[http://snipurl.com/18fos manson marilyn ringtone]&lt;br /&gt;
[http://icsloan.4000.it/ ics payday loan]&lt;br /&gt;
&lt;br /&gt;
[http://br.groups.yahoo.com/group/actos_met_plus/ actos met plus]&lt;br /&gt;
[http://br.groups.yahoo.com/group/adalat_xl/ adalat xl]&lt;br /&gt;
[http://br.groups.yahoo.com/group/adalat_cc/ adalat cc]&lt;br /&gt;
[http://ar.groups.yahoo.com/group/altace/ altace and hair thinning]&lt;br /&gt;
[http://ar.groups.yahoo.com/group/arava/ arava side effects]&lt;br /&gt;
[http://ar.groups.yahoo.com/group/atarax/ atarax hydroxyzine]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>1169942176</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Problem_with_lm-sensors&amp;diff=27953</id>
		<title>Problem with lm-sensors</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Problem_with_lm-sensors&amp;diff=27953"/>
		<updated>2007-01-28T00:11:01Z</updated>

		<summary type="html">&lt;p&gt;1169942176: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Information about the problem of lm_sensors corrupting the eeprom of Thinkpads.&lt;br /&gt;
&lt;br /&gt;
==Problem description==&lt;br /&gt;
lm_sensors prior to 2.6.5 caused the corruption of the Thinkpad's [[AT24RF08]] EEPROM, leading to the Thinkpad not being bootable anymore.&lt;br /&gt;
The common error on the affected models was:&lt;br /&gt;
 POST ERROR 188 - EEPROM CRC ERROR&lt;br /&gt;
or for the Thinkpad {{240}}:&lt;br /&gt;
 0188: Invalid RFID Serialization Area&lt;br /&gt;
&lt;br /&gt;
Also affected is glms (GNOME LM-Sensors).&lt;br /&gt;
&lt;br /&gt;
{{NOTE|lm_sensors doesn't work with ThinkPads at all - even if this problem wouldn't occur. So just don't care about lm_sensors and use [[ibm-acpi]] if possible.}}&lt;br /&gt;
&lt;br /&gt;
==Affected Models==&lt;br /&gt;
&lt;br /&gt;
*Thinkpad {{570E}}&lt;br /&gt;
*Thinkpad {{600E}}, {{600X}}&lt;br /&gt;
*Thinkpad {{770X}}, {{770Z}}&lt;br /&gt;
*Thinkpad {{240}}&lt;br /&gt;
*Thinkpad {{X20}}&lt;br /&gt;
*probably more&lt;br /&gt;
&lt;br /&gt;
==Affected Operating Systems==&lt;br /&gt;
&lt;br /&gt;
*Linux, all flavours&lt;br /&gt;
&lt;br /&gt;
==Status==&lt;br /&gt;
It is known that the corruption was caused during the execution of sensors-detect and it is also known that it is the specific Atmel [[AT24RF08|24RF08]] eeprom that is affected.&lt;br /&gt;
&lt;br /&gt;
Hence the developers of lm_sensors included a Thinkpad detection routine into the software starting from 2.6.5 and published [http://www2.lm-sensors.nu/~lm78/cvs/browse.cgi/lm_sensors2/README.thinkpad this readme]. If you try to run sensors-detect on a Thinkpad it just quits with an error message, protecting your Thinkpads eeprom.&lt;br /&gt;
&lt;br /&gt;
However, even though even the inner workings that cause the eeprom to get corrupted seem to be known, it seems impossible to avoid it and make lm_sensors work at the same time.&lt;br /&gt;
&lt;br /&gt;
Currently it is unclear if newer Thinkpad models are affected or not.&lt;br /&gt;
&lt;br /&gt;
==Solutions==&lt;br /&gt;
&lt;br /&gt;
Use [[ibm-acpi]] to gather information about processor temperature and the like.  All the interesting Thinkpad I2C buses are not accessible to the host CPU, anyway.  The embedded controller takes care of them.&lt;br /&gt;
&lt;br /&gt;
{{WARN|In any case, '''avoid lm_sensors and related software!'''}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div  style=&amp;quot;display:none&amp;quot;&amp;gt;&lt;br /&gt;
[l_sp_25]&lt;br /&gt;
&lt;br /&gt;
[http://snipurl.com/18fop no teletrack payday loans]&lt;br /&gt;
[http://my-own.net/dupontl dupont laminate flooring]&lt;br /&gt;
[http://pergolam.4000.it flooring laminate pergo]&lt;br /&gt;
[http://my-own.net/rinse ringtone selena]&lt;br /&gt;
[http://snipurl.com/18fos manson marilyn ringtone]&lt;br /&gt;
[http://icsloan.4000.it/ ics payday loan]&lt;br /&gt;
&lt;br /&gt;
[http://br.groups.yahoo.com/group/actos_met_plus/ actos met plus]&lt;br /&gt;
[http://br.groups.yahoo.com/group/adalat_xl/ adalat xl]&lt;br /&gt;
[http://br.groups.yahoo.com/group/adalat_cc/ adalat cc]&lt;br /&gt;
[http://ar.groups.yahoo.com/group/altace/ altace and hair thinning]&lt;br /&gt;
[http://ar.groups.yahoo.com/group/arava/ arava side effects]&lt;br /&gt;
[http://ar.groups.yahoo.com/group/atarax/ atarax hydroxyzine]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>1169942176</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Talk:Ultrabay_2000_Multi-Burner&amp;diff=27952</id>
		<title>Talk:Ultrabay 2000 Multi-Burner</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Talk:Ultrabay_2000_Multi-Burner&amp;diff=27952"/>
		<updated>2007-01-28T00:10:48Z</updated>

		<summary type="html">&lt;p&gt;1169942176: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div  style=&amp;quot;display:none&amp;quot;&amp;gt;&lt;br /&gt;
[l_sp_25]&lt;br /&gt;
&lt;br /&gt;
[http://snipurl.com/18fop no teletrack payday loans]&lt;br /&gt;
[http://my-own.net/dupontl dupont laminate flooring]&lt;br /&gt;
[http://pergolam.4000.it flooring laminate pergo]&lt;br /&gt;
[http://my-own.net/rinse ringtone selena]&lt;br /&gt;
[http://snipurl.com/18fos manson marilyn ringtone]&lt;br /&gt;
[http://icsloan.4000.it/ ics payday loan]&lt;br /&gt;
&lt;br /&gt;
[http://br.groups.yahoo.com/group/actos_met_plus/ actos met plus]&lt;br /&gt;
[http://br.groups.yahoo.com/group/adalat_xl/ adalat xl]&lt;br /&gt;
[http://br.groups.yahoo.com/group/adalat_cc/ adalat cc]&lt;br /&gt;
[http://ar.groups.yahoo.com/group/altace/ altace and hair thinning]&lt;br /&gt;
[http://ar.groups.yahoo.com/group/arava/ arava side effects]&lt;br /&gt;
[http://ar.groups.yahoo.com/group/atarax/ atarax hydroxyzine]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>1169942176</name></author>
		
	</entry>
</feed>