Getting the Tiger Direct System Max Neotach to run Linux - 03/10/2006 Systemax Neotach 3300 Notebook http://www.tigerdirect.com/applications/SearchTools/item-details.asp?EdpNo=1542009&CatId=1902 Expansion Ports 1 - PC Card Slot Processor Brand AMD Processor Class Turion 64 ML-30 Processor Speed 1.6GHz Memory Type DDR Memory Size 512MB Memory Speed DDR333 (PC2700) Memory Slots 2 Memory Slots 1 Capacity 60GB Optical Drive Type DVD/RW Graphics Description Integrated Graphics GPU/VPU ATI Radeon Xpress 200M Video Memory up to 128MB Communications Integrated Modem Integrated LAN ALi M5263 (Ulim256x) Integrated Wireless LAN Atheros RJ-11 Phone Connector Ali M5457 RJ-45 Ethernet ALi Display Type WXGA Viewable Screen Size 15.4" Tried several flavors of linux on this laptop trying to get through a full install but none of these worked: ---------------------------------------------------------------------- - Knoppix 4 - died within 10 seconds of booting but noapic,nolapic and other retard modes fixed it - Kanotix - booted OK with noapic but no nic - Ubuntu 5.1 live - died within 10 seconds of booting - Suse 10 x86_64 - died during network setup - Suse 10.1 x86_64 - died during partitioning - Novell LD9 x86_64 - endless beeping when moving USB mouse during install (fix: use touchpad) - unable to configure nic - message repeated a gazillion times -> APIC error on CPU0: 40(40) - FC4 x86_64 - died probing PCI hardware Finally: ---------------------------------------------------------------------- - Mandriva 2006 x86_64 - installed perfectly - booted perfectly - ran perfectly until ATI driver install which kept segfaulting - unable to configure nic - rebuilt kernel with 2.6.15 - modprobe'd uli526x nic driver on boot to get nic working - *do not* bring the nic down as it wont come back up unless you reboot - installed latest 2006 updates I had a heck of a time getting this laptop to use Linux. I would recommend anyone with this configuration to just go grab mandriva 2006. Whatever they are doing, works. It will make getting the nic working much easier as well. Mandrake sees the wifi chip also, but I haven't tried to get it working yet. I believe it is supported by mad-wi-fi The ATI driver is the typical ATI driver. It didn't work very well with UGS Unigraphics (the cad software we need to run), or X for that matter. Trying to exit X results in segfaults as well. Something strange with the cdrom as well. I don't know why this is either. hdd: drive_cmd: status=0x51 { DriveReady SeekComplete Error } Probably a blacklisted cdrom drive. All in all, I'd buy another one. It's working fine with Mandriva for the most part. The hardware oddities will get worked out in time as usual. To get the nic working: ---------------------------------------------------------------------- - install kernel source from mandrake cd - cd /usr/src/linux - cp .config /tmp - download kernel source 2.6.15 (stable) and unpack into /usr/src - cd /usr/src/linux-2.6.15/ - cp /tmp/.config . - make oldconfig (hold down enter key) - edit Makefile and change EXTRAVERSION to something (your initials) - make dep clean bzImage (check for errors) - make modules modules_install - cp arch/x86_64/boot/bzImage /boot/ - cd /boot - mkinitrd bzImage.img 2.6.15(suffix_of_EXTRAVERSION_from_Makefile) - add to grub's menu.lst file - reboot and modprobe -a the uli526x kernel module (note the TX and RX bytes have a count) Load the nic module ---------------------------------------------------------------------- [root@localhost linux]# dmesg | grep -i uli uli526x: ULi M5261/M5263 net driver, version 0.9.3 (2005-7-29) eth0: ULi M5263 at pci0000:00:1b.0, 00:40:d0:74:08:93, irq 201. uli526x: eth0 NIC Link is Up 100 Mbps Full duplex [root@localhost linux]# lsmod | grep uli uli526x 16148 0 [root@localhost linux]# ifconfig eth0 Link encap:Ethernet HWaddr 00:40:D0:71:18:91 inet addr:192.168.1.245 Bcast:192.168.1.255 Mask:255.255.255.0 UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:2629 errors:0 dropped:0 overruns:0 frame:0 TX packets:4501 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:200357 (195.6 KiB) TX bytes:563680 (550.4 KiB) Interrupt:201 Base address:0xe000 System info as seen from 2.6.15 ---------------------------------------------------------------------- uname ---------------------------------------------------------------------- [root@localhost X11]# uname -a Linux localhost 2.6.15tmb #1 Thu Jul 6 08:44:43 CDT 2006 x86_64 AMD Turion(tm) 64 Mobile Technology ML-37 unknown GNU/Linux [root@localhost X11]# lspci ---------------------------------------------------------------------- 00:00.0 Host bridge: ATI Technologies Inc RS480 Host Bridge (rev 01) 00:01.0 PCI bridge: ATI Technologies Inc: Unknown device 5a3f 00:14.0 CardBus bridge: Texas Instruments PCI4510 PC card Cardbus Controller (rev 02) 00:15.0 Ethernet controller: Atheros Communications, Inc. AR5212 802.11abg NIC (rev 01) 00:18.0 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] HyperTransport Technology Configuration 00:18.1 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Address Map 00:18.2 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] DRAM Controller 00:18.3 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Miscellaneous Control 00:19.0 PCI bridge: ALi Corporation M5249 HTT to PCI Bridge 00:1b.0 Ethernet controller: ALi Corporation M5263 Ethernet Controller (rev 50) 00:1c.0 USB Controller: ALi Corporation USB 1.1 Controller (rev 03) 00:1c.1 USB Controller: ALi Corporation USB 1.1 Controller (rev 03) 00:1c.3 USB Controller: ALi Corporation USB 2.0 Controller (rev 01) 00:1d.0 Multimedia audio controller: ALi Corporation M5455 PCI AC-Link Controller Audio Device (rev 20) 00:1d.1 Modem: ALi Corporation M5457 AC'97 Modem Controller (rev 20) 00:1e.0 ISA bridge: ALi Corporation PCI to LPC Controller (rev 31) 00:1e.1 Bridge: ALi Corporation M7101 Power Management Controller [PMU] 00:1f.0 IDE interface: ALi Corporation M5229 IDE (rev c7) 01:05.0 VGA compatible controller: ATI Technologies Inc ATI Radeon XPRESS 200M 5955 (PCIE) cat /proc/cmdline ---------------------------------------------------------------------- root=/dev/hda6 resume=/dev/hda5 splash=silent vga=788 [root@localhost X11]# cat /proc/cpuinfo ---------------------------------------------------------------------- processor : 0 vendor_id : AuthenticAMD cpu family : 15 model : 36 model name : AMD Turion(tm) 64 Mobile Technology ML-37 stepping : 2 cpu MHz : 2000.155 cache size : 1024 KB fpu : yes fpu_exception : yes cpuid level : 1 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 syscall nx mmxext fxsr_opt lm 3dnowext 3dnow pni lahf_lm bogomips : 4007.22 TLB size : 1024 4K pages clflush size : 64 cache_alignment : 64 address sizes : 40 bits physical, 48 bits virtual power management: ts fid vid ttp tm stc lsmod ---------------------------------------------------------------------- Module Size Used by fglrx 504672 7 cpufreq_ondemand 6252 0 cpufreq_conservative 7276 0 cpufreq_powersave 1728 0 powernow_k8 9552 0 freq_table 3912 1 powernow_k8 nfsd 258192 13 exportfs 4928 1 nfsd lockd 63824 2 nfsd nfs_acl 3200 1 nfsd sunrpc 143096 9 nfsd,lockd,nfs_acl autofs4 16968 1 raw 9352 1 snd_seq_dummy 3204 0 snd_seq_oss 31396 0 snd_seq_midi_event 6784 1 snd_seq_oss snd_seq 50328 5 snd_seq_dummy,snd_seq_oss,snd_seq_midi_event snd_seq_device 7760 3 snd_seq_dummy,snd_seq_oss,snd_seq snd_pcm_oss 51424 0 snd_mixer_oss 16192 1 snd_pcm_oss snd_intel8x0 31528 0 snd_ac97_codec 102716 1 snd_intel8x0 snd_ac97_bus 2368 1 snd_ac97_codec snd_pcm 84428 3 snd_pcm_oss,snd_intel8x0,snd_ac97_codec snd_timer 20808 2 snd_seq,snd_pcm snd_page_alloc 9232 2 snd_intel8x0,snd_pcm snd 51008 9 snd_seq_oss,snd_seq,snd_seq_device,snd_pcm_oss,snd_mixer_oss,snd_intel8x0,snd_ac97_codec,snd_pcm,snd_timer soundcore 8288 1 snd parport_pc 34224 0 lp 11584 0 parport 34444 2 parport_pc,lp uli526x 16148 0 af_packet 17996 2 deflate 3200 0 zlib_deflate 22752 1 deflate twofish 45248 0 serpent 19520 0 aes 26664 0 blowfish 8832 0 des 16768 0 sha256 8704 0 sha1 2752 0 crypto_null 2624 0 af_key 28308 2 ipcomp 6416 0 ah4 5376 0 esp4 7232 0 pcmcia 36704 2 firmware_class 8896 1 pcmcia yenta_socket 25100 2 rsrc_nonstatic 10880 1 yenta_socket pcmcia_core 38432 3 pcmcia,yenta_socket,rsrc_nonstatic ide_cd 38880 0 loop 13136 0 evdev 10816 1 nvram 7304 0 video 15432 0 thermal 12428 0 processor 19928 2 powernow_k8,thermal fan 3848 0 container 3712 0 button 5920 0 battery 8712 0 ac 4104 0 joydev 9792 0 ehci_hcd 28808 0 ohci_hcd 18820 0 usbcore 121980 3 ehci_hcd,ohci_hcd ext3 124944 5 jbd 50024 1 ext3 cat /proc/devices ---------------------------------------------------------------------- Character devices: 1 mem 2 pty 3 ttyp 4 /dev/vc/0 4 tty 4 ttyS 5 /dev/tty 5 /dev/console 5 /dev/ptmx 6 lp 7 vcs 10 misc 13 input 14 sound 29 fb 116 alsa 128 ptm 136 pts 162 raw 180 usb 189 usb_device 226 drm 254 pcmcia Block devices: 1 ramdisk 3 ide0 7 loop 22 ide1 254 pktcdvd /proc/interrupts ---------------------------------------------------------------------- [root@localhost X11]# cat /proc/interrupts CPU0 0: 493968 IO-APIC-edge timer 1: 428 IO-APIC-edge i8042 8: 0 IO-APIC-edge rtc 9: 32 IO-APIC-level acpi 12: 5148 IO-APIC-edge i8042 14: 8307 IO-APIC-edge ide0 15: 45576 IO-APIC-edge ide1 169: 49207 IO-APIC-level ohci_hcd:usb1, yenta, fglrx 185: 0 IO-APIC-level ohci_hcd:usb2 193: 2 IO-APIC-level ehci_hcd:usb3, ALi M5455 201: 2891 IO-APIC-level eth0 NMI: 1941 LOC: 493940 ERR: 0 MIS: 0 xdpyinfo ---------------------------------------------------------------------- name of display: :0.0 version number: 11.0 vendor string: Mandriva Linux (X.Org X11 6.9.0, patch level 5.2.20060mdk) vendor release number: 60900000 X.Org version: 6.9.0 maximum request size: 16777212 bytes motion buffer size: 256 bitmap unit, bit order, padding: 32, LSBFirst, 32 image byte order: LSBFirst number of supported pixmap formats: 7 supported pixmap formats: depth 1, bits_per_pixel 1, scanline_pad 32 depth 4, bits_per_pixel 8, scanline_pad 32 depth 8, bits_per_pixel 8, scanline_pad 32 depth 15, bits_per_pixel 16, scanline_pad 32 depth 16, bits_per_pixel 16, scanline_pad 32 depth 24, bits_per_pixel 32, scanline_pad 32 depth 32, bits_per_pixel 32, scanline_pad 32 keycode range: minimum 8, maximum 255 focus: window 0x2400007, revert to PointerRoot number of extensions: 33 ATIFGLEXTENSION ATIFGLRXDRI ATITVOUT BIG-REQUESTS DAMAGE DOUBLE-BUFFER DPMS Extended-Visual-Information GLX LBX MIT-SCREEN-SAVER MIT-SHM MIT-SUNDRY-NONSTANDARD RANDR RENDER SECURITY SGI-GLX SHAPE SYNC TOG-CUP X-Resource XC-APPGROUP XC-MISC XFIXES XFree86-Bigfont XFree86-DGA XFree86-DRI XFree86-Misc XFree86-VidModeExtension XInputExtension XKEYBOARD XTEST XVideo default screen number: 0 number of screens: 1 screen #0: print screen: no dimensions: 1280x800 pixels (401x303 millimeters) resolution: 81x67 dots per inch depths (7): 24, 1, 4, 8, 15, 16, 32 root window id: 0x75 depth of root window: 24 planes number of colormaps: minimum 1, maximum 1 default colormap: 0x20 default number of colormap cells: 256 preallocated pixels: black 0, white 16777215 options: backing-store NO, save-unders NO largest cursor: 64x64 current input event mask: 0xfa4035 KeyPressMask ButtonPressMask EnterWindowMask LeaveWindowMask KeymapStateMask StructureNotifyMask SubstructureNotifyMask SubstructureRedirectMask FocusChangeMask PropertyChangeMask ColormapChangeMask number of visuals: 64 default visual id: 0x23 visual: visual id: 0x23 class: TrueColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x24 class: TrueColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x25 class: TrueColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x26 class: TrueColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x27 class: TrueColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x28 class: TrueColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x29 class: TrueColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x2a class: TrueColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x2b class: TrueColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x2c class: TrueColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x2d class: TrueColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x2e class: TrueColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x2f class: TrueColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x30 class: TrueColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x31 class: TrueColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x32 class: TrueColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x33 class: TrueColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x34 class: TrueColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x35 class: TrueColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x36 class: TrueColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x37 class: TrueColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x38 class: TrueColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x39 class: TrueColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x3a class: TrueColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x3b class: TrueColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x3c class: TrueColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x3d class: TrueColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x3e class: TrueColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x3f class: TrueColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x40 class: TrueColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x41 class: TrueColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x42 class: TrueColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x43 class: DirectColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x44 class: DirectColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x45 class: DirectColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x46 class: DirectColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x47 class: DirectColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x48 class: DirectColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x49 class: DirectColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x4a class: DirectColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x4b class: DirectColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x4c class: DirectColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x4d class: DirectColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x4e class: DirectColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x4f class: DirectColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x50 class: DirectColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x51 class: DirectColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x52 class: DirectColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x53 class: DirectColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x54 class: DirectColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x55 class: DirectColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x56 class: DirectColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x57 class: DirectColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x58 class: DirectColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x59 class: DirectColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x5a class: DirectColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x5b class: DirectColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x5c class: DirectColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x5d class: DirectColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x5e class: DirectColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x5f class: DirectColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x60 class: DirectColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x61 class: DirectColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits visual: visual id: 0x62 class: DirectColor depth: 24 planes available colormap entries: 256 per subfield red, green, blue masks: 0xff0000, 0xff00, 0xff significant bits in color specification: 8 bits free (memory) ---------------------------------------------------------------------- total used free shared buffers cached Mem: 1932148 549148 1383000 0 19700 353884 -/+ buffers/cache: 175564 1756584 Swap: 2040212 0 2040212 cat /proc/ioports ---------------------------------------------------------------------- 0000-001f : dma1 0020-0021 : pic1 0040-0043 : timer0 0050-0053 : timer1 0060-006f : keyboard 0070-0077 : rtc 0080-008f : dma page reg 00a0-00a1 : pic2 00c0-00df : dma2 00f0-00ff : fpu 0170-0177 : ide1 01f0-01f7 : ide0 0376-0376 : ide1 03c0-03df : vesafb 03f6-03f6 : ide0 0cf8-0cff : PCI conf1 1000-103f : 0000:00:1e.1 1000-1003 : PM1a_EVT_BLK 1004-1005 : PM1a_CNT_BLK 1008-100b : PM_TMR 1010-1015 : ACPI CPU throttle 1018-1027 : GPE0_BLK 1030-1030 : PM2_CNT_BLK 1100-110f : 0000:00:1f.0 1100-1107 : ide0 1108-110f : ide1 1400-140f : motherboard 1800-18ff : PCI CardBus #03 1c00-1cff : PCI CardBus #03 a000-bfff : PCI Bus #02 c000-dfff : PCI Bus #01 c000-c0ff : 0000:01:05.0 e000-e0ff : 0000:00:1b.0 e000-e0ff : uli526x e100-e1ff : 0000:00:1d.0 e100-e1ff : ALi M5455 e200-e2ff : 0000:00:1d.1 e220-e227 : serial e228-e22f : serial e240-e247 : serial e248-e24f : serial wifi http://www.atheros.com/news/linux.html dmesg 2.6.15 kernel ---------------------------------------------------------------------- Bootdata ok (command line is root=/dev/hda6 resume=/dev/hda5 splash=silent vga=788) Linux version 2.6.15tmb (root@localhost) (gcc version 4.0.1 (4.0.1-5mdk for Mandriva Linux release 2006.0)) #1 Thu Jul 6 08:44:43 CDT 2006 BIOS-provided physical RAM map: BIOS-e820: 0000000000000000 - 000000000009fc00 (usable) BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved) BIOS-e820: 0000000000100000 - 0000000077fef000 (usable) BIOS-e820: 0000000077ff0000 - 0000000077ffffc0 (ACPI data) BIOS-e820: 0000000077ffffc0 - 0000000078000000 (ACPI NVS) BIOS-e820: 00000000fff80000 - 0000000100000000 (reserved) ACPI: RSDP (v000 OID_00 ) @ 0x00000000000e5010 ACPI: RSDT (v001 INSYDE FACP_000 0x00000100 0000 0x00010200) @ 0x0000000077ffc2f0 ACPI: FADT (v001 INSYDE FACP_000 0x00000100 0000 0x00010200) @ 0x0000000077fffb00 ACPI: MADT (v001 INSYDE APIC_000 0x30303030 0000 0x00010200) @ 0x0000000077fffb90 ACPI: DSDT (v001 INSYDE INT810 0x00001002 INTL 0x20041105) @ 0x0000000000000000 No mptable found. On node 0 totalpages: 483836 DMA zone: 3092 pages, LIFO batch:0 DMA32 zone: 480744 pages, LIFO batch:31 Normal zone: 0 pages, LIFO batch:0 HighMem zone: 0 pages, LIFO batch:0 ACPI: PM-Timer IO Port: 0x1008 ACPI: Local APIC address 0xfee00000 ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) Processor #0 15:4 APIC version 16 ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] disabled) ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23 ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level) ACPI: IRQ0 used by override. ACPI: IRQ2 used by override. ACPI: IRQ9 used by override. Setting APIC routing to flat Using ACPI (MADT) for SMP configuration information Allocating PCI resources starting at 80000000 (gap: 78000000:87f80000) Checking aperture... CPU 0: aperture @ 0 size 32 MB No AGP bridge found Built 1 zonelists Kernel command line: root=/dev/hda6 resume=/dev/hda5 splash=silent vga=788 Initializing CPU#0 PID hash table entries: 4096 (order: 12, 131072 bytes) time.c: Using 3.579545 MHz PM timer. time.c: Detected 2000.134 MHz processor. time.c: Using PIT/TSC based timekeeping. Console: colour dummy device 80x25 Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes) Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes) Memory: 1931564k/1966012k available (1985k kernel code, 33652k reserved, 736k data, 176k init) Calibrating delay using timer specific routine.. 4007.23 BogoMIPS (lpj=8014461) Mount-cache hash table entries: 256 CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line) CPU: L2 Cache: 1024K (64 bytes/line) mtrr: v2.0 (20020519) CPU: AMD Turion(tm) 64 Mobile Technology ML-37 stepping 02 Using local APIC timer interrupts. Detected 12.500 MHz APIC timer. testing NMI watchdog ... OK. checking if image is initramfs...it isn't (no cpio magic); looks like an initrd NET: Registered protocol family 16 ACPI: bus type pci registered PCI: Using configuration type 1 ACPI: Subsystem revision 20050902 ACPI: Interpreter enabled ACPI: Using IOAPIC for interrupt routing ACPI: PCI Root Bridge [PCI0] (0000:00) PCI: Probing PCI hardware (bus 00) ACPI: Assume root bridge [\_SB_.PCI0] bus is 0 PCI: Scanning bus 0000:00 PCI: Found 0000:00:00.0 [1002/5950] 000600 00 PCI: Calling quirk ffffffff801ede00 for 0000:00:00.0 PCI: Calling quirk ffffffff80281b40 for 0000:00:00.0 PCI: Calling quirk ffffffff80281680 for 0000:00:00.0 PCI: Found 0000:00:01.0 [1002/5a3f] 000604 01 PCI: Calling quirk ffffffff801ede00 for 0000:00:01.0 PCI: Calling quirk ffffffff80281b40 for 0000:00:01.0 PCI: Calling quirk ffffffff80281680 for 0000:00:01.0 PCI: Found 0000:00:14.0 [104c/ac44] 000607 02 PCI: Calling quirk ffffffff801ede00 for 0000:00:14.0 PCI: Calling quirk ffffffff80281b40 for 0000:00:14.0 PCI: Calling quirk ffffffff80281680 for 0000:00:14.0 PCI: Found 0000:00:15.0 [168c/0013] 000200 00 PCI: Calling quirk ffffffff801ede00 for 0000:00:15.0 PCI: Calling quirk ffffffff80281b40 for 0000:00:15.0 PCI: Calling quirk ffffffff80281680 for 0000:00:15.0 PCI: Found 0000:00:18.0 [1022/1100] 000600 00 PCI: Calling quirk ffffffff801ede00 for 0000:00:18.0 PCI: Calling quirk ffffffff80281b40 for 0000:00:18.0 PCI: Calling quirk ffffffff80281680 for 0000:00:18.0 PCI: Found 0000:00:18.1 [1022/1101] 000600 00 PCI: Calling quirk ffffffff801ede00 for 0000:00:18.1 PCI: Calling quirk ffffffff80281b40 for 0000:00:18.1 PCI: Calling quirk ffffffff80281680 for 0000:00:18.1 PCI: Found 0000:00:18.2 [1022/1102] 000600 00 PCI: Calling quirk ffffffff801ede00 for 0000:00:18.2 PCI: Calling quirk ffffffff80281b40 for 0000:00:18.2 PCI: Calling quirk ffffffff80281680 for 0000:00:18.2 PCI: Found 0000:00:18.3 [1022/1103] 000600 00 PCI: Calling quirk ffffffff801ede00 for 0000:00:18.3 PCI: Calling quirk ffffffff80281b40 for 0000:00:18.3 PCI: Calling quirk ffffffff80281680 for 0000:00:18.3 PCI: Found 0000:00:19.0 [10b9/5249] 000604 01 PCI: Calling quirk ffffffff801ede00 for 0000:00:19.0 PCI: Calling quirk ffffffff80281b40 for 0000:00:19.0 PCI: Calling quirk ffffffff80281680 for 0000:00:19.0 PCI: Found 0000:00:1b.0 [10b9/5263] 000200 00 PCI: Calling quirk ffffffff801ede00 for 0000:00:1b.0 PCI: Calling quirk ffffffff80281b40 for 0000:00:1b.0 PCI: Calling quirk ffffffff80281680 for 0000:00:1b.0 PCI: Found 0000:00:1c.0 [10b9/5237] 000c03 00 PCI: Calling quirk ffffffff801ede00 for 0000:00:1c.0 PCI: Calling quirk ffffffff80281b40 for 0000:00:1c.0 PCI: Calling quirk ffffffff80281680 for 0000:00:1c.0 PCI: Found 0000:00:1c.1 [10b9/5237] 000c03 00 PCI: Calling quirk ffffffff801ede00 for 0000:00:1c.1 PCI: Calling quirk ffffffff80281b40 for 0000:00:1c.1 PCI: Calling quirk ffffffff80281680 for 0000:00:1c.1 PCI: Found 0000:00:1c.3 [10b9/5239] 000c03 00 PCI: Calling quirk ffffffff801ede00 for 0000:00:1c.3 PCI: Calling quirk ffffffff80281b40 for 0000:00:1c.3 PCI: Calling quirk ffffffff80281680 for 0000:00:1c.3 PCI: Found 0000:00:1d.0 [10b9/5455] 000401 00 PCI: Calling quirk ffffffff801ede00 for 0000:00:1d.0 PCI: Calling quirk ffffffff80281b40 for 0000:00:1d.0 PCI: Calling quirk ffffffff80281680 for 0000:00:1d.0 PCI: Found 0000:00:1d.1 [10b9/5457] 000703 00 PCI: Calling quirk ffffffff801ede00 for 0000:00:1d.1 PCI: Calling quirk ffffffff80281b40 for 0000:00:1d.1 PCI: Calling quirk ffffffff80281680 for 0000:00:1d.1 PCI: Found 0000:00:1e.0 [10b9/1573] 000601 00 PCI: Calling quirk ffffffff801ede00 for 0000:00:1e.0 PCI: Calling quirk ffffffff80281b40 for 0000:00:1e.0 PCI: Calling quirk ffffffff80281680 for 0000:00:1e.0 PCI: Found 0000:00:1e.1 [10b9/7101] 000680 00 PCI: Calling quirk ffffffff801ede00 for 0000:00:1e.1 PCI: Calling quirk ffffffff801ee0a0 for 0000:00:1e.1 PCI quirk: region 1000-103f claimed by ali7101 ACPI PCI: Calling quirk ffffffff80281b40 for 0000:00:1e.1 PCI: Calling quirk ffffffff80281680 for 0000:00:1e.1 PCI: Found 0000:00:1f.0 [10b9/5229] 000101 00 PCI: Calling quirk ffffffff801ede00 for 0000:00:1f.0 PCI: Calling quirk ffffffff80281b40 for 0000:00:1f.0 PCI: Calling quirk ffffffff80281680 for 0000:00:1f.0 PCI: Fixups for bus 0000:00 PCI: Scanning behind PCI bridge 0000:00:01.0, config 010100, pass 0 PCI: Scanning bus 0000:01 PCI: Found 0000:01:05.0 [1002/5955] 000300 00 PCI: Calling quirk ffffffff801ede00 for 0000:01:05.0 PCI: Calling quirk ffffffff80281b40 for 0000:01:05.0 Boot video device is 0000:01:05.0 PCI: Calling quirk ffffffff80281680 for 0000:01:05.0 PCI: Fixups for bus 0000:01 PCI: Bus scan for 0000:01 returning with max=01 PCI: Scanning behind PCI bridge 0000:00:14.0, config 000000, pass 0 PCI: Scanning behind PCI bridge 0000:00:19.0, config 020200, pass 0 PCI: Scanning bus 0000:02 PCI: Fixups for bus 0000:02 PCI: Bus scan for 0000:02 returning with max=02 PCI: Scanning behind PCI bridge 0000:00:01.0, config 010100, pass 1 PCI: Scanning behind PCI bridge 0000:00:14.0, config 000000, pass 1 PCI: Scanning behind PCI bridge 0000:00:19.0, config 020200, pass 1 PCI: Bus scan for 0000:00 returning with max=06 ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PE2P._PRT] ACPI: Embedded Controller [EC0] (gpe 3) ACPI: PCI Interrupt Link [LNKA] (IRQs 5 7 9 10 *11) ACPI: PCI Interrupt Link [LNKB] (IRQs *5 7 9 10 11) ACPI: PCI Interrupt Link [LNKC] (IRQs 5 7 9 *10 11) ACPI: PCI Interrupt Link [LNKD] (IRQs 5 7 9 10 11) *0, disabled. ACPI: PCI Interrupt Link [LNKE] (IRQs 5 *7 9 10 11) ACPI: PCI Interrupt Link [LNKF] (IRQs 5 7 9 10 11) *0, disabled. ACPI: PCI Interrupt Link [LNKG] (IRQs 5 7 9 10 *11) ACPI: PCI Interrupt Link [LNKH] (IRQs 5 7 9 10 *11) ACPI: PCI Interrupt Link [LNKU] (IRQs 5 *7 9 10 11) PCI: Using ACPI for IRQ routing PCI: If a device doesn't work, try "pci=routeirq". If it helps, post a report PCI-DMA: Disabling IOMMU. got res [84000000:84000fff] bus [84000000:84000fff] flags 200 for BAR 0 of 0000:00:14.0 PCI: moved device 0000:00:14.0 resource 0 (200) to 84000000 got res [84001000:840010ff] bus [84001000:840010ff] flags 200 for BAR 0 of 0000:00:1c.3 PCI: moved device 0000:00:1c.3 resource 0 (200) to 84001000 got res [c0020000:c003ffff] bus [c0020000:c003ffff] flags 7202 for BAR 6 of 0000:01:05.0 PCI: Bridge: 0000:00:01.0 IO window: c000-dfff MEM window: c0000000-cfffffff PREFETCH window: 90000000-9fffffff PCI: Bus 3, cardbus bridge: 0000:00:14.0 IO window: 00001800-000018ff IO window: 00001c00-00001cff PREFETCH window: 80000000-81ffffff MEM window: 82000000-83ffffff PCI: Bridge: 0000:00:19.0 IO window: a000-bfff MEM window: b8000000-bfffffff PREFETCH window: 88000000-8fffffff GSI 16 sharing vector 0xA9 and IRQ 16 ACPI: PCI Interrupt 0000:00:14.0[A] -> GSI 17 (level, low) -> IRQ 169 PCI: Setting latency timer of device 0000:00:19.0 to 64 IA32 emulation $Id: sys_ia32.c,v 1.32 2002/03/24 13:02:28 ak Exp $ audit: initializing netlink socket (disabled) audit(1142249662.276:1): initialized VFS: Disk quotas dquot_6.5.1 Dquot-cache hash table entries: 512 (order 0, 4096 bytes) Initializing Cryptographic API io scheduler noop registered io scheduler anticipatory registered io scheduler deadline registered io scheduler cfq registered PCI: Calling quirk ffffffff801ed7c0 for 0000:00:00.0 PCI: Calling quirk ffffffff80274880 for 0000:00:00.0 PCI: Calling quirk ffffffff801ed7c0 for 0000:00:01.0 PCI: Calling quirk ffffffff80274880 for 0000:00:01.0 PCI: Calling quirk ffffffff801ed7c0 for 0000:00:14.0 PCI: Calling quirk ffffffff80274880 for 0000:00:14.0 PCI: Calling quirk ffffffff801ed7c0 for 0000:00:15.0 PCI: Calling quirk ffffffff80274880 for 0000:00:15.0 PCI: Calling quirk ffffffff801ed7c0 for 0000:00:18.0 PCI: Calling quirk ffffffff80274880 for 0000:00:18.0 PCI: Calling quirk ffffffff801ed7c0 for 0000:00:18.1 PCI: Calling quirk ffffffff80274880 for 0000:00:18.1 PCI: Calling quirk ffffffff801ed7c0 for 0000:00:18.2 PCI: Calling quirk ffffffff80274880 for 0000:00:18.2 PCI: Calling quirk ffffffff801ed7c0 for 0000:00:18.3 PCI: Calling quirk ffffffff80274880 for 0000:00:18.3 PCI: Calling quirk ffffffff801ed7c0 for 0000:00:19.0 PCI: Calling quirk ffffffff80274880 for 0000:00:19.0 PCI: Calling quirk ffffffff801ed7c0 for 0000:00:1b.0 PCI: Calling quirk ffffffff80274880 for 0000:00:1b.0 PCI: Calling quirk ffffffff801ed7c0 for 0000:00:1c.0 PCI: Calling quirk ffffffff80274880 for 0000:00:1c.0 PCI: Calling quirk ffffffff801ed7c0 for 0000:00:1c.1 PCI: Calling quirk ffffffff80274880 for 0000:00:1c.1 PCI: Calling quirk ffffffff801ed7c0 for 0000:00:1c.3 PCI: Calling quirk ffffffff80274880 for 0000:00:1c.3 PCI: Calling quirk ffffffff801ed7c0 for 0000:00:1d.0 PCI: Calling quirk ffffffff80274880 for 0000:00:1d.0 PCI: Calling quirk ffffffff801ed7c0 for 0000:00:1d.1 PCI: Calling quirk ffffffff80274880 for 0000:00:1d.1 PCI: Calling quirk ffffffff801ed7c0 for 0000:00:1e.0 PCI: Calling quirk ffffffff80274880 for 0000:00:1e.0 PCI: Calling quirk ffffffff801ed7c0 for 0000:00:1e.1 PCI: Calling quirk ffffffff80274880 for 0000:00:1e.1 PCI: Calling quirk ffffffff801ed7c0 for 0000:00:1f.0 PCI: Calling quirk ffffffff80274880 for 0000:00:1f.0 PCI: Calling quirk ffffffff801ed7c0 for 0000:01:05.0 PCI: Calling quirk ffffffff80274880 for 0000:01:05.0 vesafb: framebuffer at 0x90000000, mapped to 0xffffc20000080000, using 1875k, total 131072k vesafb: mode is 800x600x16, linelength=1600, pages=135 vesafb: scrolling: redraw vesafb: Truecolor: size=0:5:6:5, shift=0:11:5:0 vesafb: Mode is not VGA compatible Console: switching to colour frame buffer device 100x37 fb0: VESA VGA frame buffer device Real Time Clock Driver v1.12 Linux agpgart interface v0.101 (c) Dave Jones i8042.c: Detected active multiplexing controller, rev 1.1. serio: i8042 AUX0 port at 0x60,0x64 irq 12 serio: i8042 AUX1 port at 0x60,0x64 irq 12 serio: i8042 AUX2 port at 0x60,0x64 irq 12 serio: i8042 AUX3 port at 0x60,0x64 irq 12 serio: i8042 KBD port at 0x60,0x64 irq 1 Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing enabled GSI 17 sharing vector 0xB1 and IRQ 17 ACPI: PCI Interrupt 0000:00:1d.1[B] -> GSI 22 (level, low) -> IRQ 177 0000:00:1d.1: ttyS0 at I/O 0xe220 (irq = 177) is a 8250 0000:00:1d.1: ttyS1 at I/O 0xe228 (irq = 177) is a 8250 0000:00:1d.1: ttyS2 at I/O 0xe240 (irq = 177) is a 8250 0000:00:1d.1: ttyS3 at I/O 0xe248 (irq = 177) is a 8250 Couldn't register serial port 0000:00:1d.1: -28 RAMDISK driver initialized: 16 RAM disks of 32000K size 1024 blocksize pktcdvd: v0.2.0a 2004-07-14 Jens Axboe (axboe@suse.de) and petero2@telia.com Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2 ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx ALI15X3: IDE controller at PCI slot 0000:00:1f.0 ACPI: PCI Interrupt 0000:00:1f.0[A]: no GSI ALI15X3: chipset revision 199 ALI15X3: not 100% native mode: will probe irqs later ide0: BM-DMA at 0x1100-0x1107, BIOS settings: hda:DMA, hdb:pio ide1: BM-DMA at 0x1108-0x110f, BIOS settings: hdc:pio, hdd:DMA Probing IDE interface ide0... hda: FUJITSU MHV2040AT, ATA DISK drive ide0 at 0x1f0-0x1f7,0x3f6 on irq 14 Probing IDE interface ide1... hdd: MATSHITAUJ-840D, ATAPI CD/DVD-ROM drive ide1 at 0x170-0x177,0x376 on irq 15 hda: max request size: 128KiB hda: 78140160 sectors (40007 MB) w/2048KiB Cache, CHS=65535/16/63, UDMA(100) hda: cache flushes supported hda: hda1 hda2 < hda5 hda6 hda7 hda8 hda9 hda10 > mice: PS/2 mouse device common for all mice NET: Registered protocol family 2 input: AT Translated Set 2 keyboard as /class/input/input0 Losing some ticks... checking if CPU frequency changed. IP route cache hash table entries: 65536 (order: 7, 524288 bytes) TCP established hash table entries: 262144 (order: 9, 2097152 bytes) TCP bind hash table entries: 65536 (order: 7, 524288 bytes) TCP: Hash tables configured (established 262144 bind 65536) TCP reno registered TCP bic registered NET: Registered protocol family 1 ACPI wakeup devices: SBTN SLT1 SLT2 USB0 USB1 USB3 LAN MC97 ACPI: (supports S0 S3 S4 S5) BIOS EDD facility v0.16 2004-Jun-25, 1 devices found RAMDISK: Compressed image found at block 0 VFS: Mounted root (ext2 filesystem). kjournald starting. Commit interval 5 seconds EXT3-fs: mounted filesystem with ordered data mode. Freeing unused kernel memory: 176k freed Synaptics Touchpad, model: 1, fw: 5.9, id: 0xa56eb1, caps: 0x804713/0x0 input: SynPS/2 Synaptics TouchPad as /class/input/input1 usbcore: registered new driver usbfs usbcore: registered new driver hub ohci_hcd: 2005 April 22 USB 1.1 'Open' Host Controller (OHCI) Driver (PCI) ACPI: PCI Interrupt 0000:00:1c.0[A] -> GSI 17 (level, low) -> IRQ 169 ohci_hcd 0000:00:1c.0: OHCI Host Controller ohci_hcd 0000:00:1c.0: new USB bus registered, assigned bus number 1 ohci_hcd 0000:00:1c.0: irq 169, io mem 0xf8002000 hub 1-0:1.0: USB hub found hub 1-0:1.0: 3 ports detected GSI 18 sharing vector 0xB9 and IRQ 18 ACPI: PCI Interrupt 0000:00:1c.1[B] -> GSI 18 (level, low) -> IRQ 185 ohci_hcd 0000:00:1c.1: OHCI Host Controller ohci_hcd 0000:00:1c.1: new USB bus registered, assigned bus number 2 ohci_hcd 0000:00:1c.1: irq 185, io mem 0xf8003000 hub 2-0:1.0: USB hub found hub 2-0:1.0: 3 ports detected PCI: Enabling device 0000:00:1c.3 (0000 -> 0002) GSI 19 sharing vector 0xC1 and IRQ 19 ACPI: PCI Interrupt 0000:00:1c.3[D] -> GSI 23 (level, low) -> IRQ 193 PCI: Enabling bus mastering for device 0000:00:1c.3 ehci_hcd 0000:00:1c.3: EHCI Host Controller ehci_hcd 0000:00:1c.3: debug port 1 PCI: Enabling Mem-Wr-Inval for device 0000:00:1c.3 ehci_hcd 0000:00:1c.3: new USB bus registered, assigned bus number 3 ehci_hcd 0000:00:1c.3: irq 193, io mem 0x84001000 ehci_hcd 0000:00:1c.3: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004 usb 1-2: new full speed USB device using ohci_hcd and address 2 hub 3-0:1.0: USB hub found hub 3-0:1.0: 8 ports detected usb 1-2: new full speed USB device using ohci_hcd and address 3 hub 1-2:1.0: USB hub found hub 1-2:1.0: 4 ports detected ACPI: AC Adapter [AC] (on-line) ACPI: Battery Slot [BAT0] (battery present) ACPI: Power Button (FF) [PWRF] ACPI: Sleep Button (CM) [SBTN] ACPI: Lid Switch [LID] ibm_acpi: ec object not found ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3]) ACPI: Processor [CPU0] (supports 8 throttling states) usb 1-2.3: new low speed USB device using ohci_hcd and address 4 usb 1-2.3: device descriptor read/all, error 2 usb 1-2.3: new low speed USB device using ohci_hcd and address 5 usb 1-2.3: device descriptor read/all, error 2 usb 1-2.3: new low speed USB device using ohci_hcd and address 6 EXT3 FS on hda6, internal journal usb 1-2.3: device descriptor read/all, error 2 usb 1-2.3: new low speed USB device using ohci_hcd and address 7 Adding 2040212k swap on /dev/hda5. Priority:-1 extents:1 across:2040212k usb 1-2.3: device descriptor read/all, error 2 Non-volatile memory driver v1.2 kjournald starting. Commit interval 5 seconds EXT3 FS on hda10, internal journal EXT3-fs: mounted filesystem with ordered data mode. kjournald starting. Commit interval 5 seconds EXT3 FS on hda7, internal journal EXT3-fs: mounted filesystem with ordered data mode. kjournald starting. Commit interval 5 seconds EXT3 FS on hda9, internal journal EXT3-fs: mounted filesystem with ordered data mode. kjournald starting. Commit interval 5 seconds EXT3 FS on hda8, internal journal EXT3-fs: mounted filesystem with ordered data mode. loop: loaded (max 8 devices) hdd: ATAPI 24X DVD-ROM DVD-R CD-R/RW drive, 2048kB Cache, UDMA(33) Uniform CD-ROM driver Revision: 3.20 ip_conntrack version 2.4 (8192 buckets, 65536 max) - 312 bytes per conntrack ip_tables: (C) 2000-2002 Netfilter core team ACPI: PCI Interrupt 0000:00:14.0[A] -> GSI 17 (level, low) -> IRQ 169 Yenta: CardBus bridge found at 0000:00:14.0 [1071:8350] Yenta: Enabling burst memory read transactions Yenta: Using CSCINT to route CSC interrupts to PCI Yenta: Routing CardBus interrupts to PCI Yenta TI: socket 0000:00:14.0, mfunc 0x01001022, devctl 0x66 Yenta: ISA IRQ mask 0x0cf8, PCI irq 169 Socket status: 30000086 ds: ds_open(socket 0) pcmcia: Detected deprecated PCMCIA ioctl usage. pcmcia: This interface will soon be removed from the kernel; please expect breakage unless you upgrade to new tools. pcmcia: see http://www.kernel.org/pub/linux/utils/kernel/pcmcia/pcmcia.html for details. ds: ds_open(socket 1) ds: ds_open(socket 1) floppy0: no floppy controllers found floppy0: no floppy controllers found NET: Registered protocol family 15 NET: Registered protocol family 17 uli526x: ULi M5261/M5263 net driver, version 0.9.3 (2005-7-29) GSI 20 sharing vector 0xC9 and IRQ 20 ACPI: PCI Interrupt 0000:00:1b.0[A] -> GSI 20 (level, low) -> IRQ 201 eth0: ULi M5263 at pci0000:00:1b.0, 00:40:d0:74:08:93, irq 201. lp: driver loaded but no devices found uli526x: eth0 NIC Link is Up 100 Mbps Full duplex ACPI: PCI Interrupt 0000:00:1d.0[A] -> GSI 23 (level, low) -> IRQ 193 intel8x0_measure_ac97_clock: measured 63458 usecs intel8x0: clocking to 48000 hdd: drive_cmd: status=0x51 { DriveReady SeekComplete Error } hdd: drive_cmd: error=0x04 { AbortedCommand } ide: failed opcode was: 0xec hdd: drive_cmd: status=0x51 { DriveReady SeekComplete Error } hdd: drive_cmd: error=0x04 { AbortedCommand } ide: failed opcode was: 0xec hdd: drive_cmd: status=0x51 { DriveReady SeekComplete Error } hdd: drive_cmd: error=0x04 { AbortedCommand } ide: failed opcode was: 0xec Installing knfsd (copyright (C) 1996 okir@monad.swb.de). NFSD: Using /var/lib/nfs/v4recovery as the NFSv4 state recovery directory NFSD: recovery directory /var/lib/nfs/v4recovery doesn't exist NFSD: starting 90-second grace period fglrx: module license 'Proprietary. (C) 2002 - ATI Technologies, Starnberg, GERMANY' taints kernel. [fglrx] Maximum main memory to use for locked dma buffers: 1765 MBytes. ACPI: PCI Interrupt 0000:01:05.0[A] -> GSI 17 (level, low) -> IRQ 169 [fglrx] module loaded - fglrx 8.23.7 [Mar 6 2006] on minor 0 [fglrx] free PCIe = 54804480 [fglrx] max PCIe = 54804480 [fglrx] free LFB = 119762944 [fglrx] max LFB = 119762944 [fglrx] free Inv = 0 [fglrx] max Inv = 0 [fglrx] total Inv = 0 [fglrx] total TIM = 0 [fglrx] total FB = 0 [fglrx] total PCIe = 16384 [fglrx] Flat panel plugged in powernow-k8: Found 1 AMD Athlon 64 / Opteron processors (version 1.50.4) powernow-k8: 0 : fid 0xc (2000 MHz), vid 0x4 (1450 mV) powernow-k8: 1 : fid 0xa (1800 MHz), vid 0x6 (1400 mV) powernow-k8: 2 : fid 0x8 (1600 MHz), vid 0x8 (1350 mV) powernow-k8: 3 : fid 0x0 (800 MHz), vid 0x16 (1000 mV) cpu_init done, current fid 0xc, vid 0x4