public inbox for gentoo-admin@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-admin] As can I disable arp reply
@ 2005-11-07 17:49 geaaru
  2005-11-07 18:25 ` Adolfo Castro Menna
  0 siblings, 1 reply; 10+ messages in thread
From: geaaru @ 2005-11-07 17:49 UTC (permalink / raw
  To: gentoo-admin

Thanks for your replies.
I have a problem with ethernet interface:
On eth0 interface I use freeradius and a pppoe server and eth0 haven't
ip addres.
eth0    Link encap:Ethernet  HWaddr 00:0x:xx:xx:xx:xx 
          inet6 addr: xxxx::xxx:xxxx:xxxx:xxxx/64 Scope:Link 
          UP BROADCAST RUNNING NOARP MULTICAST  MTU:1500  Metric:1 
          RX packets:4136 errors:0 dropped:0 overruns:0 frame:0 
          TX packets:3808 errors:0 dropped:0 overruns:0 carrier:0 
          collisions:0 txqueuelen:0 
          RX bytes:388327 (379.2 Kb)  TX bytes:956494 (934.0 Kb)

However with ethereal I see that this interface send a arp-request like
this 
Who has 0.0.0.0? Gratiutous ARP. 

As can I disable these arp request. 
PRE: I'm under XEN SO but eth0 is on dom-0 and MAC of request is eth0
not eth0 on dom-2. kernel 2.6.12.5-r1 and eth0 is
eth0: e1000_probe: Intel(R) PRO/1000 Network Connection

I try different solutions: 
1) With ebtables:
$EBTABLES -P INPUT DROP 
$EBTABLES -P OUTPUT DROP 
$EBTABLES -P FORWARD DROP 
for i in $OTHER_IFACE 
        do 
        echo -n "Enable $i interface..." 
        $EBTABLES -A INPUT -i $i -p arp -j ACCEPT 
        $EBTABLES -A INPUT -i $i -p ipv4 -j ACCEPT 
        $EBTABLES -A OUTPUT -o $i -p arp -j ACCEPT 
        $EBTABLES -A OUTPUT -o $i -p ipv4 -j ACCEPT 
        $EBTABLES -A FORWARD -o $i -p ipv4 -j ACCEPT 
        $EBTABLES -A FORWARD -o $i -p arp -j ACCEPT 
        $EBTABLES -t nat -A POSTROUTING -o $i -p arp -j ACCEPT 
        $EBTABLES -t nat -A POSTROUTING -o $i -p ipv4 -j ACCEPT 
        $EBTABLES -t nat -A OUTPUT -o $i -p arp -j ACCEPT 
        $EBTABLES -t nat -A OUTPUT -o $i -p ipv4 -j ACCEPT 
        $EBTABLES -t nat -A PREROUTING -i $i -p arp -j ACCEPT 
        $EBTABLES -t nat -A PREROUTING -i $i -p ipv4 -j ACCEPT 
        echo "done." 
        done; 

# Rules for adsl clients interface 
$EBTABLES -A INPUT -i eth0 -p ipv4 -j ACCEPT 
$EBTABLES -A OUTPUT -o eth0 -p ipv4 -j ACCEPT 
$EBTABLES -A FORWARD -o eth0 -p ipv4 -j ACCEPT 
$EBTABLES -t nat -A PREROUTING -i eth0 -p ipv4 -j ACCEPT 
$EBTABLES -t nat -A POSTROUTING -o eth0 -p ipv4 -j ACCEPT 
$EBTABLES -t nat -A OUTPUT -o eth0 -p ipv4 -j ACCEPT

Also with these rules there are are request to 0.0.0.0. Also if I have
disabled all packet on eth0!!!!!! 
2) ifconfig eth0 0.0.0.0 -arp 
Nothings. 
3) ip link set eth0 arp off 
Nothings. 

What can I do? 

Thanks for your help.

-- 
gentoo-admin@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [gentoo-admin] As can I disable arp reply
  2005-11-07 17:49 [gentoo-admin] As can I disable arp reply geaaru
@ 2005-11-07 18:25 ` Adolfo Castro Menna
  2005-11-08 10:23   ` geaaru
  2005-11-08 12:34   ` Re: [gentoo-admin] As can I disable arp reply geaaru
  0 siblings, 2 replies; 10+ messages in thread
From: Adolfo Castro Menna @ 2005-11-07 18:25 UTC (permalink / raw
  To: gentoo-admin

geaaru wrote:

>Thanks for your replies.
>I have a problem with ethernet interface:
>On eth0 interface I use freeradius and a pppoe server and eth0 haven't
>ip addres.
>eth0    Link encap:Ethernet  HWaddr 00:0x:xx:xx:xx:xx 
>          inet6 addr: xxxx::xxx:xxxx:xxxx:xxxx/64 Scope:Link 
>          UP BROADCAST RUNNING NOARP MULTICAST  MTU:1500  Metric:1 
>          RX packets:4136 errors:0 dropped:0 overruns:0 frame:0 
>          TX packets:3808 errors:0 dropped:0 overruns:0 carrier:0 
>          collisions:0 txqueuelen:0 
>          RX bytes:388327 (379.2 Kb)  TX bytes:956494 (934.0 Kb)
>
>However with ethereal I see that this interface send a arp-request like
>this 
>Who has 0.0.0.0? Gratiutous ARP. 
>
>As can I disable these arp request. 
>PRE: I'm under XEN SO but eth0 is on dom-0 and MAC of request is eth0
>not eth0 on dom-2. kernel 2.6.12.5-r1 and eth0 is
>eth0: e1000_probe: Intel(R) PRO/1000 Network Connection
>
>I try different solutions: 
>1) With ebtables:
>$EBTABLES -P INPUT DROP 
>$EBTABLES -P OUTPUT DROP 
>$EBTABLES -P FORWARD DROP 
>for i in $OTHER_IFACE 
>        do 
>        echo -n "Enable $i interface..." 
>        $EBTABLES -A INPUT -i $i -p arp -j ACCEPT 
>        $EBTABLES -A INPUT -i $i -p ipv4 -j ACCEPT 
>        $EBTABLES -A OUTPUT -o $i -p arp -j ACCEPT 
>        $EBTABLES -A OUTPUT -o $i -p ipv4 -j ACCEPT 
>        $EBTABLES -A FORWARD -o $i -p ipv4 -j ACCEPT 
>        $EBTABLES -A FORWARD -o $i -p arp -j ACCEPT 
>        $EBTABLES -t nat -A POSTROUTING -o $i -p arp -j ACCEPT 
>        $EBTABLES -t nat -A POSTROUTING -o $i -p ipv4 -j ACCEPT 
>        $EBTABLES -t nat -A OUTPUT -o $i -p arp -j ACCEPT 
>        $EBTABLES -t nat -A OUTPUT -o $i -p ipv4 -j ACCEPT 
>        $EBTABLES -t nat -A PREROUTING -i $i -p arp -j ACCEPT 
>        $EBTABLES -t nat -A PREROUTING -i $i -p ipv4 -j ACCEPT 
>        echo "done." 
>        done; 
>
># Rules for adsl clients interface 
>$EBTABLES -A INPUT -i eth0 -p ipv4 -j ACCEPT 
>$EBTABLES -A OUTPUT -o eth0 -p ipv4 -j ACCEPT 
>$EBTABLES -A FORWARD -o eth0 -p ipv4 -j ACCEPT 
>$EBTABLES -t nat -A PREROUTING -i eth0 -p ipv4 -j ACCEPT 
>$EBTABLES -t nat -A POSTROUTING -o eth0 -p ipv4 -j ACCEPT 
>$EBTABLES -t nat -A OUTPUT -o eth0 -p ipv4 -j ACCEPT
>
>Also with these rules there are are request to 0.0.0.0. Also if I have
>disabled all packet on eth0!!!!!! 
>2) ifconfig eth0 0.0.0.0 -arp 
>Nothings. 
>3) ip link set eth0 arp off 
>Nothings. 
>
>What can I do? 
>
>Thanks for your help.
>
>  
>
try using arptables package or take a look on /etc/sysctl.conf for arp 
stuff like:
net.ipv4.conf.eth0.arp_ignore =
net.ipv4.conf.eth0.arp_announce =
net.ipv4.conf.eth0.arp_filter =

it might help you, cheers

-- 
gentoo-admin@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-desktop] [gentoo-admin] Problem with configuring network via '/sbin/ifconfig'
  2005-11-08 10:23   ` geaaru
@ 2005-11-08  9:25     ` Vitaly Kovalyshyn
  2005-11-08  9:25       ` Vitaly Kovalyshyn
                         ` (3 more replies)
  0 siblings, 4 replies; 10+ messages in thread
From: Vitaly Kovalyshyn @ 2005-11-08  9:25 UTC (permalink / raw
  To: gentoo-admin; +Cc: gentoo-user, gentoo-desktop

[-- Attachment #1: Type: text/plain, Size: 754 bytes --]

Hello, everyone!

On this Sunday I've installed GentooLinux-2005.1 from stage-1 on my box
Everthing looks ok! I've emerged bootstap, system and kde-3.5.0_beta2

Looks ok! But network doesn't work... I start to configure it by hand... and 
didn't fond ifconfig in system!!!

there is no  /sbin/ifconfig

How can I fix it? Maybe I missed something? What I must emerge for getting 
ifconfig and rest network utils???

-- 
Vitaly Kovalyshyn aka samael
ICQ: 169219607
e-mail: samael@ugcc.org.ua
Jabber: samael@jabber.ugcc.org.ua

~~~~~~~~~~~~~~~~~~~
Open Your mind from closed Windows - use OpenSource!

UNIX is user-friendly; it's just picky about its friends!!!
UNIX is simple; it just takes a genius to understand its simplicity!!!

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-admin] Problem with configuring network via '/sbin/ifconfig'
  2005-11-08  9:25     ` [gentoo-desktop] [gentoo-admin] Problem with configuring network via '/sbin/ifconfig' Vitaly Kovalyshyn
@ 2005-11-08  9:25       ` Vitaly Kovalyshyn
  2005-11-08 10:44       ` geaaru
                         ` (2 subsequent siblings)
  3 siblings, 0 replies; 10+ messages in thread
From: Vitaly Kovalyshyn @ 2005-11-08  9:25 UTC (permalink / raw
  To: gentoo-admin; +Cc: gentoo-user, gentoo-desktop

[-- Attachment #1: Type: text/plain, Size: 754 bytes --]

Hello, everyone!

On this Sunday I've installed GentooLinux-2005.1 from stage-1 on my box
Everthing looks ok! I've emerged bootstap, system and kde-3.5.0_beta2

Looks ok! But network doesn't work... I start to configure it by hand... and 
didn't fond ifconfig in system!!!

there is no  /sbin/ifconfig

How can I fix it? Maybe I missed something? What I must emerge for getting 
ifconfig and rest network utils???

-- 
Vitaly Kovalyshyn aka samael
ICQ: 169219607
e-mail: samael@ugcc.org.ua
Jabber: samael@jabber.ugcc.org.ua

~~~~~~~~~~~~~~~~~~~
Open Your mind from closed Windows - use OpenSource!

UNIX is user-friendly; it's just picky about its friends!!!
UNIX is simple; it just takes a genius to understand its simplicity!!!

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [gentoo-admin] As can I disable arp reply
  2005-11-07 18:25 ` Adolfo Castro Menna
@ 2005-11-08 10:23   ` geaaru
  2005-11-08  9:25     ` [gentoo-desktop] [gentoo-admin] Problem with configuring network via '/sbin/ifconfig' Vitaly Kovalyshyn
  2005-11-08 12:34   ` Re: [gentoo-admin] As can I disable arp reply geaaru
  1 sibling, 1 reply; 10+ messages in thread
From: geaaru @ 2005-11-08 10:23 UTC (permalink / raw
  To: gentoo-admin

On Mon, 2005-11-07 at 15:25 -0300, Adolfo Castro Menna wrote:
> geaaru wrote:
> 
> >Thanks for your replies.
> >I have a problem with ethernet interface:
> >On eth0 interface I use freeradius and a pppoe server and eth0 haven't
> >ip addres.
> >eth0    Link encap:Ethernet  HWaddr 00:0x:xx:xx:xx:xx 
> >          inet6 addr: xxxx::xxx:xxxx:xxxx:xxxx/64 Scope:Link 
> >          UP BROADCAST RUNNING NOARP MULTICAST  MTU:1500  Metric:1 
> >          RX packets:4136 errors:0 dropped:0 overruns:0 frame:0 
> >          TX packets:3808 errors:0 dropped:0 overruns:0 carrier:0 
> >          collisions:0 txqueuelen:0 
> >          RX bytes:388327 (379.2 Kb)  TX bytes:956494 (934.0 Kb)
> >
> >However with ethereal I see that this interface send a arp-request like
> >this 
> >Who has 0.0.0.0? Gratiutous ARP. 
> >
> >As can I disable these arp request. 
> >PRE: I'm under XEN SO but eth0 is on dom-0 and MAC of request is eth0
> >not eth0 on dom-2. kernel 2.6.12.5-r1 and eth0 is
> >eth0: e1000_probe: Intel(R) PRO/1000 Network Connection
> >
> >I try different solutions: 
> >1) With ebtables:
> >$EBTABLES -P INPUT DROP 
> >$EBTABLES -P OUTPUT DROP 
> >$EBTABLES -P FORWARD DROP 
> >for i in $OTHER_IFACE 
> >        do 
> >        echo -n "Enable $i interface..." 
> >        $EBTABLES -A INPUT -i $i -p arp -j ACCEPT 
> >        $EBTABLES -A INPUT -i $i -p ipv4 -j ACCEPT 
> >        $EBTABLES -A OUTPUT -o $i -p arp -j ACCEPT 
> >        $EBTABLES -A OUTPUT -o $i -p ipv4 -j ACCEPT 
> >        $EBTABLES -A FORWARD -o $i -p ipv4 -j ACCEPT 
> >        $EBTABLES -A FORWARD -o $i -p arp -j ACCEPT 
> >        $EBTABLES -t nat -A POSTROUTING -o $i -p arp -j ACCEPT 
> >        $EBTABLES -t nat -A POSTROUTING -o $i -p ipv4 -j ACCEPT 
> >        $EBTABLES -t nat -A OUTPUT -o $i -p arp -j ACCEPT 
> >        $EBTABLES -t nat -A OUTPUT -o $i -p ipv4 -j ACCEPT 
> >        $EBTABLES -t nat -A PREROUTING -i $i -p arp -j ACCEPT 
> >        $EBTABLES -t nat -A PREROUTING -i $i -p ipv4 -j ACCEPT 
> >        echo "done." 
> >        done; 
> >
> ># Rules for adsl clients interface 
> >$EBTABLES -A INPUT -i eth0 -p ipv4 -j ACCEPT 
> >$EBTABLES -A OUTPUT -o eth0 -p ipv4 -j ACCEPT 
> >$EBTABLES -A FORWARD -o eth0 -p ipv4 -j ACCEPT 
> >$EBTABLES -t nat -A PREROUTING -i eth0 -p ipv4 -j ACCEPT 
> >$EBTABLES -t nat -A POSTROUTING -o eth0 -p ipv4 -j ACCEPT 
> >$EBTABLES -t nat -A OUTPUT -o eth0 -p ipv4 -j ACCEPT
> >
> >Also with these rules there are are request to 0.0.0.0. Also if I have
> >disabled all packet on eth0!!!!!! 
> >2) ifconfig eth0 0.0.0.0 -arp 
> >Nothings. 
> >3) ip link set eth0 arp off 
> >Nothings. 
> >
> >What can I do? 
> >
> >Thanks for your help.
> >
> >  
> >
> try using arptables package or take a look on /etc/sysctl.conf for arp 
> stuff like:
> net.ipv4.conf.eth0.arp_ignore =
> net.ipv4.conf.eth0.arp_announce =
> net.ipv4.conf.eth0.arp_filter =
> 
> it might help you, cheers
> 

on /proc/sys/net/ipv4/conf/eth0: arp_announce, arp_filter and arp_ignore
are set to 0. It doesn't work. Also if I set to 1 arp_ignore and
arp_filter.
Maybe is a problem with Xen!I don't know!

-- 
gentoo-admin@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [gentoo-admin] Problem with configuring network via '/sbin/ifconfig'
  2005-11-08  9:25     ` [gentoo-desktop] [gentoo-admin] Problem with configuring network via '/sbin/ifconfig' Vitaly Kovalyshyn
  2005-11-08  9:25       ` Vitaly Kovalyshyn
@ 2005-11-08 10:44       ` geaaru
  2006-02-13  9:14       ` [gentoo-admin] [gentoo-desktop] Problem with Gentoo-2006.0 on AMD64 Athlon 3000+ Vitaly Kovalyshyn
  2006-02-14 10:03       ` Vitaly Kovalyshyn
  3 siblings, 0 replies; 10+ messages in thread
From: geaaru @ 2005-11-08 10:44 UTC (permalink / raw
  To: gentoo-admin

On Tue, 2005-11-08 at 09:25 +0000, Vitaly Kovalyshyn wrote:
> Hello, everyone!
> 
> On this Sunday I've installed GentooLinux-2005.1 from stage-1 on my box
> Everthing looks ok! I've emerged bootstap, system and kde-3.5.0_beta2
> 
> Looks ok! But network doesn't work... I start to configure it by hand... and 
> didn't fond ifconfig in system!!!
> 
> there is no  /sbin/ifconfig
> 
> How can I fix it? Maybe I missed something? What I must emerge for getting 
> ifconfig and rest network utils???
> 
For know what package contains a file:
xxxxxxx @xxxx # equery belongs ifconfig
[ Searching for file(s) ifconfig in *... ]
sys-apps/net-tools-1.60-r11 (/sbin/ifconfig)
sys-apps/baselayout-1.11.13-r1 (/lib/rcscripts/net.modules.d/ifconfig)

So I think that you must emerge net-tools and baselayout.

Bye

-- 
gentoo-admin@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Re: [gentoo-admin] As can I disable arp reply
  2005-11-07 18:25 ` Adolfo Castro Menna
  2005-11-08 10:23   ` geaaru
@ 2005-11-08 12:34   ` geaaru
  1 sibling, 0 replies; 10+ messages in thread
From: geaaru @ 2005-11-08 12:34 UTC (permalink / raw
  To: gentoo-admin

Maybe there is a problem with xen: 

                                 Code:
                                    
                       testing_xen ~ # mii-tool 
         SIOCGMIIPHY on 'eth0' failed: Operation not supported 
          eth1: negotiated 100baseTx-FD flow-control, link ok 
                     testing_xen ~ # ethtool eth0 
                          Settings for eth0: 
                           No data available 
                                    

With mii-tool I can't read eth0, while is unload module of eth0 and the
reload module e1000 there is a new interface eth2 that mii-tool see
correctly. While eth0 had always same error message. I don't know! :?:

On another abnormal of this system is that if I see traffic with
ethereal from a client see arp request, while from ethereal on server I
can't see arp request!

> geaaru wrote:
> 
> >Thanks for your replies.
> >I have a problem with ethernet interface:
> >On eth0 interface I use freeradius and a pppoe server and eth0 haven't
> >ip addres.
> >eth0    Link encap:Ethernet  HWaddr 00:0x:xx:xx:xx:xx 
> >          inet6 addr: xxxx::xxx:xxxx:xxxx:xxxx/64 Scope:Link 
> >          UP BROADCAST RUNNING NOARP MULTICAST  MTU:1500  Metric:1 
> >          RX packets:4136 errors:0 dropped:0 overruns:0 frame:0 
> >          TX packets:3808 errors:0 dropped:0 overruns:0 carrier:0 
> >          collisions:0 txqueuelen:0 
> >          RX bytes:388327 (379.2 Kb)  TX bytes:956494 (934.0 Kb)
> >
> >However with ethereal I see that this interface send a arp-request like
> >this 
> >Who has 0.0.0.0? Gratiutous ARP. 
> >
> >As can I disable these arp request. 
> >PRE: I'm under XEN SO but eth0 is on dom-0 and MAC of request is eth0
> >not eth0 on dom-2. kernel 2.6.12.5-r1 and eth0 is
> >eth0: e1000_probe: Intel(R) PRO/1000 Network Connection
> >
> >I try different solutions: 
> >1) With ebtables:
> >$EBTABLES -P INPUT DROP 
> >$EBTABLES -P OUTPUT DROP 
> >$EBTABLES -P FORWARD DROP 
> >for i in $OTHER_IFACE 
> >        do 
> >        echo -n "Enable $i interface..." 
> >        $EBTABLES -A INPUT -i $i -p arp -j ACCEPT 
> >        $EBTABLES -A INPUT -i $i -p ipv4 -j ACCEPT 
> >        $EBTABLES -A OUTPUT -o $i -p arp -j ACCEPT 
> >        $EBTABLES -A OUTPUT -o $i -p ipv4 -j ACCEPT 
> >        $EBTABLES -A FORWARD -o $i -p ipv4 -j ACCEPT 
> >        $EBTABLES -A FORWARD -o $i -p arp -j ACCEPT 
> >        $EBTABLES -t nat -A POSTROUTING -o $i -p arp -j ACCEPT 
> >        $EBTABLES -t nat -A POSTROUTING -o $i -p ipv4 -j ACCEPT 
> >        $EBTABLES -t nat -A OUTPUT -o $i -p arp -j ACCEPT 
> >        $EBTABLES -t nat -A OUTPUT -o $i -p ipv4 -j ACCEPT 
> >        $EBTABLES -t nat -A PREROUTING -i $i -p arp -j ACCEPT 
> >        $EBTABLES -t nat -A PREROUTING -i $i -p ipv4 -j ACCEPT 
> >        echo "done." 
> >        done; 
> >
> ># Rules for adsl clients interface 
> >$EBTABLES -A INPUT -i eth0 -p ipv4 -j ACCEPT 
> >$EBTABLES -A OUTPUT -o eth0 -p ipv4 -j ACCEPT 
> >$EBTABLES -A FORWARD -o eth0 -p ipv4 -j ACCEPT 
> >$EBTABLES -t nat -A PREROUTING -i eth0 -p ipv4 -j ACCEPT 
> >$EBTABLES -t nat -A POSTROUTING -o eth0 -p ipv4 -j ACCEPT 
> >$EBTABLES -t nat -A OUTPUT -o eth0 -p ipv4 -j ACCEPT
> >
> >Also with these rules there are are request to 0.0.0.0. Also if I have
> >disabled all packet on eth0!!!!!! 
> >2) ifconfig eth0 0.0.0.0 -arp 
> >Nothings. 
> >3) ip link set eth0 arp off 
> >Nothings. 
> >
> >What can I do? 
> >
> >Thanks for your help.
> >
> >  
> >
> try using arptables package or take a look on /etc/sysctl.conf for arp 
> stuff like:
> net.ipv4.conf.eth0.arp_ignore =
> net.ipv4.conf.eth0.arp_announce =
> net.ipv4.conf.eth0.arp_filter =
> 
> it might help you, cheers
> 

-- 
gentoo-admin@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-admin] [gentoo-desktop] Problem with Gentoo-2006.0 on  AMD64 Athlon 3000+
  2005-11-08  9:25     ` [gentoo-desktop] [gentoo-admin] Problem with configuring network via '/sbin/ifconfig' Vitaly Kovalyshyn
  2005-11-08  9:25       ` Vitaly Kovalyshyn
  2005-11-08 10:44       ` geaaru
@ 2006-02-13  9:14       ` Vitaly Kovalyshyn
  2006-02-14 10:03       ` Vitaly Kovalyshyn
  3 siblings, 0 replies; 10+ messages in thread
From: Vitaly Kovalyshyn @ 2006-02-13  9:14 UTC (permalink / raw
  To: gentoo-admin; +Cc: gentoo-desktop

Good time of day!

I had a problem. I decided to renew the computer. Replaced
Duron950/Soltek KT133/512 MB/nVidia 2MX 400 AGP x2
on
AMD64 Athlon 3000+/Asus of K8N4-E Delux/1GB/ATI X600 PCI-Express x16

Downloaded gentoo-x86_64-minimal and stage1-amd64
emerge sync
make.profile -> amd64/2006.0

Before ALL worked perfectly, and sound and TV/FM.. Now, to neither the
sound nor TV, and console only in the VGA-mode... See my logs....
I nead Your advise.....

PS: In KNOPPIX LIVECD (i386) – all works perfectly!!!

----  DMESG  -------------

Bootdata ok (command line is root=/dev/hda7
video=vesafb:ypan,1024x768-32@60 )
Linux version 2.6.15-gentoo-r3 (root@livecd) (gcc version 3.4.4 (Gentoo
3.4.4-r1, ssp-3.4.4-1.0, pie-8.7.8)) #1 SMP PREEMPT Sun Feb 12 21:41:15
EET 2006
BIOS-provided physical RAM map:
 BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
 BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
 BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
 BIOS-e820: 0000000000100000 - 000000003fff0000 (usable)
 BIOS-e820: 000000003fff0000 - 000000003fff3000 (ACPI NVS)
 BIOS-e820: 000000003fff3000 - 0000000040000000 (ACPI data)
 BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
 BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
 BIOS-e820: 00000000fee00000 - 00000000fef00000 (reserved)
 BIOS-e820: 00000000fefffc00 - 00000000ff000000 (reserved)
 BIOS-e820: 00000000ffff0000 - 0000000100000000 (reserved)
ACPI: RSDP (v000 Nvidia                                ) @ 0x00000000000f77b0
ACPI: RSDT (v001 Nvidia AWRDACPI 0x42302e31 AWRD 0x00000000) @
0x000000003fff3040
ACPI: FADT (v001 Nvidia AWRDACPI 0x42302e31 AWRD 0x00000000) @
0x000000003fff30c0
ACPI: MCFG (v001 Nvidia AWRDACPI 0x42302e31 AWRD 0x00000000) @
0x000000003fff96c0
ACPI: MADT (v001 Nvidia AWRDACPI 0x42302e31 AWRD 0x00000000) @
0x000000003fff9600
ACPI: DSDT (v001 NVIDIA AWRDACPI 0x00001000 MSFT 0x0100000e) @
0x0000000000000000
On node 0 totalpages: 257558
  DMA zone: 3053 pages, LIFO batch:0
  DMA32 zone: 254505 pages, LIFO batch:31
  Normal zone: 0 pages, LIFO batch:0
  HighMem zone: 0 pages, LIFO batch:0
Nvidia board detected. Ignoring ACPI timer override.
ACPI: Local APIC address 0xfee00000
ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
Processor #0 15:4 APIC version 16
ACPI: LAPIC_NMI (acpi_id[0x00] 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: BIOS IRQ0 pin2 override ignored.
ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge)
ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge)
ACPI: IRQ9 used by override.
ACPI: IRQ14 used by override.
ACPI: IRQ15 used by override.
Setting APIC routing to flat
Using ACPI (MADT) for SMP configuration information
Allocating PCI resources starting at 50000000 (gap: 40000000:a0000000)
Checking aperture...
CPU 0: aperture @ 8c8a000000 size 32 MB
Aperture from northbridge cpu 0 too small (32 MB)
No AGP bridge found
Built 1 zonelists
Kernel command line: root=/dev/hda7 video=vesafb:ypan,1024x768-32@60
Initializing CPU#0
PID hash table entries: 4096 (order: 12, 131072 bytes)
time.c: Using 1.193182 MHz PIT timer.
time.c: Detected 2010.322 MHz processor.
Speakup v-2.00 CVS: Wed Dec 21 14:36:03 EST 2005 : initialized
Console: colour VGA+ 80x25
Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes)
Inode-cache hash table entries: 65536 (order: 7, 524288 bytes)
Memory: 1028252k/1048512k available (2241k kernel code, 19624k reserved,
727k data, 196k init)
Calibrating delay using timer specific routine.. 4024.95 BogoMIPS
(lpj=8049902)
Mount-cache hash table entries: 256
CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
CPU: L2 Cache: 512K (64 bytes/line)
mtrr: v2.0 (20020519)
Using local APIC timer interrupts.
Detected 12.564 MHz APIC timer.
Brought up 1 CPUs
time.c: Using PIT/TSC based timekeeping.
testing NMI watchdog ... OK.
NET: Registered protocol family 16
ACPI: bus type pci registered
PCI: Using configuration type 1
PCI: Using MMCONFIG at e0000000
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)
PCI: Transparent bridge - 0000:00:09.0
Boot video device is 0000:01:00.0
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]
ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNK2] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNK3] (IRQs 3 4 *5 7 9 10 11 12 14 15)
ACPI: PCI Interrupt Link [LNK4] (IRQs 3 4 5 7 9 10 *11 12 14 15)
ACPI: PCI Interrupt Link [LNK5] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LUBA] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LUBB] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LMAC] (IRQs 3 4 5 7 9 10 *11 12 14 15)
ACPI: PCI Interrupt Link [LACI] (IRQs *3 4 5 7 9 10 11 12 14 15)
ACPI: PCI Interrupt Link [LMCI] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LSMB] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LUB2] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LIDE] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LSID] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LFID] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LPCA] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [APC1] (IRQs 16) *0, disabled.
ACPI: PCI Interrupt Link [APC2] (IRQs 17) *0, disabled.
ACPI: PCI Interrupt Link [APC3] (IRQs 18) *5
ACPI: PCI Interrupt Link [APC4] (IRQs 19) *11
ACPI: PCI Interrupt Link [APC5] (IRQs *16), disabled.
ACPI: PCI Interrupt Link [APCF] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APCG] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APCH] (IRQs 20 21 22 23) *0
ACPI: PCI Interrupt Link [APCJ] (IRQs 20 21 22 23) *0
ACPI: PCI Interrupt Link [APCK] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APCS] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APCL] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APCZ] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APSI] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APSJ] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APCP] (IRQs 20 21 22 23) *0, disabled.
Linux Plug and Play Support v0.97 (c) Adam Belay
pnp: PnP ACPI init
pnp: PnP ACPI: found 15 devices
SCSI subsystem initialized
PCI: Using ACPI for IRQ routing
PCI: If a device doesn't work, try "pci=routeirq".  If it helps, post a
report
PCI: Cannot allocate resource region 1 of device 0000:01:00.0
PCI-DMA: Disabling IOMMU.
pnp: 00:00: ioport range 0x4000-0x407f could not be reserved
pnp: 00:00: ioport range 0x4080-0x40ff has been reserved
pnp: 00:00: ioport range 0x4400-0x447f has been reserved
pnp: 00:00: ioport range 0x4480-0x44ff could not be reserved
pnp: 00:00: ioport range 0x4800-0x487f has been reserved
pnp: 00:00: ioport range 0x4880-0x48ff has been reserved
PCI: Bridge: 0000:00:09.0
  IO window: a000-bfff
  MEM window: da000000-dbffffff
  PREFETCH window: disabled.
PCI: Bridge: 0000:00:0b.0
  IO window: disabled.
  MEM window: disabled.
  PREFETCH window: disabled.
PCI: Bridge: 0000:00:0c.0
  IO window: disabled.
  MEM window: disabled.
  PREFETCH window: disabled.
PCI: Bridge: 0000:00:0d.0
  IO window: disabled.
  MEM window: disabled.
  PREFETCH window: disabled.
PCI: Ignore bogus resource 6 [0:0] of 0000:01:00.0
PCI: Failed to allocate I/O resource #1:4000@c000 for 0000:01:00.0
PCI: Bridge: 0000:00:0e.0
  IO window: c000-cfff
  MEM window: d8000000-d9ffffff
  PREFETCH window: d0000000-d7ffffff
PCI: Setting latency timer of device 0000:00:09.0 to 64
PCI: Setting latency timer of device 0000:00:0b.0 to 64
PCI: Setting latency timer of device 0000:00:0c.0 to 64
PCI: Setting latency timer of device 0000:00:0d.0 to 64
PCI: Setting latency timer of device 0000:00:0e.0 to 64
IA32 emulation $Id: sys_ia32.c,v 1.32 2002/03/24 13:02:28 ak Exp $
NTFS driver 2.1.25 [Flags: R/W].
Initializing Cryptographic API
io scheduler noop registered
io scheduler deadline registered
PCI: Setting latency timer of device 0000:00:0b.0 to 64
pcie_portdrv_probe->Dev[005d:10de] has invalid IRQ. Check vendor BIOS
assign_interrupt_mode Found MSI capability
Allocate Port Service[pcie00]
Allocate Port Service[pcie03]
PCI: Setting latency timer of device 0000:00:0c.0 to 64
pcie_portdrv_probe->Dev[005d:10de] has invalid IRQ. Check vendor BIOS
assign_interrupt_mode Found MSI capability
Allocate Port Service[pcie00]
Allocate Port Service[pcie03]
PCI: Setting latency timer of device 0000:00:0d.0 to 64
pcie_portdrv_probe->Dev[005d:10de] has invalid IRQ. Check vendor BIOS
assign_interrupt_mode Found MSI capability
Allocate Port Service[pcie00]
Allocate Port Service[pcie03]
PCI: Setting latency timer of device 0000:00:0e.0 to 64
pcie_portdrv_probe->Dev[005d:10de] has invalid IRQ. Check vendor BIOS
assign_interrupt_mode Found MSI capability
Allocate Port Service[pcie00]
Allocate Port Service[pcie03]
Real Time Clock Driver v1.12
initialized device: /dev/synth, node ( MAJOR 10, MINOR 25 )
Linux agpgart interface v0.101 (c) Dave Jones
PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
serio: i8042 AUX 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
serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
serial8250: ttyS0 at I/O 0x3f8 (irq = 0) is a 16550A
00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
mice: PS/2 mouse device common for all mice
RAMDISK driver initialized: 16 RAM disks of 8192K size 1024 blocksize
loop: loaded (max 8 devices)
Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
NFORCE-CK804: IDE controller at PCI slot 0000:00:06.0
NFORCE-CK804: chipset revision 242
NFORCE-CK804: not 100% native mode: will probe irqs later
NFORCE-CK804: 0000:00:06.0 (rev f2) UDMA133 controller
    ide0: BM-DMA at 0xf000-0xf007, BIOS settings: hda:DMA, hdb:DMA
    ide1: BM-DMA at 0xf008-0xf00f, BIOS settings: hdc:DMA, hdd:DMA
Probing IDE interface ide0...
input: AT Translated Set 2 keyboard as /class/input/input0
Losing some ticks... checking if CPU frequency changed.
input: ImPS/2 Generic Wheel Mouse as /class/input/input1
hda: ST3120022A, ATA DISK drive
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
Probing IDE interface ide1...
hdc: HL-DT-ST RW/DVD GCC-4521B, ATAPI CD/DVD-ROM drive
ide1 at 0x170-0x177,0x376 on irq 15
hda: max request size: 1024KiB
hda: 234441648 sectors (120034 MB) w/2048KiB Cache, CHS=16383/255/63,
UDMA(100)
hda: cache flushes supported
 hda: hda1 hda2 < hda5 hda6 hda7 hda8 > hda3
hdc: ATAPI 52X DVD-ROM CD-R/RW drive, 2048kB Cache, UDMA(33)
Uniform CD-ROM driver Revision: 3.20
NET: Registered protocol family 2
IP route cache hash table entries: 32768 (order: 6, 262144 bytes)
TCP established hash table entries: 131072 (order: 9, 2097152 bytes)
TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
TCP: Hash tables configured (established 131072 bind 65536)
TCP reno registered
TCP bic registered
NET: Registered protocol family 1
NET: Registered protocol family 17
kjournald starting.  Commit interval 5 seconds
EXT3-fs: mounted filesystem with ordered data mode.
VFS: Mounted root (ext3 filesystem) readonly.
Freeing unused kernel memory: 196k freed
Adding 530104k swap on /dev/hda8.  Priority:-1 extents:1 across:530104k
EXT3 FS on hda7, internal journal
ReiserFS: hda3: found reiserfs format "3.6" with standard journal
ReiserFS: hda3: using ordered data mode
ReiserFS: hda3: journal params: device hda3, size 8192, journal first
block 18, max trans len 1024, max batch 900, max commit age 30, max trans
age 30
ReiserFS: hda3: checking transaction log (hda3)
ReiserFS: hda3: Using r5 hash to sort names
usbcore: registered new driver usbfs
usbcore: registered new driver hub

-------------------------------------------------

--- MESSAGES ---------------------------------

Feb 12 19:46:31 tux syslog-ng[7509]: syslog-ng version 1.6.9 starting
Feb 12 19:46:31 tux syslog-ng[7509]: Changing permissions on special file
/dev/tty12
Feb 12 19:46:31 tux DVD-ROM CD-R/RW drive, 2048kB Cache, UDMA(33)
Feb 12 19:46:31 tux Uniform CD-ROM driver Revision: 3.20
Feb 12 19:46:31 tux NET: Registered protocol family 2
Feb 12 19:46:31 tux IP route cache hash table entries: 32768 (order: 6,
262144 bytes)
Feb 12 19:46:31 tux TCP established hash table entries: 131072 (order: 9,
2097152 bytes)
Feb 12 19:46:31 tux TCP bind hash table entries: 65536 (order: 8, 1048576
bytes)
Feb 12 19:46:31 tux TCP: Hash tables configured (established 131072 bind
65536)
Feb 12 19:46:31 tux TCP reno registered
Feb 12 19:46:31 tux TCP bic registered
Feb 12 19:46:31 tux NET: Registered protocol family 1
Feb 12 19:46:31 tux NET: Registered protocol family 17
Feb 12 19:46:31 tux kjournald starting.  Commit interval 5 seconds
Feb 12 19:46:31 tux EXT3-fs: mounted filesystem with ordered data mode.
Feb 12 19:46:31 tux VFS: Mounted root (ext3 filesystem) readonly.
Feb 12 19:46:31 tux Freeing unused kernel memory: 196k freed
Feb 12 19:46:31 tux Adding 530104k swap on /dev/hda8.  Priority:-1
extents:1 across:530104k
Feb 12 19:46:31 tux EXT3 FS on hda7, internal journal
Feb 12 19:46:31 tux ReiserFS: hda3: found reiserfs format "3.6" with
standard journal
Feb 12 19:46:31 tux ReiserFS: hda3: using ordered data mode
Feb 12 19:46:31 tux ReiserFS: hda3: journal params: device hda3, size
8192, journal first block 18, max trans len 1024, max batch 900, max
commit age 30, max trans age 30
Feb 12 19:46:31 tux ReiserFS: hda3: checking transaction log (hda3)
Feb 12 19:46:31 tux ReiserFS: hda3: Using r5 hash to sort names
Feb 12 19:46:31 tux usbcore: registered new driver usbfs
Feb 12 19:46:31 tux usbcore: registered new driver hub
Feb 12 19:46:31 tux i2c_adapter i2c-0: nForce2 SMBus adapter at 0x4c00
Feb 12 19:46:31 tux i2c_adapter i2c-1: nForce2 SMBus adapter at 0x4c40
Feb 12 19:46:31 tux ohci_hcd: 2005 April 22 USB 1.1 'Open' Host Controller
(OHCI) Driver (PCI)
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APCF] disabled and
referenced, BIOS bug.
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APCF] BIOS reported IRQ 0,
using IRQ 23
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APCF] enabled at IRQ 23
Feb 12 19:46:31 tux GSI 16 sharing vector 0xB1 and IRQ 16
Feb 12 19:46:31 tux ACPI: PCI Interrupt 0000:00:02.0[A] -> Link [APCF] ->
GSI 23 (level, low) -> IRQ 16
Feb 12 19:46:31 tux ACPI: PCI interrupt for device 0000:00:02.0 disabled
Feb 12 19:46:31 tux ohci_hcd 0000:00:02.0: init 0000:00:02.0 fail, -16
Feb 12 19:46:31 tux ohci_hcd: probe of 0000:00:02.0 failed with error -16
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APCL] disabled and
referenced, BIOS bug.
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APCL] BIOS reported IRQ 0,
using IRQ 22
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APCL] enabled at IRQ 22
Feb 12 19:46:31 tux GSI 17 sharing vector 0xB9 and IRQ 17
Feb 12 19:46:31 tux ACPI: PCI Interrupt 0000:00:02.1[B] -> Link [APCL] ->
GSI 22 (level, low) -> IRQ 17
Feb 12 19:46:31 tux ACPI: PCI interrupt for device 0000:00:02.1 disabled
Feb 12 19:46:31 tux ehci_hcd 0000:00:02.1: init 0000:00:02.1 fail, -16
Feb 12 19:46:31 tux ehci_hcd: probe of 0000:00:02.1 failed with error -16
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APCJ] BIOS reported IRQ 0,
using IRQ 21
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APCJ] enabled at IRQ 21
Feb 12 19:46:31 tux GSI 18 sharing vector 0xC1 and IRQ 18
Feb 12 19:46:31 tux ACPI: PCI Interrupt 0000:00:04.0[A] -> Link [APCJ] ->
GSI 21 (level, low) -> IRQ 18
Feb 12 19:46:31 tux PCI: Setting latency timer of device 0000:00:04.0 to 64
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux AC'97 0 does not respond - RESET
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux AC'97 0 access is not valid [0xffffffff], removing mixer.
Feb 12 19:46:31 tux Unable to initialize codec #0
Feb 12 19:46:31 tux ACPI: PCI interrupt for device 0000:00:04.0 disabled
Feb 12 19:46:31 tux Intel ICH: probe of 0000:00:04.0 failed with error -5
Feb 12 19:46:31 tux libata version 1.20 loaded.
Feb 12 19:46:31 tux forcedeth.c: Reverse Engineered nForce ethernet
driver. Version 0.48.
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APCH] BIOS reported IRQ 0,
using IRQ 20
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APCH] enabled at IRQ 20
Feb 12 19:46:31 tux GSI 19 sharing vector 0xC9 and IRQ 19
Feb 12 19:46:31 tux ACPI: PCI Interrupt 0000:00:0a.0[A] -> Link [APCH] ->
GSI 20 (level, low) -> IRQ 19
Feb 12 19:46:31 tux PCI: Setting latency timer of device 0000:00:0a.0 to 64
Feb 12 19:46:31 tux forcedeth: Couldn't find register window for device
0000:00:0a.0.
Feb 12 19:46:31 tux ACPI: PCI interrupt for device 0000:00:0a.0 disabled
Feb 12 19:46:31 tux forcedeth: probe of 0000:00:0a.0 failed with error -22
Feb 12 19:46:31 tux Linux video capture interface: v1.00
Feb 12 19:46:31 tux saa7130/34: v4l2 driver version 0.2.14 loaded
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APC2] disabled and
referenced, BIOS bug.
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APC2] BIOS reported IRQ 0,
using IRQ 17
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APC2] enabled at IRQ 17
Feb 12 19:46:31 tux GSI 20 sharing vector 0xD1 and IRQ 20
Feb 12 19:46:31 tux ACPI: PCI Interrupt 0000:05:07.0[A] -> Link [APC2] ->
GSI 17 (level, low) -> IRQ 20
Feb 12 19:46:31 tux saa7130[0]: found at 0000:05:07.0, rev: 1, irq: 20,
latency: 32, mmio: 0x0
Feb 12 19:46:31 tux saa7130[0]: subsystem: 1461:a115, board:
UNKNOWN/GENERIC [card=0,autodetected]
Feb 12 19:46:31 tux saa7130[0]: can't get MMIO memory @ 0x0
Feb 12 19:46:31 tux saa7134: probe of 0000:05:07.0 failed with error -16
Feb 12 19:46:31 tux sata_sil 0000:05:0a.0: version 0.9
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APC4] BIOS reported IRQ 11,
using IRQ 19
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APC4] enabled at IRQ 19
Feb 12 19:46:31 tux GSI 21 sharing vector 0xD9 and IRQ 21
Feb 12 19:46:31 tux ACPI: PCI Interrupt 0000:05:0a.0[A] -> Link [APC4] ->
GSI 19 (level, low) -> IRQ 21
Feb 12 19:46:31 tux ACPI: PCI interrupt for device 0000:05:0a.0 disabled
Feb 12 19:46:31 tux sata_sil: probe of 0000:05:0a.0 failed with error -12
Feb 12 19:46:31 tux ieee1394: Initialized config rom entry `ip1394'
Feb 12 19:46:31 tux ohci1394: $Rev: 1313 $ Ben Collins <bcollins@debian.org>
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APC1] disabled and
referenced, BIOS bug.
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APC1] BIOS reported IRQ 0,
using IRQ 16
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APC1] enabled at IRQ 16
Feb 12 19:46:31 tux GSI 22 sharing vector 0xE1 and IRQ 22
Feb 12 19:46:31 tux ACPI: PCI Interrupt 0000:05:0b.0[A] -> Link [APC1] ->
GSI 16 (level, low) -> IRQ 22
Feb 12 19:46:31 tux ohci1394: fw-host0: Unexpected PCI resource length of 0!
Feb 12 19:46:31 tux ohci1394: MMIO resource (0x0 - 0x800) unavailable
Feb 12 19:46:31 tux ohci1394: probe of 0000:05:0b.0 failed with error -12
Feb 12 19:46:31 tux input: PC Speaker as /class/input/input2
Feb 12 19:46:31 tux Floppy drive(s): fd0 is 1.44M
Feb 12 19:46:31 tux FDC 0 is a post-1991 82077
Feb 12 19:46:31 tux parport: PnPBIOS parport detected.
Feb 12 19:46:31 tux parport0: PC-style at 0x378 (0x778), irq 7, dma 3
[PCSPP,TRISTATE,COMPAT,ECP,DMA]
Feb 12 19:46:31 tux USB Universal Host Controller Interface driver v2.3
Feb 12 19:46:43 tux login(pam_unix)[7728]: session opened for user root by
LOGIN(uid=0)
Feb 12 19:48:09 tux shutdown[7756]: shutting down for system reboot
Feb 12 19:48:09 tux init: Switching to runlevel: 6
Feb 12 19:48:17 tux syslog-ng[7509]: syslog-ng version 1.6.9 going down

-------------------------------------------

---- kernlel-2.6.15-r3  -------------------

#
# Automatically generated make config: don't edit
# Linux kernel version: 2.6.15-gentoo-r3
# Sun Feb 12 21:30:32 2006
#
CONFIG_X86_64=y
CONFIG_64BIT=y
CONFIG_X86=y
CONFIG_SEMAPHORE_SLEEPERS=y
CONFIG_MMU=y
CONFIG_RWSEM_GENERIC_SPINLOCK=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
CONFIG_X86_CMPXCHG=y
CONFIG_EARLY_PRINTK=y
CONFIG_GENERIC_ISA_DMA=y
CONFIG_GENERIC_IOMAP=y
CONFIG_ARCH_MAY_HAVE_PC_FDC=y

#
# Code maturity level options
#
CONFIG_EXPERIMENTAL=y
CONFIG_CLEAN_COMPILE=y
CONFIG_LOCK_KERNEL=y
CONFIG_INIT_ENV_ARG_LIMIT=32

#
# General setup
#
CONFIG_LOCALVERSION=""
CONFIG_LOCALVERSION_AUTO=y
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
# CONFIG_POSIX_MQUEUE is not set
# CONFIG_BSD_PROCESS_ACCT is not set
CONFIG_SYSCTL=y
# CONFIG_AUDIT is not set
CONFIG_HOTPLUG=y
CONFIG_KOBJECT_UEVENT=y
CONFIG_IKCONFIG=y
CONFIG_IKCONFIG_PROC=y
CONFIG_CPUSETS=y
CONFIG_INITRAMFS_SOURCE=""
CONFIG_CC_OPTIMIZE_FOR_SIZE=y
CONFIG_EMBEDDED=y
# CONFIG_KALLSYMS is not set
CONFIG_PRINTK=y
CONFIG_BUG=y
CONFIG_BASE_FULL=y
CONFIG_FUTEX=y
CONFIG_EPOLL=y
CONFIG_SHMEM=y
CONFIG_CC_ALIGN_FUNCTIONS=0
CONFIG_CC_ALIGN_LABELS=0
CONFIG_CC_ALIGN_LOOPS=0
CONFIG_CC_ALIGN_JUMPS=0
# CONFIG_TINY_SHMEM is not set
CONFIG_BASE_SMALL=0

#
# Loadable module support
#
CONFIG_MODULES=y
CONFIG_MODULE_UNLOAD=y
CONFIG_MODULE_FORCE_UNLOAD=y
CONFIG_OBSOLETE_MODPARM=y
CONFIG_MODVERSIONS=y
# CONFIG_MODULE_SRCVERSION_ALL is not set
CONFIG_KMOD=y
CONFIG_STOP_MACHINE=y

#
# Block layer
#
CONFIG_LBD=y

#
# IO Schedulers
#
CONFIG_IOSCHED_NOOP=y
# CONFIG_IOSCHED_AS is not set
CONFIG_IOSCHED_DEADLINE=y
# CONFIG_IOSCHED_CFQ is not set
# CONFIG_DEFAULT_AS is not set
CONFIG_DEFAULT_DEADLINE=y
# CONFIG_DEFAULT_CFQ is not set
# CONFIG_DEFAULT_NOOP is not set
CONFIG_DEFAULT_IOSCHED="deadline"

#
# Processor type and features
#
# CONFIG_MK8 is not set
# CONFIG_MPSC is not set
CONFIG_GENERIC_CPU=y
CONFIG_X86_L1_CACHE_BYTES=128
CONFIG_X86_L1_CACHE_SHIFT=7
CONFIG_X86_TSC=y
CONFIG_X86_GOOD_APIC=y
# CONFIG_MICROCODE is not set
# CONFIG_X86_MSR is not set
# CONFIG_X86_CPUID is not set
CONFIG_X86_HT=y
CONFIG_X86_IO_APIC=y
CONFIG_X86_LOCAL_APIC=y
CONFIG_MTRR=y
CONFIG_SMP=y
CONFIG_SCHED_SMT=y
# CONFIG_PREEMPT_NONE is not set
# CONFIG_PREEMPT_VOLUNTARY is not set
CONFIG_PREEMPT=y
CONFIG_PREEMPT_BKL=y
# CONFIG_NUMA is not set
CONFIG_ARCH_FLATMEM_ENABLE=y
CONFIG_SELECT_MEMORY_MODEL=y
CONFIG_FLATMEM_MANUAL=y
# CONFIG_DISCONTIGMEM_MANUAL is not set
# CONFIG_SPARSEMEM_MANUAL is not set
CONFIG_FLATMEM=y
CONFIG_FLAT_NODE_MEM_MAP=y
# CONFIG_SPARSEMEM_STATIC is not set
CONFIG_SPLIT_PTLOCK_CPUS=4
CONFIG_HAVE_ARCH_EARLY_PFN_TO_NID=y
CONFIG_NR_CPUS=8
# CONFIG_HOTPLUG_CPU is not set
CONFIG_HPET_TIMER=y
# CONFIG_X86_PM_TIMER is not set
# CONFIG_HPET_EMULATE_RTC is not set
CONFIG_GART_IOMMU=y
CONFIG_SWIOTLB=y
# CONFIG_X86_MCE is not set
CONFIG_PHYSICAL_START=0x100000
# CONFIG_KEXEC is not set
CONFIG_SECCOMP=y
# CONFIG_HZ_100 is not set
CONFIG_HZ_250=y
# CONFIG_HZ_1000 is not set
CONFIG_HZ=250
CONFIG_GENERIC_HARDIRQS=y
CONFIG_GENERIC_IRQ_PROBE=y
CONFIG_ISA_DMA_API=y
CONFIG_GENERIC_PENDING_IRQ=y

#
# Power management options
#
CONFIG_PM=y
CONFIG_PM_LEGACY=y
# CONFIG_PM_DEBUG is not set

#
# ACPI (Advanced Configuration and Power Interface) Support
#
CONFIG_ACPI=y
CONFIG_ACPI_AC=m
# CONFIG_ACPI_BATTERY is not set
CONFIG_ACPI_BUTTON=m
CONFIG_ACPI_VIDEO=m
# CONFIG_ACPI_HOTKEY is not set
CONFIG_ACPI_FAN=m
CONFIG_ACPI_PROCESSOR=m
CONFIG_ACPI_THERMAL=m
CONFIG_ACPI_ASUS=m
CONFIG_ACPI_IBM=m
CONFIG_ACPI_TOSHIBA=m
CONFIG_ACPI_BLACKLIST_YEAR=0
# CONFIG_ACPI_DEBUG is not set
CONFIG_ACPI_EC=y
CONFIG_ACPI_POWER=y
CONFIG_ACPI_SYSTEM=y
CONFIG_ACPI_CONTAINER=m

#
# CPU Frequency scaling
#
CONFIG_CPU_FREQ=y
CONFIG_CPU_FREQ_TABLE=m
# CONFIG_CPU_FREQ_DEBUG is not set
CONFIG_CPU_FREQ_STAT=m
# CONFIG_CPU_FREQ_STAT_DETAILS is not set
CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
CONFIG_CPU_FREQ_GOV_POWERSAVE=m
CONFIG_CPU_FREQ_GOV_USERSPACE=m
CONFIG_CPU_FREQ_GOV_ONDEMAND=m
CONFIG_CPU_FREQ_GOV_CONSERVATIVE=m

#
# CPUFreq processor drivers
#
CONFIG_X86_POWERNOW_K8=m
CONFIG_X86_POWERNOW_K8_ACPI=y
CONFIG_X86_SPEEDSTEP_CENTRINO=m
CONFIG_X86_SPEEDSTEP_CENTRINO_ACPI=y
CONFIG_X86_ACPI_CPUFREQ=m

#
# shared options
#
# CONFIG_X86_ACPI_CPUFREQ_PROC_INTF is not set
CONFIG_X86_P4_CLOCKMOD=m
CONFIG_X86_SPEEDSTEP_LIB=m

#
# Bus options (PCI etc.)
#
CONFIG_PCI=y
CONFIG_PCI_DIRECT=y
CONFIG_PCI_MMCONFIG=y
# CONFIG_UNORDERED_IO is not set
CONFIG_PCIEPORTBUS=y
# CONFIG_PCI_MSI is not set
# CONFIG_PCI_LEGACY_PROC is not set

#
# PCCARD (PCMCIA/CardBus) support
#
CONFIG_PCCARD=m
# CONFIG_PCMCIA_DEBUG is not set
CONFIG_PCMCIA=m
CONFIG_PCMCIA_LOAD_CIS=y
CONFIG_PCMCIA_IOCTL=y
CONFIG_CARDBUS=y

#
# PC-card bridges
#
CONFIG_YENTA=m
CONFIG_PD6729=m
CONFIG_I82092=m
CONFIG_PCCARD_NONSTATIC=m

#
# PCI Hotplug Support
#
# CONFIG_HOTPLUG_PCI is not set

#
# Executable file formats / Emulations
#
CONFIG_BINFMT_ELF=y
# CONFIG_BINFMT_MISC is not set
CONFIG_IA32_EMULATION=y
# CONFIG_IA32_AOUT is not set
CONFIG_COMPAT=y
CONFIG_SYSVIPC_COMPAT=y
CONFIG_UID16=y

#
# Networking
#
CONFIG_NET=y

#
# Networking options
#
CONFIG_PACKET=y
# CONFIG_PACKET_MMAP is not set
CONFIG_UNIX=y
CONFIG_XFRM=y
# CONFIG_XFRM_USER is not set
# CONFIG_NET_KEY is not set
CONFIG_INET=y
# CONFIG_IP_MULTICAST is not set
# CONFIG_IP_ADVANCED_ROUTER is not set
CONFIG_IP_FIB_HASH=y
# CONFIG_IP_PNP is not set
# CONFIG_NET_IPIP is not set
# CONFIG_NET_IPGRE is not set
# CONFIG_ARPD is not set
# CONFIG_SYN_COOKIES is not set
# CONFIG_INET_AH is not set
# CONFIG_INET_ESP is not set
# CONFIG_INET_IPCOMP is not set
# CONFIG_INET_TUNNEL is not set
CONFIG_INET_DIAG=y
CONFIG_INET_TCP_DIAG=y
# CONFIG_TCP_CONG_ADVANCED is not set
CONFIG_TCP_CONG_BIC=y
CONFIG_IPV6=m
CONFIG_IPV6_PRIVACY=y
CONFIG_INET6_AH=m
CONFIG_INET6_ESP=m
CONFIG_INET6_IPCOMP=m
CONFIG_INET6_TUNNEL=m
CONFIG_IPV6_TUNNEL=m
# CONFIG_NETFILTER is not set

#
# DCCP Configuration (EXPERIMENTAL)
#
# CONFIG_IP_DCCP is not set

#
# SCTP Configuration (EXPERIMENTAL)
#
# CONFIG_IP_SCTP is not set
CONFIG_ATM=m
# CONFIG_ATM_CLIP is not set
# CONFIG_ATM_LANE is not set
# CONFIG_ATM_BR2684 is not set
# CONFIG_BRIDGE is not set
CONFIG_VLAN_8021Q=m
# CONFIG_DECNET is not set
CONFIG_LLC=y
# CONFIG_LLC2 is not set
# CONFIG_IPX is not set
# CONFIG_ATALK is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set

#
# QoS and/or fair queueing
#
# CONFIG_NET_SCHED is not set

#
# Network testing
#
# CONFIG_NET_PKTGEN is not set
# CONFIG_HAMRADIO is not set
# CONFIG_IRDA is not set
CONFIG_BT=m
CONFIG_BT_L2CAP=m
CONFIG_BT_SCO=m
CONFIG_BT_RFCOMM=m
CONFIG_BT_RFCOMM_TTY=y
CONFIG_BT_BNEP=m
CONFIG_BT_BNEP_MC_FILTER=y
CONFIG_BT_BNEP_PROTO_FILTER=y
CONFIG_BT_HIDP=m

#
# Bluetooth device drivers
#
CONFIG_BT_HCIUSB=m
CONFIG_BT_HCIUSB_SCO=y
CONFIG_BT_HCIUART=m
CONFIG_BT_HCIUART_H4=y
CONFIG_BT_HCIUART_BCSP=y
CONFIG_BT_HCIBCM203X=m
CONFIG_BT_HCIBPA10X=m
CONFIG_BT_HCIBFUSB=m
CONFIG_BT_HCIDTL1=m
CONFIG_BT_HCIBT3C=m
CONFIG_BT_HCIBLUECARD=m
CONFIG_BT_HCIBTUART=m
CONFIG_BT_HCIVHCI=m
# CONFIG_IEEE80211 is not set

#
# Device Drivers
#

#
# Generic Driver Options
#
CONFIG_STANDALONE=y
CONFIG_PREVENT_FIRMWARE_BUILD=y
CONFIG_FW_LOADER=m

#
# Connector - unified userspace <-> kernelspace linker
#
# CONFIG_CONNECTOR is not set

#
# Memory Technology Devices (MTD)
#
# CONFIG_MTD is not set

#
# Parallel port support
#
CONFIG_PARPORT=m
CONFIG_PARPORT_PC=m
CONFIG_PARPORT_SERIAL=m
CONFIG_PARPORT_PC_FIFO=y
CONFIG_PARPORT_PC_SUPERIO=y
CONFIG_PARPORT_PC_PCMCIA=m
CONFIG_PARPORT_NOT_PC=y
# CONFIG_PARPORT_GSC is not set
CONFIG_PARPORT_1284=y

#
# Plug and Play support
#
CONFIG_PNP=y
# CONFIG_PNP_DEBUG is not set

#
# Protocols
#
CONFIG_PNPACPI=y

#
# Block devices
#
CONFIG_BLK_DEV_FD=m
CONFIG_PARIDE=m
CONFIG_PARIDE_PARPORT=m

#
# Parallel IDE high-level drivers
#
CONFIG_PARIDE_PD=m
CONFIG_PARIDE_PCD=m
CONFIG_PARIDE_PF=m
CONFIG_PARIDE_PT=m
CONFIG_PARIDE_PG=m

#
# Parallel IDE protocol modules
#
CONFIG_PARIDE_ATEN=m
CONFIG_PARIDE_BPCK=m
CONFIG_PARIDE_COMM=m
CONFIG_PARIDE_DSTR=m
CONFIG_PARIDE_FIT2=m
CONFIG_PARIDE_FIT3=m
CONFIG_PARIDE_EPAT=m
CONFIG_PARIDE_EPATC8=y
CONFIG_PARIDE_EPIA=m
CONFIG_PARIDE_FRIQ=m
CONFIG_PARIDE_FRPW=m
CONFIG_PARIDE_KBIC=m
CONFIG_PARIDE_KTTI=m
CONFIG_PARIDE_ON20=m
CONFIG_PARIDE_ON26=m
CONFIG_BLK_CPQ_DA=m
CONFIG_BLK_CPQ_CISS_DA=m
# CONFIG_CISS_SCSI_TAPE is not set
CONFIG_BLK_DEV_DAC960=m
CONFIG_BLK_DEV_UMEM=m
# CONFIG_BLK_DEV_COW_COMMON is not set
CONFIG_BLK_DEV_LOOP=y
# CONFIG_BLK_DEV_CRYPTOLOOP is not set
CONFIG_BLK_DEV_NBD=m
CONFIG_BLK_DEV_SX8=m
# CONFIG_BLK_DEV_UB is not set
CONFIG_BLK_DEV_RAM=y
CONFIG_BLK_DEV_RAM_COUNT=16
CONFIG_BLK_DEV_RAM_SIZE=8192
CONFIG_BLK_DEV_INITRD=y
# CONFIG_CDROM_PKTCDVD is not set
# CONFIG_ATA_OVER_ETH is not set

#
# ATA/ATAPI/MFM/RLL support
#
CONFIG_IDE=y
CONFIG_BLK_DEV_IDE=y

#
# Please see Documentation/ide.txt for help/info on IDE drives
#
# CONFIG_BLK_DEV_IDE_SATA is not set
# CONFIG_BLK_DEV_HD_IDE is not set
CONFIG_BLK_DEV_IDEDISK=y
CONFIG_IDEDISK_MULTI_MODE=y
CONFIG_BLK_DEV_IDECS=m
CONFIG_BLK_DEV_IDECD=y
# CONFIG_BLK_DEV_IDETAPE is not set
CONFIG_BLK_DEV_IDEFLOPPY=m
# CONFIG_BLK_DEV_IDESCSI is not set
# CONFIG_IDE_TASK_IOCTL is not set

#
# IDE chipset support/bugfixes
#
CONFIG_IDE_GENERIC=y
CONFIG_BLK_DEV_CMD640=y
CONFIG_BLK_DEV_CMD640_ENHANCED=y
CONFIG_BLK_DEV_IDEPNP=y
CONFIG_BLK_DEV_IDEPCI=y
CONFIG_IDEPCI_SHARE_IRQ=y
# CONFIG_BLK_DEV_OFFBOARD is not set
CONFIG_BLK_DEV_GENERIC=y
CONFIG_BLK_DEV_OPTI621=y
CONFIG_BLK_DEV_RZ1000=y
CONFIG_BLK_DEV_IDEDMA_PCI=y
# CONFIG_BLK_DEV_IDEDMA_FORCED is not set
CONFIG_IDEDMA_PCI_AUTO=y
# CONFIG_IDEDMA_ONLYDISK is not set
CONFIG_BLK_DEV_AEC62XX=y
CONFIG_BLK_DEV_ALI15X3=y
# CONFIG_WDC_ALI15X3 is not set
CONFIG_BLK_DEV_AMD74XX=y
CONFIG_BLK_DEV_ATIIXP=y
CONFIG_BLK_DEV_CMD64X=y
# CONFIG_BLK_DEV_TRIFLEX is not set
# CONFIG_BLK_DEV_CY82C693 is not set
# CONFIG_BLK_DEV_CS5520 is not set
# CONFIG_BLK_DEV_CS5530 is not set
# CONFIG_BLK_DEV_HPT34X is not set
# CONFIG_BLK_DEV_HPT366 is not set
CONFIG_BLK_DEV_SC1200=m
CONFIG_BLK_DEV_PIIX=y
CONFIG_BLK_DEV_IT821X=m
# CONFIG_BLK_DEV_NS87415 is not set
# CONFIG_BLK_DEV_PDC202XX_OLD is not set
# CONFIG_BLK_DEV_PDC202XX_NEW is not set
# CONFIG_BLK_DEV_SVWKS is not set
CONFIG_BLK_DEV_SIIMAGE=m
# CONFIG_BLK_DEV_SIS5513 is not set
# CONFIG_BLK_DEV_SLC90E66 is not set
# CONFIG_BLK_DEV_TRM290 is not set
# CONFIG_BLK_DEV_VIA82CXXX is not set
# CONFIG_IDE_ARM is not set
CONFIG_BLK_DEV_IDEDMA=y
CONFIG_IDEDMA_IVB=y
CONFIG_IDEDMA_AUTO=y
# CONFIG_BLK_DEV_HD is not set

#
# SCSI device support
#
# CONFIG_RAID_ATTRS is not set
CONFIG_SCSI=y
CONFIG_SCSI_PROC_FS=y

#
# SCSI support type (disk, tape, CD-ROM)
#
CONFIG_BLK_DEV_SD=y
# CONFIG_CHR_DEV_ST is not set
# CONFIG_CHR_DEV_OSST is not set
CONFIG_BLK_DEV_SR=y
CONFIG_BLK_DEV_SR_VENDOR=y
CONFIG_CHR_DEV_SG=m
# CONFIG_CHR_DEV_SCH is not set

#
# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
#
# CONFIG_SCSI_MULTI_LUN is not set
# CONFIG_SCSI_CONSTANTS is not set
# CONFIG_SCSI_LOGGING is not set

#
# SCSI Transport Attributes
#
CONFIG_SCSI_SPI_ATTRS=m
CONFIG_SCSI_FC_ATTRS=m
# CONFIG_SCSI_ISCSI_ATTRS is not set
# CONFIG_SCSI_SAS_ATTRS is not set

#
# SCSI low-level drivers
#
# CONFIG_ISCSI_TCP is not set
CONFIG_BLK_DEV_3W_XXXX_RAID=m
CONFIG_SCSI_3W_9XXX=m
CONFIG_SCSI_ACARD=m
CONFIG_SCSI_AACRAID=m
CONFIG_SCSI_AIC7XXX=m
CONFIG_AIC7XXX_CMDS_PER_DEVICE=32
CONFIG_AIC7XXX_RESET_DELAY_MS=5000
# CONFIG_AIC7XXX_DEBUG_ENABLE is not set
CONFIG_AIC7XXX_DEBUG_MASK=0
CONFIG_AIC7XXX_REG_PRETTY_PRINT=y
# CONFIG_SCSI_AIC7XXX_OLD is not set
CONFIG_SCSI_AIC79XX=m
CONFIG_AIC79XX_CMDS_PER_DEVICE=32
CONFIG_AIC79XX_RESET_DELAY_MS=5000
# CONFIG_AIC79XX_ENABLE_RD_STRM is not set
# CONFIG_AIC79XX_DEBUG_ENABLE is not set
CONFIG_AIC79XX_DEBUG_MASK=0
# CONFIG_AIC79XX_REG_PRETTY_PRINT is not set
CONFIG_MEGARAID_NEWGEN=y
CONFIG_MEGARAID_MM=m
CONFIG_MEGARAID_MAILBOX=m
CONFIG_MEGARAID_LEGACY=m
# CONFIG_MEGARAID_SAS is not set
CONFIG_SCSI_SATA=y
CONFIG_SCSI_SATA_AHCI=m
CONFIG_SCSI_SATA_SVW=m
CONFIG_SCSI_ATA_PIIX=m
# CONFIG_SCSI_SATA_MV is not set
CONFIG_SCSI_SATA_NV=m
# CONFIG_SCSI_PDC_ADMA is not set
CONFIG_SCSI_SATA_QSTOR=m
CONFIG_SCSI_SATA_PROMISE=m
CONFIG_SCSI_SATA_SX4=m
CONFIG_SCSI_SATA_SIL=m
# CONFIG_SCSI_SATA_SIL24 is not set
CONFIG_SCSI_SATA_SIS=m
CONFIG_SCSI_SATA_ULI=m
CONFIG_SCSI_SATA_VIA=m
CONFIG_SCSI_SATA_VITESSE=m
CONFIG_SCSI_SATA_INTEL_COMBINED=y
CONFIG_SCSI_BUSLOGIC=m
# CONFIG_SCSI_OMIT_FLASHPOINT is not set
CONFIG_SCSI_DMX3191D=m
CONFIG_SCSI_EATA=m
CONFIG_SCSI_EATA_TAGGED_QUEUE=y
CONFIG_SCSI_EATA_LINKED_COMMANDS=y
CONFIG_SCSI_EATA_MAX_TAGS=16
CONFIG_SCSI_FUTURE_DOMAIN=m
CONFIG_SCSI_GDTH=m
CONFIG_SCSI_IPS=m
CONFIG_SCSI_INITIO=m
CONFIG_SCSI_INIA100=m
CONFIG_SCSI_PPA=m
CONFIG_SCSI_IMM=m
# CONFIG_SCSI_IZIP_EPP16 is not set
# CONFIG_SCSI_IZIP_SLOW_CTR is not set
CONFIG_SCSI_SYM53C8XX_2=m
CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=1
CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16
CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64
# CONFIG_SCSI_SYM53C8XX_IOMAPPED is not set
CONFIG_SCSI_IPR=m
# CONFIG_SCSI_IPR_TRACE is not set
# CONFIG_SCSI_IPR_DUMP is not set
CONFIG_SCSI_QLOGIC_FC=m
# CONFIG_SCSI_QLOGIC_FC_FIRMWARE is not set
CONFIG_SCSI_QLOGIC_1280=m
CONFIG_SCSI_QLA2XXX=y
CONFIG_SCSI_QLA21XX=m
CONFIG_SCSI_QLA22XX=m
CONFIG_SCSI_QLA2300=m
CONFIG_SCSI_QLA2322=m
CONFIG_SCSI_QLA6312=m
# CONFIG_SCSI_QLA24XX is not set
CONFIG_SCSI_LPFC=m
CONFIG_SCSI_DC395x=m
CONFIG_SCSI_DC390T=m
# CONFIG_SCSI_DEBUG is not set

#
# PCMCIA SCSI adapter support
#
CONFIG_PCMCIA_FDOMAIN=m
CONFIG_PCMCIA_QLOGIC=m
CONFIG_PCMCIA_SYM53C500=m

#
# Multi-device support (RAID and LVM)
#
CONFIG_MD=y
CONFIG_BLK_DEV_MD=m
CONFIG_MD_LINEAR=m
CONFIG_MD_RAID0=m
CONFIG_MD_RAID1=m
CONFIG_MD_RAID10=m
CONFIG_MD_RAID5=m
CONFIG_MD_RAID6=m
CONFIG_MD_MULTIPATH=m
CONFIG_MD_FAULTY=m
CONFIG_BLK_DEV_DM=m
CONFIG_DM_CRYPT=m
CONFIG_DM_SNAPSHOT=m
CONFIG_DM_MIRROR=m
CONFIG_DM_ZERO=m
CONFIG_DM_MULTIPATH=m
CONFIG_DM_MULTIPATH_EMC=m
CONFIG_BLK_DEV_DM_BBR=m

#
# Fusion MPT device support
#
# CONFIG_FUSION is not set
# CONFIG_FUSION_SPI is not set
# CONFIG_FUSION_FC is not set
# CONFIG_FUSION_SAS is not set

#
# IEEE 1394 (FireWire) support
#
CONFIG_IEEE1394=m

#
# Subsystem Options
#
# CONFIG_IEEE1394_VERBOSEDEBUG is not set
# CONFIG_IEEE1394_OUI_DB is not set
CONFIG_IEEE1394_EXTRA_CONFIG_ROMS=y
CONFIG_IEEE1394_CONFIG_ROM_IP1394=y
# CONFIG_IEEE1394_EXPORT_FULL_API is not set

#
# Device Drivers
#
# CONFIG_IEEE1394_PCILYNX is not set
CONFIG_IEEE1394_OHCI1394=m

#
# Protocol Drivers
#
CONFIG_IEEE1394_VIDEO1394=m
CONFIG_IEEE1394_SBP2=m
# CONFIG_IEEE1394_SBP2_PHYS_DMA is not set
CONFIG_IEEE1394_ETH1394=m
CONFIG_IEEE1394_DV1394=m
CONFIG_IEEE1394_RAWIO=m
CONFIG_IEEE1394_CMP=m
# CONFIG_IEEE1394_AMDTP is not set

#
# I2O device support
#
CONFIG_I2O=m
CONFIG_I2O_EXT_ADAPTEC=y
CONFIG_I2O_EXT_ADAPTEC_DMA64=y
CONFIG_I2O_CONFIG=m
CONFIG_I2O_CONFIG_OLD_IOCTL=y
# CONFIG_I2O_BUS is not set
CONFIG_I2O_BLOCK=m
CONFIG_I2O_SCSI=m
CONFIG_I2O_PROC=m

#
# Network device support
#
CONFIG_NETDEVICES=y
# CONFIG_DUMMY is not set
# CONFIG_BONDING is not set
# CONFIG_EQUALIZER is not set
# CONFIG_TUN is not set
CONFIG_NET_SB1000=m

#
# ARCnet devices
#
# CONFIG_ARCNET is not set

#
# PHY device support
#
# CONFIG_PHYLIB is not set

#
# Ethernet (10 or 100Mbit)
#
CONFIG_NET_ETHERNET=y
CONFIG_MII=m
CONFIG_HAPPYMEAL=m
CONFIG_SUNGEM=m
# CONFIG_CASSINI is not set
CONFIG_NET_VENDOR_3COM=y
CONFIG_VORTEX=m
CONFIG_TYPHOON=m

#
# Tulip family network device support
#
CONFIG_NET_TULIP=y
CONFIG_DE2104X=m
CONFIG_TULIP=m
CONFIG_TULIP_MWI=y
CONFIG_TULIP_MMIO=y
CONFIG_TULIP_NAPI=y
CONFIG_TULIP_NAPI_HW_MITIGATION=y
CONFIG_DE4X5=m
CONFIG_WINBOND_840=m
CONFIG_DM9102=m
# CONFIG_ULI526X is not set
CONFIG_PCMCIA_XIRCOM=m
CONFIG_HP100=m
CONFIG_NET_PCI=y
CONFIG_PCNET32=m
CONFIG_AMD8111_ETH=m
# CONFIG_AMD8111E_NAPI is not set
CONFIG_ADAPTEC_STARFIRE=m
# CONFIG_ADAPTEC_STARFIRE_NAPI is not set
CONFIG_B44=m
CONFIG_FORCEDETH=m
CONFIG_DGRS=m
# CONFIG_EEPRO100 is not set
CONFIG_E100=m
CONFIG_FEALNX=m
CONFIG_NATSEMI=m
CONFIG_NE2K_PCI=m
CONFIG_8139CP=m
CONFIG_8139TOO=m
# CONFIG_8139TOO_PIO is not set
CONFIG_8139TOO_TUNE_TWISTER=y
CONFIG_8139TOO_8129=y
# CONFIG_8139_OLD_RX_RESET is not set
CONFIG_SIS900=m
CONFIG_EPIC100=m
CONFIG_SUNDANCE=m
CONFIG_SUNDANCE_MMIO=y
CONFIG_VIA_RHINE=m
CONFIG_VIA_RHINE_MMIO=y
# CONFIG_NET_POCKET is not set

#
# Ethernet (1000 Mbit)
#
CONFIG_ACENIC=m
# CONFIG_ACENIC_OMIT_TIGON_I is not set
CONFIG_DL2K=m
CONFIG_E1000=m
# CONFIG_E1000_NAPI is not set
CONFIG_NS83820=m
CONFIG_HAMACHI=m
CONFIG_YELLOWFIN=m
CONFIG_R8169=m
# CONFIG_R8169_NAPI is not set
CONFIG_R8169_VLAN=y
# CONFIG_SIS190 is not set
CONFIG_SKGE=m
# CONFIG_SKY2 is not set
CONFIG_SK98LIN=m
CONFIG_VIA_VELOCITY=m
CONFIG_TIGON3=m
CONFIG_BNX2=m

#
# Ethernet (10000 Mbit)
#
# CONFIG_CHELSIO_T1 is not set
CONFIG_IXGB=m
# CONFIG_IXGB_NAPI is not set
CONFIG_S2IO=m
# CONFIG_S2IO_NAPI is not set

#
# Token Ring devices
#
CONFIG_TR=y
CONFIG_IBMOL=m
CONFIG_3C359=m
CONFIG_TMS380TR=m
CONFIG_TMSPCI=m
CONFIG_ABYSS=m

#
# Wireless LAN (non-hamradio)
#
CONFIG_NET_RADIO=y

#
# Obsolete Wireless cards support (pre-802.11)
#
CONFIG_STRIP=m
CONFIG_PCMCIA_WAVELAN=m
CONFIG_PCMCIA_NETWAVE=m

#
# Wireless 802.11 Frequency Hopping cards support
#
CONFIG_PCMCIA_RAYCS=m

#
# Wireless 802.11b ISA/PCI cards support
#
# CONFIG_AIRO is not set
# CONFIG_HERMES is not set
CONFIG_ATMEL=m
CONFIG_PCI_ATMEL=m

#
# Wireless 802.11b Pcmcia/Cardbus cards support
#
CONFIG_AIRO_CS=m
CONFIG_PCMCIA_ATMEL=m
CONFIG_PCMCIA_WL3501=m

#
# Prism GT/Duette 802.11(a/b/g) PCI/Cardbus support
#
CONFIG_PRISM54=m
# CONFIG_HOSTAP is not set
CONFIG_NET_WIRELESS=y

#
# PCMCIA network device support
#
CONFIG_NET_PCMCIA=y
CONFIG_PCMCIA_3C589=m
CONFIG_PCMCIA_3C574=m
CONFIG_PCMCIA_FMVJ18X=m
CONFIG_PCMCIA_PCNET=m
CONFIG_PCMCIA_NMCLAN=m
CONFIG_PCMCIA_SMC91C92=m
CONFIG_PCMCIA_XIRC2PS=m
CONFIG_PCMCIA_AXNET=m

#
# Wan interfaces
#
CONFIG_WAN=y
CONFIG_DSCC4=m
CONFIG_DSCC4_PCISYNC=y
CONFIG_DSCC4_PCI_RST=y
CONFIG_LANMEDIA=m
CONFIG_SYNCLINK_SYNCPPP=m
CONFIG_HDLC=m
CONFIG_HDLC_RAW=y
CONFIG_HDLC_RAW_ETH=y
CONFIG_HDLC_CISCO=y
CONFIG_HDLC_FR=y
CONFIG_HDLC_PPP=y

#
# X.25/LAPB support is disabled
#
CONFIG_PCI200SYN=m
CONFIG_WANXL=m
CONFIG_PC300=m
CONFIG_PC300_MLPPP=y
CONFIG_FARSYNC=m
CONFIG_DLCI=m
CONFIG_DLCI_COUNT=24
CONFIG_DLCI_MAX=8
CONFIG_SBNI=m
CONFIG_SBNI_MULTILINE=y

#
# ATM drivers
#
# CONFIG_ATM_DUMMY is not set
# CONFIG_ATM_TCP is not set
# CONFIG_ATM_LANAI is not set
# CONFIG_ATM_ENI is not set
# CONFIG_ATM_FIRESTREAM is not set
# CONFIG_ATM_ZATM is not set
# CONFIG_ATM_IDT77252 is not set
# CONFIG_ATM_AMBASSADOR is not set
# CONFIG_ATM_HORIZON is not set
# CONFIG_ATM_FORE200E_MAYBE is not set
# CONFIG_ATM_HE is not set
CONFIG_FDDI=y
CONFIG_DEFXX=m
CONFIG_SKFP=m
CONFIG_HIPPI=y
CONFIG_ROADRUNNER=m
# CONFIG_ROADRUNNER_LARGE_RINGS is not set
CONFIG_PLIP=m
CONFIG_PPP=m
CONFIG_PPP_MULTILINK=y
CONFIG_PPP_FILTER=y
CONFIG_PPP_ASYNC=m
CONFIG_PPP_SYNC_TTY=m
CONFIG_PPP_DEFLATE=m
CONFIG_PPP_BSDCOMP=m
# CONFIG_PPP_MPPE is not set
CONFIG_PPPOE=m
CONFIG_PPPOATM=m
CONFIG_SLIP=m
CONFIG_SLIP_COMPRESSED=y
CONFIG_SLIP_SMART=y
CONFIG_SLIP_MODE_SLIP6=y
CONFIG_NET_FC=y
# CONFIG_SHAPER is not set
# CONFIG_NETCONSOLE is not set
# CONFIG_NETPOLL is not set
# CONFIG_NET_POLL_CONTROLLER is not set

#
# ISDN subsystem
#
# CONFIG_ISDN is not set

#
# Telephony Support
#
# CONFIG_PHONE is not set

#
# Input device support
#
CONFIG_INPUT=y

#
# Userland interfaces
#
CONFIG_INPUT_MOUSEDEV=y
CONFIG_INPUT_MOUSEDEV_PSAUX=y
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
# CONFIG_INPUT_JOYDEV is not set
# CONFIG_INPUT_TSDEV is not set
CONFIG_INPUT_EVDEV=y
# CONFIG_INPUT_EVBUG is not set

#
# Input Device Drivers
#
CONFIG_INPUT_KEYBOARD=y
CONFIG_KEYBOARD_ATKBD=y
CONFIG_KEYBOARD_SUNKBD=m
CONFIG_KEYBOARD_LKKBD=m
CONFIG_KEYBOARD_XTKBD=m
CONFIG_KEYBOARD_NEWTON=m
CONFIG_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=y
CONFIG_MOUSE_SERIAL=m
# CONFIG_MOUSE_VSXXXAA is not set
# CONFIG_INPUT_JOYSTICK is not set
# CONFIG_INPUT_TOUCHSCREEN is not set
CONFIG_INPUT_MISC=y
CONFIG_INPUT_PCSPKR=m
# CONFIG_INPUT_UINPUT is not set

#
# Hardware I/O ports
#
CONFIG_SERIO=y
CONFIG_SERIO_I8042=y
CONFIG_SERIO_SERPORT=m
CONFIG_SERIO_CT82C710=m
CONFIG_SERIO_PARKBD=m
CONFIG_SERIO_PCIPS2=m
CONFIG_SERIO_LIBPS2=y
# CONFIG_SERIO_RAW is not set
# CONFIG_GAMEPORT is not set

#
# Character devices
#
CONFIG_VT=y
CONFIG_VT_CONSOLE=y
CONFIG_HW_CONSOLE=y
# CONFIG_SERIAL_NONSTANDARD is not set

#
# Serial drivers
#
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_CONSOLE=y
CONFIG_SERIAL_8250_CS=m
CONFIG_SERIAL_8250_ACPI=y
CONFIG_SERIAL_8250_NR_UARTS=4
CONFIG_SERIAL_8250_EXTENDED=y
CONFIG_SERIAL_8250_MANY_PORTS=y
CONFIG_SERIAL_8250_SHARE_IRQ=y
# CONFIG_SERIAL_8250_DETECT_IRQ is not set
CONFIG_SERIAL_8250_RSA=y

#
# Non-8250 serial port support
#
CONFIG_SERIAL_CORE=y
CONFIG_SERIAL_CORE_CONSOLE=y
# CONFIG_SERIAL_JSM is not set
CONFIG_UNIX98_PTYS=y
# CONFIG_LEGACY_PTYS is not set
# CONFIG_PRINTER is not set
CONFIG_PPDEV=m
# CONFIG_TIPAR is not set

#
# IPMI
#
# CONFIG_IPMI_HANDLER is not set

#
# Watchdog Cards
#
# CONFIG_WATCHDOG is not set
# CONFIG_HW_RANDOM is not set
CONFIG_NVRAM=m
CONFIG_RTC=y
# CONFIG_DTLK is not set
# CONFIG_R3964 is not set
# CONFIG_APPLICOM is not set

#
# Ftape, the floppy tape device driver
#
CONFIG_AGP=y
CONFIG_AGP_AMD64=y
# CONFIG_AGP_INTEL is not set
# CONFIG_DRM is not set

#
# PCMCIA character devices
#
# CONFIG_SYNCLINK_CS is not set
# CONFIG_CARDMAN_4000 is not set
# CONFIG_CARDMAN_4040 is not set
CONFIG_MWAVE=m
# CONFIG_RAW_DRIVER is not set
# CONFIG_HPET is not set
# CONFIG_HANGCHECK_TIMER is not set

#
# TPM devices
#
# CONFIG_TCG_TPM is not set
# CONFIG_TELCLOCK is not set

#
# I2C support
#
CONFIG_I2C=m
CONFIG_I2C_CHARDEV=m

#
# I2C Algorithms
#
CONFIG_I2C_ALGOBIT=m
CONFIG_I2C_ALGOPCF=m
CONFIG_I2C_ALGOPCA=m

#
# I2C Hardware Bus support
#
CONFIG_I2C_ALI1535=m
CONFIG_I2C_ALI1563=m
CONFIG_I2C_ALI15X3=m
CONFIG_I2C_AMD756=m
CONFIG_I2C_AMD756_S4882=m
CONFIG_I2C_AMD8111=m
# CONFIG_I2C_I801 is not set
# CONFIG_I2C_I810 is not set
CONFIG_I2C_PIIX4=m
CONFIG_I2C_NFORCE2=m
# CONFIG_I2C_PARPORT is not set
# CONFIG_I2C_PARPORT_LIGHT is not set
# CONFIG_I2C_PROSAVAGE is not set
# CONFIG_I2C_SAVAGE4 is not set
# CONFIG_SCx200_ACB is not set
# CONFIG_I2C_SIS5595 is not set
# CONFIG_I2C_SIS630 is not set
# CONFIG_I2C_SIS96X is not set
CONFIG_I2C_STUB=m
# CONFIG_I2C_VIA is not set
# CONFIG_I2C_VIAPRO is not set
# CONFIG_I2C_VOODOO3 is not set
# CONFIG_I2C_PCA_ISA is not set

#
# Miscellaneous I2C Chip support
#
# CONFIG_SENSORS_DS1337 is not set
# CONFIG_SENSORS_DS1374 is not set
# CONFIG_SENSORS_EEPROM is not set
CONFIG_SENSORS_PCF8574=m
CONFIG_SENSORS_PCA9539=m
CONFIG_SENSORS_PCF8591=m
# CONFIG_SENSORS_RTC8564 is not set
# CONFIG_SENSORS_MAX6875 is not set
# CONFIG_RTC_X1205_I2C is not set
# CONFIG_I2C_DEBUG_CORE is not set
# CONFIG_I2C_DEBUG_ALGO is not set
# CONFIG_I2C_DEBUG_BUS is not set
# CONFIG_I2C_DEBUG_CHIP is not set

#
# Dallas's 1-wire bus
#
# CONFIG_W1 is not set

#
# Hardware Monitoring support
#
CONFIG_HWMON=y
# CONFIG_HWMON_VID is not set
# CONFIG_SENSORS_ADM1021 is not set
# CONFIG_SENSORS_ADM1025 is not set
# CONFIG_SENSORS_ADM1026 is not set
# CONFIG_SENSORS_ADM1031 is not set
# CONFIG_SENSORS_ADM9240 is not set
# CONFIG_SENSORS_ASB100 is not set
# CONFIG_SENSORS_ATXP1 is not set
# CONFIG_SENSORS_DS1621 is not set
# CONFIG_SENSORS_FSCHER is not set
# CONFIG_SENSORS_FSCPOS is not set
# CONFIG_SENSORS_GL518SM is not set
# CONFIG_SENSORS_GL520SM is not set
# CONFIG_SENSORS_IT87 is not set
# CONFIG_SENSORS_LM63 is not set
# CONFIG_SENSORS_LM75 is not set
# CONFIG_SENSORS_LM77 is not set
# CONFIG_SENSORS_LM78 is not set
# CONFIG_SENSORS_LM80 is not set
# CONFIG_SENSORS_LM83 is not set
# CONFIG_SENSORS_LM85 is not set
# CONFIG_SENSORS_LM87 is not set
# CONFIG_SENSORS_LM90 is not set
# CONFIG_SENSORS_LM92 is not set
# CONFIG_SENSORS_MAX1619 is not set
# CONFIG_SENSORS_PC87360 is not set
# CONFIG_SENSORS_SIS5595 is not set
# CONFIG_SENSORS_SMSC47M1 is not set
# CONFIG_SENSORS_SMSC47B397 is not set
# CONFIG_SENSORS_VIA686A is not set
# CONFIG_SENSORS_W83781D is not set
# CONFIG_SENSORS_W83792D is not set
# CONFIG_SENSORS_W83L785TS is not set
# CONFIG_SENSORS_W83627HF is not set
# CONFIG_SENSORS_W83627EHF is not set
# CONFIG_SENSORS_HDAPS is not set
# CONFIG_HWMON_DEBUG_CHIP is not set

#
# Misc devices
#
# CONFIG_IBM_ASM is not set

#
# Multimedia Capabilities Port drivers
#

#
# Multimedia devices
#
CONFIG_VIDEO_DEV=m

#
# Video For Linux
#

#
# Video Adapters
#
# CONFIG_VIDEO_BT848 is not set
# CONFIG_VIDEO_BWQCAM is not set
# CONFIG_VIDEO_CQCAM is not set
# CONFIG_VIDEO_W9966 is not set
# CONFIG_VIDEO_CPIA is not set
# CONFIG_VIDEO_SAA5246A is not set
# CONFIG_VIDEO_SAA5249 is not set
# CONFIG_TUNER_3036 is not set
# CONFIG_VIDEO_STRADIS is not set
# CONFIG_VIDEO_ZORAN is not set
CONFIG_VIDEO_SAA7134=m
# CONFIG_VIDEO_SAA7134_ALSA is not set
# CONFIG_VIDEO_MXB is not set
# CONFIG_VIDEO_DPC is not set
# CONFIG_VIDEO_HEXIUM_ORION is not set
# CONFIG_VIDEO_HEXIUM_GEMINI is not set
# CONFIG_VIDEO_CX88 is not set
# CONFIG_VIDEO_EM28XX is not set
# CONFIG_VIDEO_OVCAMCHIP is not set
CONFIG_VIDEO_AUDIO_DECODER=m
CONFIG_VIDEO_DECODER=m

#
# Radio Adapters
#
# CONFIG_RADIO_GEMTEK_PCI is not set
# CONFIG_RADIO_MAXIRADIO is not set
# CONFIG_RADIO_MAESTRO is not set

#
# Digital Video Broadcasting Devices
#
# CONFIG_DVB is not set
CONFIG_VIDEO_TUNER=m
CONFIG_VIDEO_BUF=m
CONFIG_VIDEO_IR=m

#
# Graphics support
#
CONFIG_FB=y
CONFIG_FB_CFB_FILLRECT=y
CONFIG_FB_CFB_COPYAREA=y
CONFIG_FB_CFB_IMAGEBLIT=y
# CONFIG_FB_MACMODES is not set
# CONFIG_FB_MODE_HELPERS is not set
# CONFIG_FB_TILEBLITTING is not set
# CONFIG_FB_CIRRUS is not set
# CONFIG_FB_PM2 is not set
# CONFIG_FB_CYBER2000 is not set
# CONFIG_FB_ARC is not set
# CONFIG_FB_ASILIANT is not set
# CONFIG_FB_IMSTT is not set
# CONFIG_FB_VGA16 is not set
CONFIG_FB_VESA=y
CONFIG_FB_VESA_STD=y
# CONFIG_FB_VESA_TNG is not set
CONFIG_VIDEO_SELECT=y
# CONFIG_FB_HGA is not set
# CONFIG_FB_S1D13XXX is not set
# CONFIG_FB_NVIDIA is not set
# CONFIG_FB_RIVA is not set
# CONFIG_FB_MATROX is not set
# CONFIG_FB_RADEON_OLD is not set
# CONFIG_FB_RADEON is not set
# CONFIG_FB_ATY128 is not set
# CONFIG_FB_ATY is not set
# CONFIG_FB_SAVAGE is not set
# CONFIG_FB_SIS is not set
# CONFIG_FB_NEOMAGIC is not set
# CONFIG_FB_KYRO is not set
# CONFIG_FB_3DFX is not set
# CONFIG_FB_VOODOO1 is not set
# CONFIG_FB_CYBLA is not set
# CONFIG_FB_TRIDENT is not set
# CONFIG_FB_GEODE is not set
# CONFIG_FB_VIRTUAL is not set

#
# Console display driver support
#
CONFIG_VGA_CONSOLE=y
CONFIG_DUMMY_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE=y
# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set
# CONFIG_FONTS is not set
CONFIG_FONT_8x8=y
CONFIG_FONT_8x16=y

#
# Logo configuration
#
# CONFIG_LOGO is not set
CONFIG_BACKLIGHT_LCD_SUPPORT=y
CONFIG_BACKLIGHT_CLASS_DEVICE=m
CONFIG_BACKLIGHT_DEVICE=y
CONFIG_LCD_CLASS_DEVICE=m
CONFIG_LCD_DEVICE=y
CONFIG_FB_SPLASH=y

#
# Speakup console speech
#
CONFIG_SPEAKUP=y
CONFIG_SPEAKUP_ACNTSA=y
CONFIG_SPEAKUP_ACNTPC=y
CONFIG_SPEAKUP_APOLLO=y
CONFIG_SPEAKUP_AUDPTR=y
CONFIG_SPEAKUP_BNS=y
CONFIG_SPEAKUP_DECTLK=y
CONFIG_SPEAKUP_DECEXT=y
# CONFIG_SPEAKUP_DECPC is not set
CONFIG_SPEAKUP_DTLK=y
CONFIG_SPEAKUP_KEYPC=y
CONFIG_SPEAKUP_LTLK=y
CONFIG_SPEAKUP_SFTSYN=y
CONFIG_SPEAKUP_SPKOUT=y
CONFIG_SPEAKUP_TXPRT=y

#
# Enter the 3 to 6 character keyword from the list above, or none for no
default synthesizer on boot up.
#
CONFIG_SPEAKUP_DEFAULT="none"

#
# Sound
#
CONFIG_SOUND=y

#
# Advanced Linux Sound Architecture
#
CONFIG_SND=m
CONFIG_SND_AC97_CODEC=m
CONFIG_SND_AC97_BUS=m
CONFIG_SND_TIMER=m
CONFIG_SND_PCM=m
CONFIG_SND_RAWMIDI=m
# CONFIG_SND_SEQUENCER is not set
CONFIG_SND_OSSEMUL=y
CONFIG_SND_MIXER_OSS=m
CONFIG_SND_PCM_OSS=m
CONFIG_SND_RTCTIMER=m
# CONFIG_SND_VERBOSE_PRINTK is not set
# CONFIG_SND_DEBUG is not set

#
# Generic devices
#
CONFIG_SND_MPU401_UART=m
# CONFIG_SND_DUMMY is not set
# CONFIG_SND_MTPAV is not set
# CONFIG_SND_SERIAL_U16550 is not set
# CONFIG_SND_MPU401 is not set

#
# PCI devices
#
CONFIG_SND_ALI5451=m
CONFIG_SND_ATIIXP=m
# CONFIG_SND_ATIIXP_MODEM is not set
# CONFIG_SND_AU8810 is not set
# CONFIG_SND_AU8820 is not set
# CONFIG_SND_AU8830 is not set
# CONFIG_SND_AZT3328 is not set
# CONFIG_SND_BT87X is not set
# CONFIG_SND_CS46XX is not set
# CONFIG_SND_CS4281 is not set
# CONFIG_SND_EMU10K1 is not set
# CONFIG_SND_EMU10K1X is not set
# CONFIG_SND_CA0106 is not set
# CONFIG_SND_KORG1212 is not set
# CONFIG_SND_MIXART is not set
# CONFIG_SND_NM256 is not set
# CONFIG_SND_RME32 is not set
# CONFIG_SND_RME96 is not set
# CONFIG_SND_RME9652 is not set
# CONFIG_SND_HDSP is not set
# CONFIG_SND_HDSPM is not set
# CONFIG_SND_TRIDENT is not set
# CONFIG_SND_YMFPCI is not set
# CONFIG_SND_AD1889 is not set
# CONFIG_SND_ALS4000 is not set
# CONFIG_SND_CMIPCI is not set
# CONFIG_SND_ENS1370 is not set
# CONFIG_SND_ENS1371 is not set
# CONFIG_SND_ES1938 is not set
# CONFIG_SND_ES1968 is not set
# CONFIG_SND_MAESTRO3 is not set
# CONFIG_SND_FM801 is not set
# CONFIG_SND_ICE1712 is not set
# CONFIG_SND_ICE1724 is not set
CONFIG_SND_INTEL8X0=m
# CONFIG_SND_INTEL8X0M is not set
# CONFIG_SND_SONICVIBES is not set
# CONFIG_SND_VIA82XX is not set
# CONFIG_SND_VIA82XX_MODEM is not set
# CONFIG_SND_VX222 is not set
# CONFIG_SND_HDA_INTEL is not set

#
# USB devices
#
# CONFIG_SND_USB_AUDIO is not set
# CONFIG_SND_USB_USX2Y is not set

#
# PCMCIA devices
#

#
# Open Sound System
#
# CONFIG_SOUND_PRIME is not set

#
# USB support
#
CONFIG_USB_ARCH_HAS_HCD=y
CONFIG_USB_ARCH_HAS_OHCI=y
CONFIG_USB=m
# CONFIG_USB_DEBUG is not set

#
# Miscellaneous USB options
#
CONFIG_USB_DEVICEFS=y
# CONFIG_USB_BANDWIDTH is not set
# CONFIG_USB_DYNAMIC_MINORS is not set
# CONFIG_USB_SUSPEND is not set
# CONFIG_USB_OTG is not set

#
# USB Host Controller Drivers
#
CONFIG_USB_EHCI_HCD=m
# CONFIG_USB_EHCI_SPLIT_ISO is not set
# CONFIG_USB_EHCI_ROOT_HUB_TT is not set
# CONFIG_USB_ISP116X_HCD is not set
CONFIG_USB_OHCI_HCD=m
# CONFIG_USB_OHCI_BIG_ENDIAN is not set
CONFIG_USB_OHCI_LITTLE_ENDIAN=y
CONFIG_USB_UHCI_HCD=m
CONFIG_USB_SL811_HCD=m
CONFIG_USB_SL811_CS=m

#
# USB Device Class drivers
#
# CONFIG_OBSOLETE_OSS_USB_DRIVER is not set
CONFIG_USB_ACM=m
# CONFIG_USB_PRINTER is not set

#
# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
#

#
# may also be needed; see USB_STORAGE Help for more information
#
CONFIG_USB_STORAGE=m
# CONFIG_USB_STORAGE_DEBUG is not set
CONFIG_USB_STORAGE_DATAFAB=y
CONFIG_USB_STORAGE_FREECOM=y
CONFIG_USB_STORAGE_ISD200=y
CONFIG_USB_STORAGE_DPCM=y
CONFIG_USB_STORAGE_USBAT=y
CONFIG_USB_STORAGE_SDDR09=y
CONFIG_USB_STORAGE_SDDR55=y
CONFIG_USB_STORAGE_JUMPSHOT=y

#
# USB Input Devices
#
CONFIG_USB_HID=m
CONFIG_USB_HIDINPUT=y
# CONFIG_HID_FF is not set
CONFIG_USB_HIDDEV=y

#
# USB HID Boot Protocol drivers
#
# CONFIG_USB_KBD is not set
# CONFIG_USB_MOUSE is not set
CONFIG_USB_AIPTEK=m
CONFIG_USB_WACOM=m
# CONFIG_USB_ACECAD is not set
CONFIG_USB_KBTAB=m
# CONFIG_USB_POWERMATE is not set
CONFIG_USB_MTOUCH=m
# CONFIG_USB_ITMTOUCH is not set
CONFIG_USB_EGALAX=m
# CONFIG_USB_YEALINK is not set
CONFIG_USB_XPAD=m
CONFIG_USB_ATI_REMOTE=m
# CONFIG_USB_KEYSPAN_REMOTE is not set
# CONFIG_USB_APPLETOUCH is not set

#
# USB Imaging devices
#
# CONFIG_USB_MDC800 is not set
# CONFIG_USB_MICROTEK is not set

#
# USB Multimedia devices
#
# CONFIG_USB_DABUSB is not set
# CONFIG_USB_VICAM is not set
# CONFIG_USB_DSBR is not set
# CONFIG_USB_IBMCAM is not set
# CONFIG_USB_KONICAWC is not set
# CONFIG_USB_OV511 is not set
# CONFIG_USB_SE401 is not set
# CONFIG_USB_SN9C102 is not set
# CONFIG_USB_STV680 is not set
# CONFIG_USB_PWC is not set

#
# USB Network Adapters
#
CONFIG_USB_CATC=m
CONFIG_USB_KAWETH=m
CONFIG_USB_PEGASUS=m
CONFIG_USB_RTL8150=m
CONFIG_USB_USBNET=m
CONFIG_USB_NET_AX8817X=m
CONFIG_USB_NET_CDCETHER=m
# CONFIG_USB_NET_GL620A is not set
CONFIG_USB_NET_NET1080=m
# CONFIG_USB_NET_PLUSB is not set
# CONFIG_USB_NET_RNDIS_HOST is not set
# CONFIG_USB_NET_CDC_SUBSET is not set
CONFIG_USB_NET_ZAURUS=m
CONFIG_USB_ZD1201=m
# CONFIG_USB_MON is not set

#
# USB port drivers
#
CONFIG_USB_USS720=m

#
# USB Serial Converter support
#
CONFIG_USB_SERIAL=m
CONFIG_USB_SERIAL_GENERIC=y
CONFIG_USB_SERIAL_AIRPRIME=m
# CONFIG_USB_SERIAL_ANYDATA is not set
# CONFIG_USB_SERIAL_BELKIN is not set
# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set
CONFIG_USB_SERIAL_CP2101=m
# CONFIG_USB_SERIAL_CYPRESS_M8 is not set
# CONFIG_USB_SERIAL_EMPEG is not set
# CONFIG_USB_SERIAL_FTDI_SIO is not set
# CONFIG_USB_SERIAL_VISOR is not set
# CONFIG_USB_SERIAL_IPAQ is not set
# CONFIG_USB_SERIAL_IR is not set
# CONFIG_USB_SERIAL_EDGEPORT is not set
# CONFIG_USB_SERIAL_EDGEPORT_TI is not set
# CONFIG_USB_SERIAL_GARMIN is not set
CONFIG_USB_SERIAL_IPW=m
# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set
# CONFIG_USB_SERIAL_KEYSPAN is not set
# CONFIG_USB_SERIAL_KLSI is not set
# CONFIG_USB_SERIAL_KOBIL_SCT is not set
# CONFIG_USB_SERIAL_MCT_U232 is not set
# CONFIG_USB_SERIAL_PL2303 is not set
# CONFIG_USB_SERIAL_HP4X is not set
# CONFIG_USB_SERIAL_SAFE is not set
# CONFIG_USB_SERIAL_TI is not set
# CONFIG_USB_SERIAL_CYBERJACK is not set
# CONFIG_USB_SERIAL_XIRCOM is not set
CONFIG_USB_SERIAL_OPTION=m
CONFIG_USB_SERIAL_OMNINET=m

#
# USB Miscellaneous drivers
#
# CONFIG_USB_EMI62 is not set
# CONFIG_USB_EMI26 is not set
CONFIG_USB_AUERSWALD=m
# CONFIG_USB_RIO500 is not set
# CONFIG_USB_LEGOTOWER is not set
# CONFIG_USB_LCD is not set
# CONFIG_USB_LED is not set
# CONFIG_USB_CYTHERM is not set
# CONFIG_USB_PHIDGETKIT is not set
# CONFIG_USB_PHIDGETSERVO is not set
# CONFIG_USB_IDMOUSE is not set
CONFIG_USB_SISUSBVGA=m
# CONFIG_USB_SISUSBVGA_CON is not set
# CONFIG_USB_LD is not set
# CONFIG_USB_TEST is not set

#
# USB DSL modem support
#
CONFIG_USB_ATM=m
CONFIG_USB_SPEEDTOUCH=m
# CONFIG_USB_CXACRU is not set
# CONFIG_USB_XUSBATM is not set

#
# USB Gadget Support
#
# CONFIG_USB_GADGET is not set

#
# MMC/SD Card support
#
CONFIG_MMC=m
# CONFIG_MMC_DEBUG is not set
CONFIG_MMC_BLOCK=m
CONFIG_MMC_WBSD=m

#
# InfiniBand support
#
CONFIG_INFINIBAND=m
# CONFIG_INFINIBAND_USER_MAD is not set
# CONFIG_INFINIBAND_USER_ACCESS is not set
CONFIG_INFINIBAND_MTHCA=m
# CONFIG_INFINIBAND_MTHCA_DEBUG is not set
CONFIG_INFINIBAND_IPOIB=m
# CONFIG_INFINIBAND_IPOIB_DEBUG is not set
# CONFIG_INFINIBAND_SRP is not set

#
# SN Devices
#

#
# Firmware Drivers
#
# CONFIG_EDD is not set
# CONFIG_DELL_RBU is not set
# CONFIG_DCDBAS is not set

#
# File systems
#
CONFIG_EXT2_FS=y
CONFIG_EXT2_FS_XATTR=y
CONFIG_EXT2_FS_POSIX_ACL=y
CONFIG_EXT2_FS_SECURITY=y
# CONFIG_EXT2_FS_XIP is not set
CONFIG_EXT3_FS=y
CONFIG_EXT3_FS_XATTR=y
CONFIG_EXT3_FS_POSIX_ACL=y
CONFIG_EXT3_FS_SECURITY=y
CONFIG_JBD=y
# CONFIG_JBD_DEBUG is not set
CONFIG_FS_MBCACHE=y
CONFIG_REISERFS_FS=y
# CONFIG_REISERFS_CHECK is not set
# CONFIG_REISERFS_PROC_INFO is not set
CONFIG_REISERFS_FS_XATTR=y
CONFIG_REISERFS_FS_POSIX_ACL=y
CONFIG_REISERFS_FS_SECURITY=y
CONFIG_JFS_FS=m
CONFIG_JFS_POSIX_ACL=y
# CONFIG_JFS_SECURITY is not set
# CONFIG_JFS_DEBUG is not set
# CONFIG_JFS_STATISTICS is not set
CONFIG_FS_POSIX_ACL=y
CONFIG_XFS_FS=m
CONFIG_XFS_QUOTA=y
CONFIG_XFS_SECURITY=y
CONFIG_XFS_POSIX_ACL=y
CONFIG_XFS_RT=y
# CONFIG_MINIX_FS is not set
# CONFIG_ROMFS_FS is not set
CONFIG_INOTIFY=y
# CONFIG_QUOTA is not set
CONFIG_QUOTACTL=y
CONFIG_DNOTIFY=y
# CONFIG_AUTOFS_FS is not set
# CONFIG_AUTOFS4_FS is not set
# CONFIG_FUSE_FS is not set

#
# CD-ROM/DVD Filesystems
#
CONFIG_ISO9660_FS=y
CONFIG_JOLIET=y
CONFIG_ZISOFS=y
CONFIG_ZISOFS_FS=y
CONFIG_UDF_FS=y
CONFIG_UDF_NLS=y

#
# DOS/FAT/NT Filesystems
#
CONFIG_FAT_FS=y
CONFIG_MSDOS_FS=y
CONFIG_VFAT_FS=y
CONFIG_FAT_DEFAULT_CODEPAGE=437
CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
CONFIG_NTFS_FS=y
# CONFIG_NTFS_DEBUG is not set
CONFIG_NTFS_RW=y

#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
CONFIG_PROC_KCORE=y
CONFIG_SYSFS=y
CONFIG_TMPFS=y
# CONFIG_HUGETLBFS is not set
# CONFIG_HUGETLB_PAGE is not set
CONFIG_RAMFS=y
# CONFIG_RELAYFS_FS is not set

#
# Miscellaneous filesystems
#
# CONFIG_ADFS_FS is not set
# CONFIG_AFFS_FS is not set
# CONFIG_HFS_FS is not set
# CONFIG_HFSPLUS_FS is not set
# CONFIG_BEFS_FS is not set
# CONFIG_BFS_FS is not set
# CONFIG_EFS_FS is not set
# CONFIG_CRAMFS is not set
# CONFIG_SQUASHFS is not set
# CONFIG_VXFS_FS is not set
# CONFIG_HPFS_FS is not set
# CONFIG_QNX4FS_FS is not set
# CONFIG_SYSV_FS is not set
# CONFIG_UFS_FS is not set

#
# Network File Systems
#
# CONFIG_NFS_FS is not set
# CONFIG_NFSD is not set
CONFIG_SMB_FS=m
CONFIG_SMB_NLS_DEFAULT=y
CONFIG_SMB_NLS_REMOTE="cp437"
CONFIG_CIFS=m
# CONFIG_CIFS_STATS is not set
# CONFIG_CIFS_XATTR is not set
# CONFIG_CIFS_EXPERIMENTAL is not set
# CONFIG_NCP_FS is not set
# CONFIG_CODA_FS is not set
# CONFIG_AFS_FS is not set
# CONFIG_9P_FS is not set

#
# Partition Types
#
CONFIG_PARTITION_ADVANCED=y
# CONFIG_ACORN_PARTITION is not set
# CONFIG_OSF_PARTITION is not set
# CONFIG_AMIGA_PARTITION is not set
# CONFIG_ATARI_PARTITION is not set
# CONFIG_MAC_PARTITION is not set
CONFIG_MSDOS_PARTITION=y
# CONFIG_BSD_DISKLABEL is not set
# CONFIG_MINIX_SUBPARTITION is not set
# CONFIG_SOLARIS_X86_PARTITION is not set
# CONFIG_UNIXWARE_DISKLABEL is not set
CONFIG_LDM_PARTITION=y
# CONFIG_LDM_DEBUG is not set
# CONFIG_SGI_PARTITION is not set
# CONFIG_ULTRIX_PARTITION is not set
# CONFIG_SUN_PARTITION is not set
# CONFIG_EFI_PARTITION is not set

#
# Native Language Support
#
CONFIG_NLS=y
CONFIG_NLS_DEFAULT="utf8"
CONFIG_NLS_CODEPAGE_437=y
# CONFIG_NLS_CODEPAGE_737 is not set
# CONFIG_NLS_CODEPAGE_775 is not set
# CONFIG_NLS_CODEPAGE_850 is not set
# CONFIG_NLS_CODEPAGE_852 is not set
# CONFIG_NLS_CODEPAGE_855 is not set
# CONFIG_NLS_CODEPAGE_857 is not set
# CONFIG_NLS_CODEPAGE_860 is not set
# CONFIG_NLS_CODEPAGE_861 is not set
# CONFIG_NLS_CODEPAGE_862 is not set
# CONFIG_NLS_CODEPAGE_863 is not set
# CONFIG_NLS_CODEPAGE_864 is not set
# CONFIG_NLS_CODEPAGE_865 is not set
CONFIG_NLS_CODEPAGE_866=y
# CONFIG_NLS_CODEPAGE_869 is not set
# CONFIG_NLS_CODEPAGE_936 is not set
# CONFIG_NLS_CODEPAGE_950 is not set
# CONFIG_NLS_CODEPAGE_932 is not set
# CONFIG_NLS_CODEPAGE_949 is not set
# CONFIG_NLS_CODEPAGE_874 is not set
# CONFIG_NLS_ISO8859_8 is not set
# CONFIG_NLS_CODEPAGE_1250 is not set
CONFIG_NLS_CODEPAGE_1251=y
# CONFIG_NLS_ASCII is not set
CONFIG_NLS_ISO8859_1=y
# CONFIG_NLS_ISO8859_2 is not set
# CONFIG_NLS_ISO8859_3 is not set
# CONFIG_NLS_ISO8859_4 is not set
# CONFIG_NLS_ISO8859_5 is not set
# CONFIG_NLS_ISO8859_6 is not set
# CONFIG_NLS_ISO8859_7 is not set
# CONFIG_NLS_ISO8859_9 is not set
# CONFIG_NLS_ISO8859_13 is not set
# CONFIG_NLS_ISO8859_14 is not set
# CONFIG_NLS_ISO8859_15 is not set
CONFIG_NLS_KOI8_R=y
CONFIG_NLS_KOI8_U=y
CONFIG_NLS_UTF8=y

#
# Instrumentation Support
#
# CONFIG_PROFILING is not set
# CONFIG_KPROBES is not set

#
# Kernel hacking
#
# CONFIG_PRINTK_TIME is not set
# CONFIG_DEBUG_KERNEL is not set
CONFIG_LOG_BUF_SHIFT=15

#
# Security options
#
# CONFIG_KEYS is not set
# CONFIG_SECURITY is not set

#
# Cryptographic options
#
CONFIG_CRYPTO=y
CONFIG_CRYPTO_HMAC=y
# CONFIG_CRYPTO_NULL is not set
# CONFIG_CRYPTO_MD4 is not set
CONFIG_CRYPTO_MD5=y
CONFIG_CRYPTO_SHA1=m
CONFIG_CRYPTO_SHA256=m
CONFIG_CRYPTO_SHA512=m
# CONFIG_CRYPTO_WP512 is not set
# CONFIG_CRYPTO_TGR192 is not set
CONFIG_CRYPTO_DES=y
CONFIG_CRYPTO_BLOWFISH=m
CONFIG_CRYPTO_TWOFISH=m
CONFIG_CRYPTO_SERPENT=m
# CONFIG_CRYPTO_AES_X86_64 is not set
CONFIG_CRYPTO_CAST5=m
CONFIG_CRYPTO_CAST6=m
CONFIG_CRYPTO_TEA=m
CONFIG_CRYPTO_ARC4=m
# CONFIG_CRYPTO_KHAZAD is not set
# CONFIG_CRYPTO_ANUBIS is not set
CONFIG_CRYPTO_DEFLATE=m
CONFIG_CRYPTO_MICHAEL_MIC=m
CONFIG_CRYPTO_CRC32C=m
# CONFIG_CRYPTO_TEST is not set

#
# Hardware crypto devices
#

#
# Library routines
#
CONFIG_CRC_CCITT=m
# CONFIG_CRC16 is not set
CONFIG_CRC32=y
CONFIG_LIBCRC32C=m
CONFIG_ZLIB_INFLATE=y
CONFIG_ZLIB_DEFLATE=m

-----------------------------------

---- make.conf --------------------

# These settings were set by the catalyst build script that automatically
built this stage
# Please consult /etc/make.conf.example for a more detailed example
CFLAGS="-march=k8 -O3 -fforce-addr -funit-at-a-time -fomit-frame-pointer
-frename-registers -fprefetch-loop-arrays -ftracer -funswitch-loops 
-ffast-math"
CHOST="x86_64-pc-linux-gnu"
CXXFLAGS="${CFLAGS}"
GENTOO_MIRRORS="http://gentoo.osuosl.org/"
ACCEPT_KEYWORDS="amd64"
MAKEOPTS="-j2"
LINGUAS="uk"
SYNC="rsync://rsync.uk.gentoo.org/gentoo-portage"
USE="3dfx 3dnow 3dnowext 7zip aac acpi amarok asf bash-completion cdparanoia
     cdr divx4linux djvu dvd dvdread fat fbdev fbsplash freetype fuse
     gimp glx gphoto2 iconv imlib2 input_devices_keyboard
     input_devices_mouse jabber javascript jpeg2k kdeenablefinal lame
     maps mjpeg mmx mp4live mpeg2 mplayer musicbrainz no_wxgtk1 nocd
     nomotif nomusic nopop3d nosendmail ntfs pdf rar reiserfs scaner scp
     sms sse sse2 stats tidy transcode type1 unicode utf8 v4l v4l2 vcd
     vfat video_cards_ati video_cards_fglrx video_cards_v4l
     video_cards_vesa video_cards_vga vidix vim vim-with-x win32codecs
     wma x86_64 xanim xinerama xosd zeroconf zip -alsa -fortran -gnome
     -gtk -imlib -ipv6"

------------------------------------------

--- grub.conf ---------------------------
title  GentooLinux 2.6.15
root (hd0,6)
kernel /boot/kernel-2.6.15-gentoo-r3 root=/dev/hda7
video=vesafb:ypan,1024x768-32@60

---------------------------------------------


-- 
Vitaly Kovalyshyn aka samael
ICQ: 169219607
e-mail: samael@ugcc.org.ua
Unix System Administrator
Ukrainian Greek-Catholic Church

~~~~~~~~~~~~~~~~~~~
Open Your mind - use OpenSource!
"Nothing else matters", - © Metallica
"Цели ясны, задачи определены, за работу,
товарищи", - ©

-- 
Vitaly Kovalyshyn aka samael
ICQ: 169219607
e-mail: samael@ugcc.org.ua
URL: http://www.ugcc.lviv.ua/
Unix System Administrator
Ukrainian Greek-Catholic Church

~~~~~~~~~~~~~~~~~~~
Open Your mind from closed Windows - use OpenSource!

UNIX is user-friendly; it's just picky about its friends!!!
UNIX is simple; it just takes a genius to understand its simplicity!!!

-- 
gentoo-admin@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 10+ messages in thread

* [gentoo-admin] [gentoo-desktop] Problem with Gentoo-2006.0 on  AMD64 Athlon 3000+
  2005-11-08  9:25     ` [gentoo-desktop] [gentoo-admin] Problem with configuring network via '/sbin/ifconfig' Vitaly Kovalyshyn
                         ` (2 preceding siblings ...)
  2006-02-13  9:14       ` [gentoo-admin] [gentoo-desktop] Problem with Gentoo-2006.0 on AMD64 Athlon 3000+ Vitaly Kovalyshyn
@ 2006-02-14 10:03       ` Vitaly Kovalyshyn
  2006-02-14 13:18         ` Nerdvana - Steve Walsh
  3 siblings, 1 reply; 10+ messages in thread
From: Vitaly Kovalyshyn @ 2006-02-14 10:03 UTC (permalink / raw
  To: gentoo-admin; +Cc: gentoo-desktop

Can anybody help me?????????????

I get kubuntu-dapper-install-amd64_20060212.iso
And nothing!!! No sound, no TV!!!

But old KNOPPIX(i386) -  works perfectly!!!


And what does it mean:
Feb 12 19:46:31 tux PCI: Setting latency timer of device 0000:00:04.0 to 64
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
.........................................................................
Feb 12 19:46:31 tux AC'97 0 does not respond - RESET
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux AC'97 0 access is not valid [0xffffffff], removing mixer.
Feb 12 19:46:31 tux Unable to initialize codec #0
Feb 12 19:46:31 tux ACPI: PCI interrupt for device 0000:00:04.0 disabled



-----------------------------------------------------------------------------------------------
Good time of day!

I had a problem. I decided to renew the computer. Replaced
Duron950/Soltek KT133/512 MB/nVidia 2MX 400 AGP x2
on
AMD64 Athlon 3000+/Asus of K8N4-E Delux/1GB/ATI X600 PCI-Express x16

Downloaded gentoo-x86_64-minimal and stage1-amd64
emerge sync
make.profile -> amd64/2006.0

Before ALL worked perfectly, and sound and TV/FM.. Now, to neither the
sound nor TV, and console only in the VGA-mode... See my logs....
I nead Your advise.....

PS: In KNOPPIX LIVECD (i386) – all works perfectly!!!

----  DMESG  -------------

Bootdata ok (command line is root=/dev/hda7
video=vesafb:ypan,1024x768-32@60 )
Linux version 2.6.15-gentoo-r3 (root@livecd) (gcc version 3.4.4 (Gentoo
3.4.4-r1, ssp-3.4.4-1.0, pie-8.7.8)) #1 SMP PREEMPT Sun Feb 12 21:41:15
EET 2006
BIOS-provided physical RAM map:
 BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
 BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
 BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
 BIOS-e820: 0000000000100000 - 000000003fff0000 (usable)
 BIOS-e820: 000000003fff0000 - 000000003fff3000 (ACPI NVS)
 BIOS-e820: 000000003fff3000 - 0000000040000000 (ACPI data)
 BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
 BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
 BIOS-e820: 00000000fee00000 - 00000000fef00000 (reserved)
 BIOS-e820: 00000000fefffc00 - 00000000ff000000 (reserved)
 BIOS-e820: 00000000ffff0000 - 0000000100000000 (reserved)
ACPI: RSDP (v000 Nvidia                                ) @ 0x00000000000f77b0
ACPI: RSDT (v001 Nvidia AWRDACPI 0x42302e31 AWRD 0x00000000) @
0x000000003fff3040
ACPI: FADT (v001 Nvidia AWRDACPI 0x42302e31 AWRD 0x00000000) @
0x000000003fff30c0
ACPI: MCFG (v001 Nvidia AWRDACPI 0x42302e31 AWRD 0x00000000) @
0x000000003fff96c0
ACPI: MADT (v001 Nvidia AWRDACPI 0x42302e31 AWRD 0x00000000) @
0x000000003fff9600
ACPI: DSDT (v001 NVIDIA AWRDACPI 0x00001000 MSFT 0x0100000e) @
0x0000000000000000
On node 0 totalpages: 257558
  DMA zone: 3053 pages, LIFO batch:0
  DMA32 zone: 254505 pages, LIFO batch:31
  Normal zone: 0 pages, LIFO batch:0
  HighMem zone: 0 pages, LIFO batch:0
Nvidia board detected. Ignoring ACPI timer override.
ACPI: Local APIC address 0xfee00000
ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
Processor #0 15:4 APIC version 16
ACPI: LAPIC_NMI (acpi_id[0x00] 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: BIOS IRQ0 pin2 override ignored.
ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge)
ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge)
ACPI: IRQ9 used by override.
ACPI: IRQ14 used by override.
ACPI: IRQ15 used by override.
Setting APIC routing to flat
Using ACPI (MADT) for SMP configuration information
Allocating PCI resources starting at 50000000 (gap: 40000000:a0000000)
Checking aperture...
CPU 0: aperture @ 8c8a000000 size 32 MB
Aperture from northbridge cpu 0 too small (32 MB)
No AGP bridge found
Built 1 zonelists
Kernel command line: root=/dev/hda7 video=vesafb:ypan,1024x768-32@60
Initializing CPU#0
PID hash table entries: 4096 (order: 12, 131072 bytes)
time.c: Using 1.193182 MHz PIT timer.
time.c: Detected 2010.322 MHz processor.
Speakup v-2.00 CVS: Wed Dec 21 14:36:03 EST 2005 : initialized
Console: colour VGA+ 80x25
Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes)
Inode-cache hash table entries: 65536 (order: 7, 524288 bytes)
Memory: 1028252k/1048512k available (2241k kernel code, 19624k reserved,
727k data, 196k init)
Calibrating delay using timer specific routine.. 4024.95 BogoMIPS
(lpj=8049902)
Mount-cache hash table entries: 256
CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
CPU: L2 Cache: 512K (64 bytes/line)
mtrr: v2.0 (20020519)
Using local APIC timer interrupts.
Detected 12.564 MHz APIC timer.
Brought up 1 CPUs
time.c: Using PIT/TSC based timekeeping.
testing NMI watchdog ... OK.
NET: Registered protocol family 16
ACPI: bus type pci registered
PCI: Using configuration type 1
PCI: Using MMCONFIG at e0000000
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)
PCI: Transparent bridge - 0000:00:09.0
Boot video device is 0000:01:00.0
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]
ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNK2] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNK3] (IRQs 3 4 *5 7 9 10 11 12 14 15)
ACPI: PCI Interrupt Link [LNK4] (IRQs 3 4 5 7 9 10 *11 12 14 15)
ACPI: PCI Interrupt Link [LNK5] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LUBA] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LUBB] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LMAC] (IRQs 3 4 5 7 9 10 *11 12 14 15)
ACPI: PCI Interrupt Link [LACI] (IRQs *3 4 5 7 9 10 11 12 14 15)
ACPI: PCI Interrupt Link [LMCI] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LSMB] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LUB2] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LIDE] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LSID] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LFID] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LPCA] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [APC1] (IRQs 16) *0, disabled.
ACPI: PCI Interrupt Link [APC2] (IRQs 17) *0, disabled.
ACPI: PCI Interrupt Link [APC3] (IRQs 18) *5
ACPI: PCI Interrupt Link [APC4] (IRQs 19) *11
ACPI: PCI Interrupt Link [APC5] (IRQs *16), disabled.
ACPI: PCI Interrupt Link [APCF] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APCG] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APCH] (IRQs 20 21 22 23) *0
ACPI: PCI Interrupt Link [APCJ] (IRQs 20 21 22 23) *0
ACPI: PCI Interrupt Link [APCK] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APCS] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APCL] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APCZ] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APSI] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APSJ] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APCP] (IRQs 20 21 22 23) *0, disabled.
Linux Plug and Play Support v0.97 (c) Adam Belay
pnp: PnP ACPI init
pnp: PnP ACPI: found 15 devices
SCSI subsystem initialized
PCI: Using ACPI for IRQ routing
PCI: If a device doesn't work, try "pci=routeirq".  If it helps, post a
report
PCI: Cannot allocate resource region 1 of device 0000:01:00.0
PCI-DMA: Disabling IOMMU.
pnp: 00:00: ioport range 0x4000-0x407f could not be reserved
pnp: 00:00: ioport range 0x4080-0x40ff has been reserved
pnp: 00:00: ioport range 0x4400-0x447f has been reserved
pnp: 00:00: ioport range 0x4480-0x44ff could not be reserved
pnp: 00:00: ioport range 0x4800-0x487f has been reserved
pnp: 00:00: ioport range 0x4880-0x48ff has been reserved
PCI: Bridge: 0000:00:09.0
  IO window: a000-bfff
  MEM window: da000000-dbffffff
  PREFETCH window: disabled.
PCI: Bridge: 0000:00:0b.0
  IO window: disabled.
  MEM window: disabled.
  PREFETCH window: disabled.
PCI: Bridge: 0000:00:0c.0
  IO window: disabled.
  MEM window: disabled.
  PREFETCH window: disabled.
PCI: Bridge: 0000:00:0d.0
  IO window: disabled.
  MEM window: disabled.
  PREFETCH window: disabled.
PCI: Ignore bogus resource 6 [0:0] of 0000:01:00.0
PCI: Failed to allocate I/O resource #1:4000@c000 for 0000:01:00.0
PCI: Bridge: 0000:00:0e.0
  IO window: c000-cfff
  MEM window: d8000000-d9ffffff
  PREFETCH window: d0000000-d7ffffff
PCI: Setting latency timer of device 0000:00:09.0 to 64
PCI: Setting latency timer of device 0000:00:0b.0 to 64
PCI: Setting latency timer of device 0000:00:0c.0 to 64
PCI: Setting latency timer of device 0000:00:0d.0 to 64
PCI: Setting latency timer of device 0000:00:0e.0 to 64
IA32 emulation $Id: sys_ia32.c,v 1.32 2002/03/24 13:02:28 ak Exp $
NTFS driver 2.1.25 [Flags: R/W].
Initializing Cryptographic API
io scheduler noop registered
io scheduler deadline registered
PCI: Setting latency timer of device 0000:00:0b.0 to 64
pcie_portdrv_probe->Dev[005d:10de] has invalid IRQ. Check vendor BIOS
assign_interrupt_mode Found MSI capability
Allocate Port Service[pcie00]
Allocate Port Service[pcie03]
PCI: Setting latency timer of device 0000:00:0c.0 to 64
pcie_portdrv_probe->Dev[005d:10de] has invalid IRQ. Check vendor BIOS
assign_interrupt_mode Found MSI capability
Allocate Port Service[pcie00]
Allocate Port Service[pcie03]
PCI: Setting latency timer of device 0000:00:0d.0 to 64
pcie_portdrv_probe->Dev[005d:10de] has invalid IRQ. Check vendor BIOS
assign_interrupt_mode Found MSI capability
Allocate Port Service[pcie00]
Allocate Port Service[pcie03]
PCI: Setting latency timer of device 0000:00:0e.0 to 64
pcie_portdrv_probe->Dev[005d:10de] has invalid IRQ. Check vendor BIOS
assign_interrupt_mode Found MSI capability
Allocate Port Service[pcie00]
Allocate Port Service[pcie03]
Real Time Clock Driver v1.12
initialized device: /dev/synth, node ( MAJOR 10, MINOR 25 )
Linux agpgart interface v0.101 (c) Dave Jones
PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
serio: i8042 AUX 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
serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
serial8250: ttyS0 at I/O 0x3f8 (irq = 0) is a 16550A
00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
mice: PS/2 mouse device common for all mice
RAMDISK driver initialized: 16 RAM disks of 8192K size 1024 blocksize
loop: loaded (max 8 devices)
Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
NFORCE-CK804: IDE controller at PCI slot 0000:00:06.0
NFORCE-CK804: chipset revision 242
NFORCE-CK804: not 100% native mode: will probe irqs later
NFORCE-CK804: 0000:00:06.0 (rev f2) UDMA133 controller
    ide0: BM-DMA at 0xf000-0xf007, BIOS settings: hda:DMA, hdb:DMA
    ide1: BM-DMA at 0xf008-0xf00f, BIOS settings: hdc:DMA, hdd:DMA
Probing IDE interface ide0...
input: AT Translated Set 2 keyboard as /class/input/input0
Losing some ticks... checking if CPU frequency changed.
input: ImPS/2 Generic Wheel Mouse as /class/input/input1
hda: ST3120022A, ATA DISK drive
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
Probing IDE interface ide1...
hdc: HL-DT-ST RW/DVD GCC-4521B, ATAPI CD/DVD-ROM drive
ide1 at 0x170-0x177,0x376 on irq 15
hda: max request size: 1024KiB
hda: 234441648 sectors (120034 MB) w/2048KiB Cache, CHS=16383/255/63,
UDMA(100)
hda: cache flushes supported
 hda: hda1 hda2 < hda5 hda6 hda7 hda8 > hda3
hdc: ATAPI 52X DVD-ROM CD-R/RW drive, 2048kB Cache, UDMA(33)
Uniform CD-ROM driver Revision: 3.20
NET: Registered protocol family 2
IP route cache hash table entries: 32768 (order: 6, 262144 bytes)
TCP established hash table entries: 131072 (order: 9, 2097152 bytes)
TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
TCP: Hash tables configured (established 131072 bind 65536)
TCP reno registered
TCP bic registered
NET: Registered protocol family 1
NET: Registered protocol family 17
kjournald starting.  Commit interval 5 seconds
EXT3-fs: mounted filesystem with ordered data mode.
VFS: Mounted root (ext3 filesystem) readonly.
Freeing unused kernel memory: 196k freed
Adding 530104k swap on /dev/hda8.  Priority:-1 extents:1 across:530104k
EXT3 FS on hda7, internal journal
ReiserFS: hda3: found reiserfs format "3.6" with standard journal
ReiserFS: hda3: using ordered data mode
ReiserFS: hda3: journal params: device hda3, size 8192, journal first
block 18, max trans len 1024, max batch 900, max commit age 30, max trans
age 30
ReiserFS: hda3: checking transaction log (hda3)
ReiserFS: hda3: Using r5 hash to sort names
usbcore: registered new driver usbfs
usbcore: registered new driver hub

-------------------------------------------------

--- MESSAGES ---------------------------------

Feb 12 19:46:31 tux syslog-ng[7509]: syslog-ng version 1.6.9 starting
Feb 12 19:46:31 tux syslog-ng[7509]: Changing permissions on special file
/dev/tty12
Feb 12 19:46:31 tux DVD-ROM CD-R/RW drive, 2048kB Cache, UDMA(33)
Feb 12 19:46:31 tux Uniform CD-ROM driver Revision: 3.20
Feb 12 19:46:31 tux NET: Registered protocol family 2
Feb 12 19:46:31 tux IP route cache hash table entries: 32768 (order: 6,
262144 bytes)
Feb 12 19:46:31 tux TCP established hash table entries: 131072 (order: 9,
2097152 bytes)
Feb 12 19:46:31 tux TCP bind hash table entries: 65536 (order: 8, 1048576
bytes)
Feb 12 19:46:31 tux TCP: Hash tables configured (established 131072 bind
65536)
Feb 12 19:46:31 tux TCP reno registered
Feb 12 19:46:31 tux TCP bic registered
Feb 12 19:46:31 tux NET: Registered protocol family 1
Feb 12 19:46:31 tux NET: Registered protocol family 17
Feb 12 19:46:31 tux kjournald starting.  Commit interval 5 seconds
Feb 12 19:46:31 tux EXT3-fs: mounted filesystem with ordered data mode.
Feb 12 19:46:31 tux VFS: Mounted root (ext3 filesystem) readonly.
Feb 12 19:46:31 tux Freeing unused kernel memory: 196k freed
Feb 12 19:46:31 tux Adding 530104k swap on /dev/hda8.  Priority:-1
extents:1 across:530104k
Feb 12 19:46:31 tux EXT3 FS on hda7, internal journal
Feb 12 19:46:31 tux ReiserFS: hda3: found reiserfs format "3.6" with
standard journal
Feb 12 19:46:31 tux ReiserFS: hda3: using ordered data mode
Feb 12 19:46:31 tux ReiserFS: hda3: journal params: device hda3, size
8192, journal first block 18, max trans len 1024, max batch 900, max
commit age 30, max trans age 30
Feb 12 19:46:31 tux ReiserFS: hda3: checking transaction log (hda3)
Feb 12 19:46:31 tux ReiserFS: hda3: Using r5 hash to sort names
Feb 12 19:46:31 tux usbcore: registered new driver usbfs
Feb 12 19:46:31 tux usbcore: registered new driver hub
Feb 12 19:46:31 tux i2c_adapter i2c-0: nForce2 SMBus adapter at 0x4c00
Feb 12 19:46:31 tux i2c_adapter i2c-1: nForce2 SMBus adapter at 0x4c40
Feb 12 19:46:31 tux ohci_hcd: 2005 April 22 USB 1.1 'Open' Host Controller
(OHCI) Driver (PCI)
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APCF] disabled and
referenced, BIOS bug.
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APCF] BIOS reported IRQ 0,
using IRQ 23
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APCF] enabled at IRQ 23
Feb 12 19:46:31 tux GSI 16 sharing vector 0xB1 and IRQ 16
Feb 12 19:46:31 tux ACPI: PCI Interrupt 0000:00:02.0[A] -> Link [APCF] ->
GSI 23 (level, low) -> IRQ 16
Feb 12 19:46:31 tux ACPI: PCI interrupt for device 0000:00:02.0 disabled
Feb 12 19:46:31 tux ohci_hcd 0000:00:02.0: init 0000:00:02.0 fail, -16
Feb 12 19:46:31 tux ohci_hcd: probe of 0000:00:02.0 failed with error -16
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APCL] disabled and
referenced, BIOS bug.
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APCL] BIOS reported IRQ 0,
using IRQ 22
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APCL] enabled at IRQ 22
Feb 12 19:46:31 tux GSI 17 sharing vector 0xB9 and IRQ 17
Feb 12 19:46:31 tux ACPI: PCI Interrupt 0000:00:02.1[B] -> Link [APCL] ->
GSI 22 (level, low) -> IRQ 17
Feb 12 19:46:31 tux ACPI: PCI interrupt for device 0000:00:02.1 disabled
Feb 12 19:46:31 tux ehci_hcd 0000:00:02.1: init 0000:00:02.1 fail, -16
Feb 12 19:46:31 tux ehci_hcd: probe of 0000:00:02.1 failed with error -16
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APCJ] BIOS reported IRQ 0,
using IRQ 21
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APCJ] enabled at IRQ 21
Feb 12 19:46:31 tux GSI 18 sharing vector 0xC1 and IRQ 18
Feb 12 19:46:31 tux ACPI: PCI Interrupt 0000:00:04.0[A] -> Link [APCJ] ->
GSI 21 (level, low) -> IRQ 18
Feb 12 19:46:31 tux PCI: Setting latency timer of device 0000:00:04.0 to 64
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux AC'97 0 does not respond - RESET
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux AC'97 0 access is not valid [0xffffffff], removing mixer.
Feb 12 19:46:31 tux Unable to initialize codec #0
Feb 12 19:46:31 tux ACPI: PCI interrupt for device 0000:00:04.0 disabled
Feb 12 19:46:31 tux Intel ICH: probe of 0000:00:04.0 failed with error -5
Feb 12 19:46:31 tux libata version 1.20 loaded.
Feb 12 19:46:31 tux forcedeth.c: Reverse Engineered nForce ethernet
driver. Version 0.48.
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APCH] BIOS reported IRQ 0,
using IRQ 20
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APCH] enabled at IRQ 20
Feb 12 19:46:31 tux GSI 19 sharing vector 0xC9 and IRQ 19
Feb 12 19:46:31 tux ACPI: PCI Interrupt 0000:00:0a.0[A] -> Link [APCH] ->
GSI 20 (level, low) -> IRQ 19
Feb 12 19:46:31 tux PCI: Setting latency timer of device 0000:00:0a.0 to 64
Feb 12 19:46:31 tux forcedeth: Couldn't find register window for device
0000:00:0a.0.
Feb 12 19:46:31 tux ACPI: PCI interrupt for device 0000:00:0a.0 disabled
Feb 12 19:46:31 tux forcedeth: probe of 0000:00:0a.0 failed with error -22
Feb 12 19:46:31 tux Linux video capture interface: v1.00
Feb 12 19:46:31 tux saa7130/34: v4l2 driver version 0.2.14 loaded
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APC2] disabled and
referenced, BIOS bug.
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APC2] BIOS reported IRQ 0,
using IRQ 17
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APC2] enabled at IRQ 17
Feb 12 19:46:31 tux GSI 20 sharing vector 0xD1 and IRQ 20
Feb 12 19:46:31 tux ACPI: PCI Interrupt 0000:05:07.0[A] -> Link [APC2] ->
GSI 17 (level, low) -> IRQ 20
Feb 12 19:46:31 tux saa7130[0]: found at 0000:05:07.0, rev: 1, irq: 20,
latency: 32, mmio: 0x0
Feb 12 19:46:31 tux saa7130[0]: subsystem: 1461:a115, board:
UNKNOWN/GENERIC [card=0,autodetected]
Feb 12 19:46:31 tux saa7130[0]: can't get MMIO memory @ 0x0
Feb 12 19:46:31 tux saa7134: probe of 0000:05:07.0 failed with error -16
Feb 12 19:46:31 tux sata_sil 0000:05:0a.0: version 0.9
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APC4] BIOS reported IRQ 11,
using IRQ 19
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APC4] enabled at IRQ 19
Feb 12 19:46:31 tux GSI 21 sharing vector 0xD9 and IRQ 21
Feb 12 19:46:31 tux ACPI: PCI Interrupt 0000:05:0a.0[A] -> Link [APC4] ->
GSI 19 (level, low) -> IRQ 21
Feb 12 19:46:31 tux ACPI: PCI interrupt for device 0000:05:0a.0 disabled
Feb 12 19:46:31 tux sata_sil: probe of 0000:05:0a.0 failed with error -12
Feb 12 19:46:31 tux ieee1394: Initialized config rom entry `ip1394'
Feb 12 19:46:31 tux ohci1394: $Rev: 1313 $ Ben Collins <bcollins@debian.org>
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APC1] disabled and
referenced, BIOS bug.
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APC1] BIOS reported IRQ 0,
using IRQ 16
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APC1] enabled at IRQ 16
Feb 12 19:46:31 tux GSI 22 sharing vector 0xE1 and IRQ 22
Feb 12 19:46:31 tux ACPI: PCI Interrupt 0000:05:0b.0[A] -> Link [APC1] ->
GSI 16 (level, low) -> IRQ 22
Feb 12 19:46:31 tux ohci1394: fw-host0: Unexpected PCI resource length of 0!
Feb 12 19:46:31 tux ohci1394: MMIO resource (0x0 - 0x800) unavailable
Feb 12 19:46:31 tux ohci1394: probe of 0000:05:0b.0 failed with error -12
Feb 12 19:46:31 tux input: PC Speaker as /class/input/input2
Feb 12 19:46:31 tux Floppy drive(s): fd0 is 1.44M
Feb 12 19:46:31 tux FDC 0 is a post-1991 82077
Feb 12 19:46:31 tux parport: PnPBIOS parport detected.
Feb 12 19:46:31 tux parport0: PC-style at 0x378 (0x778), irq 7, dma 3
[PCSPP,TRISTATE,COMPAT,ECP,DMA]
Feb 12 19:46:31 tux USB Universal Host Controller Interface driver v2.3
Feb 12 19:46:43 tux login(pam_unix)[7728]: session opened for user root by
LOGIN(uid=0)
Feb 12 19:48:09 tux shutdown[7756]: shutting down for system reboot
Feb 12 19:48:09 tux init: Switching to runlevel: 6
Feb 12 19:48:17 tux syslog-ng[7509]: syslog-ng version 1.6.9 going down

-------------------------------------------

---- kernlel-2.6.15-r3  -------------------

#
# Automatically generated make config: don't edit
# Linux kernel version: 2.6.15-gentoo-r3
# Sun Feb 12 21:30:32 2006
#
CONFIG_X86_64=y
CONFIG_64BIT=y
CONFIG_X86=y
CONFIG_SEMAPHORE_SLEEPERS=y
CONFIG_MMU=y
CONFIG_RWSEM_GENERIC_SPINLOCK=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
CONFIG_X86_CMPXCHG=y
CONFIG_EARLY_PRINTK=y
CONFIG_GENERIC_ISA_DMA=y
CONFIG_GENERIC_IOMAP=y
CONFIG_ARCH_MAY_HAVE_PC_FDC=y

#
# Code maturity level options
#
CONFIG_EXPERIMENTAL=y
CONFIG_CLEAN_COMPILE=y
CONFIG_LOCK_KERNEL=y
CONFIG_INIT_ENV_ARG_LIMIT=32

#
# General setup
#
CONFIG_LOCALVERSION=""
CONFIG_LOCALVERSION_AUTO=y
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
# CONFIG_POSIX_MQUEUE is not set
# CONFIG_BSD_PROCESS_ACCT is not set
CONFIG_SYSCTL=y
# CONFIG_AUDIT is not set
CONFIG_HOTPLUG=y
CONFIG_KOBJECT_UEVENT=y
CONFIG_IKCONFIG=y
CONFIG_IKCONFIG_PROC=y
CONFIG_CPUSETS=y
CONFIG_INITRAMFS_SOURCE=""
CONFIG_CC_OPTIMIZE_FOR_SIZE=y
CONFIG_EMBEDDED=y
# CONFIG_KALLSYMS is not set
CONFIG_PRINTK=y
CONFIG_BUG=y
CONFIG_BASE_FULL=y
CONFIG_FUTEX=y
CONFIG_EPOLL=y
CONFIG_SHMEM=y
CONFIG_CC_ALIGN_FUNCTIONS=0
CONFIG_CC_ALIGN_LABELS=0
CONFIG_CC_ALIGN_LOOPS=0
CONFIG_CC_ALIGN_JUMPS=0
# CONFIG_TINY_SHMEM is not set
CONFIG_BASE_SMALL=0

#
# Loadable module support
#
CONFIG_MODULES=y
CONFIG_MODULE_UNLOAD=y
CONFIG_MODULE_FORCE_UNLOAD=y
CONFIG_OBSOLETE_MODPARM=y
CONFIG_MODVERSIONS=y
# CONFIG_MODULE_SRCVERSION_ALL is not set
CONFIG_KMOD=y
CONFIG_STOP_MACHINE=y

#
# Block layer
#
CONFIG_LBD=y

#
# IO Schedulers
#
CONFIG_IOSCHED_NOOP=y
# CONFIG_IOSCHED_AS is not set
CONFIG_IOSCHED_DEADLINE=y
# CONFIG_IOSCHED_CFQ is not set
# CONFIG_DEFAULT_AS is not set
CONFIG_DEFAULT_DEADLINE=y
# CONFIG_DEFAULT_CFQ is not set
# CONFIG_DEFAULT_NOOP is not set
CONFIG_DEFAULT_IOSCHED="deadline"

#
# Processor type and features
#
# CONFIG_MK8 is not set
# CONFIG_MPSC is not set
CONFIG_GENERIC_CPU=y
CONFIG_X86_L1_CACHE_BYTES=128
CONFIG_X86_L1_CACHE_SHIFT=7
CONFIG_X86_TSC=y
CONFIG_X86_GOOD_APIC=y
# CONFIG_MICROCODE is not set
# CONFIG_X86_MSR is not set
# CONFIG_X86_CPUID is not set
CONFIG_X86_HT=y
CONFIG_X86_IO_APIC=y
CONFIG_X86_LOCAL_APIC=y
CONFIG_MTRR=y
CONFIG_SMP=y
CONFIG_SCHED_SMT=y
# CONFIG_PREEMPT_NONE is not set
# CONFIG_PREEMPT_VOLUNTARY is not set
CONFIG_PREEMPT=y
CONFIG_PREEMPT_BKL=y
# CONFIG_NUMA is not set
CONFIG_ARCH_FLATMEM_ENABLE=y
CONFIG_SELECT_MEMORY_MODEL=y
CONFIG_FLATMEM_MANUAL=y
# CONFIG_DISCONTIGMEM_MANUAL is not set
# CONFIG_SPARSEMEM_MANUAL is not set
CONFIG_FLATMEM=y
CONFIG_FLAT_NODE_MEM_MAP=y
# CONFIG_SPARSEMEM_STATIC is not set
CONFIG_SPLIT_PTLOCK_CPUS=4
CONFIG_HAVE_ARCH_EARLY_PFN_TO_NID=y
CONFIG_NR_CPUS=8
# CONFIG_HOTPLUG_CPU is not set
CONFIG_HPET_TIMER=y
# CONFIG_X86_PM_TIMER is not set
# CONFIG_HPET_EMULATE_RTC is not set
CONFIG_GART_IOMMU=y
CONFIG_SWIOTLB=y
# CONFIG_X86_MCE is not set
CONFIG_PHYSICAL_START=0x100000
# CONFIG_KEXEC is not set
CONFIG_SECCOMP=y
# CONFIG_HZ_100 is not set
CONFIG_HZ_250=y
# CONFIG_HZ_1000 is not set
CONFIG_HZ=250
CONFIG_GENERIC_HARDIRQS=y
CONFIG_GENERIC_IRQ_PROBE=y
CONFIG_ISA_DMA_API=y
CONFIG_GENERIC_PENDING_IRQ=y

#
# Power management options
#
CONFIG_PM=y
CONFIG_PM_LEGACY=y
# CONFIG_PM_DEBUG is not set

#
# ACPI (Advanced Configuration and Power Interface) Support
#
CONFIG_ACPI=y
CONFIG_ACPI_AC=m
# CONFIG_ACPI_BATTERY is not set
CONFIG_ACPI_BUTTON=m
CONFIG_ACPI_VIDEO=m
# CONFIG_ACPI_HOTKEY is not set
CONFIG_ACPI_FAN=m
CONFIG_ACPI_PROCESSOR=m
CONFIG_ACPI_THERMAL=m
CONFIG_ACPI_ASUS=m
CONFIG_ACPI_IBM=m
CONFIG_ACPI_TOSHIBA=m
CONFIG_ACPI_BLACKLIST_YEAR=0
# CONFIG_ACPI_DEBUG is not set
CONFIG_ACPI_EC=y
CONFIG_ACPI_POWER=y
CONFIG_ACPI_SYSTEM=y
CONFIG_ACPI_CONTAINER=m

#
# CPU Frequency scaling
#
CONFIG_CPU_FREQ=y
CONFIG_CPU_FREQ_TABLE=m
# CONFIG_CPU_FREQ_DEBUG is not set
CONFIG_CPU_FREQ_STAT=m
# CONFIG_CPU_FREQ_STAT_DETAILS is not set
CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
CONFIG_CPU_FREQ_GOV_POWERSAVE=m
CONFIG_CPU_FREQ_GOV_USERSPACE=m
CONFIG_CPU_FREQ_GOV_ONDEMAND=m
CONFIG_CPU_FREQ_GOV_CONSERVATIVE=m

#
# CPUFreq processor drivers
#
CONFIG_X86_POWERNOW_K8=m
CONFIG_X86_POWERNOW_K8_ACPI=y
CONFIG_X86_SPEEDSTEP_CENTRINO=m
CONFIG_X86_SPEEDSTEP_CENTRINO_ACPI=y
CONFIG_X86_ACPI_CPUFREQ=m

#
# shared options
#
# CONFIG_X86_ACPI_CPUFREQ_PROC_INTF is not set
CONFIG_X86_P4_CLOCKMOD=m
CONFIG_X86_SPEEDSTEP_LIB=m

#
# Bus options (PCI etc.)
#
CONFIG_PCI=y
CONFIG_PCI_DIRECT=y
CONFIG_PCI_MMCONFIG=y
# CONFIG_UNORDERED_IO is not set
CONFIG_PCIEPORTBUS=y
# CONFIG_PCI_MSI is not set
# CONFIG_PCI_LEGACY_PROC is not set

#
# PCCARD (PCMCIA/CardBus) support
#
CONFIG_PCCARD=m
# CONFIG_PCMCIA_DEBUG is not set
CONFIG_PCMCIA=m
CONFIG_PCMCIA_LOAD_CIS=y
CONFIG_PCMCIA_IOCTL=y
CONFIG_CARDBUS=y

#
# PC-card bridges
#
CONFIG_YENTA=m
CONFIG_PD6729=m
CONFIG_I82092=m
CONFIG_PCCARD_NONSTATIC=m

#
# PCI Hotplug Support
#
# CONFIG_HOTPLUG_PCI is not set

#
# Executable file formats / Emulations
#
CONFIG_BINFMT_ELF=y
# CONFIG_BINFMT_MISC is not set
CONFIG_IA32_EMULATION=y
# CONFIG_IA32_AOUT is not set
CONFIG_COMPAT=y
CONFIG_SYSVIPC_COMPAT=y
CONFIG_UID16=y

#
# Networking
#
CONFIG_NET=y

#
# Networking options
#
CONFIG_PACKET=y
# CONFIG_PACKET_MMAP is not set
CONFIG_UNIX=y
CONFIG_XFRM=y
# CONFIG_XFRM_USER is not set
# CONFIG_NET_KEY is not set
CONFIG_INET=y
# CONFIG_IP_MULTICAST is not set
# CONFIG_IP_ADVANCED_ROUTER is not set
CONFIG_IP_FIB_HASH=y
# CONFIG_IP_PNP is not set
# CONFIG_NET_IPIP is not set
# CONFIG_NET_IPGRE is not set
# CONFIG_ARPD is not set
# CONFIG_SYN_COOKIES is not set
# CONFIG_INET_AH is not set
# CONFIG_INET_ESP is not set
# CONFIG_INET_IPCOMP is not set
# CONFIG_INET_TUNNEL is not set
CONFIG_INET_DIAG=y
CONFIG_INET_TCP_DIAG=y
# CONFIG_TCP_CONG_ADVANCED is not set
CONFIG_TCP_CONG_BIC=y
CONFIG_IPV6=m
CONFIG_IPV6_PRIVACY=y
CONFIG_INET6_AH=m
CONFIG_INET6_ESP=m
CONFIG_INET6_IPCOMP=m
CONFIG_INET6_TUNNEL=m
CONFIG_IPV6_TUNNEL=m
# CONFIG_NETFILTER is not set

#
# DCCP Configuration (EXPERIMENTAL)
#
# CONFIG_IP_DCCP is not set

#
# SCTP Configuration (EXPERIMENTAL)
#
# CONFIG_IP_SCTP is not set
CONFIG_ATM=m
# CONFIG_ATM_CLIP is not set
# CONFIG_ATM_LANE is not set
# CONFIG_ATM_BR2684 is not set
# CONFIG_BRIDGE is not set
CONFIG_VLAN_8021Q=m
# CONFIG_DECNET is not set
CONFIG_LLC=y
# CONFIG_LLC2 is not set
# CONFIG_IPX is not set
# CONFIG_ATALK is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set

#
# QoS and/or fair queueing
#
# CONFIG_NET_SCHED is not set

#
# Network testing
#
# CONFIG_NET_PKTGEN is not set
# CONFIG_HAMRADIO is not set
# CONFIG_IRDA is not set
CONFIG_BT=m
CONFIG_BT_L2CAP=m
CONFIG_BT_SCO=m
CONFIG_BT_RFCOMM=m
CONFIG_BT_RFCOMM_TTY=y
CONFIG_BT_BNEP=m
CONFIG_BT_BNEP_MC_FILTER=y
CONFIG_BT_BNEP_PROTO_FILTER=y
CONFIG_BT_HIDP=m

#
# Bluetooth device drivers
#
CONFIG_BT_HCIUSB=m
CONFIG_BT_HCIUSB_SCO=y
CONFIG_BT_HCIUART=m
CONFIG_BT_HCIUART_H4=y
CONFIG_BT_HCIUART_BCSP=y
CONFIG_BT_HCIBCM203X=m
CONFIG_BT_HCIBPA10X=m
CONFIG_BT_HCIBFUSB=m
CONFIG_BT_HCIDTL1=m
CONFIG_BT_HCIBT3C=m
CONFIG_BT_HCIBLUECARD=m
CONFIG_BT_HCIBTUART=m
CONFIG_BT_HCIVHCI=m
# CONFIG_IEEE80211 is not set

#
# Device Drivers
#

#
# Generic Driver Options
#
CONFIG_STANDALONE=y
CONFIG_PREVENT_FIRMWARE_BUILD=y
CONFIG_FW_LOADER=m

#
# Connector - unified userspace <-> kernelspace linker
#
# CONFIG_CONNECTOR is not set

#
# Memory Technology Devices (MTD)
#
# CONFIG_MTD is not set

#
# Parallel port support
#
CONFIG_PARPORT=m
CONFIG_PARPORT_PC=m
CONFIG_PARPORT_SERIAL=m
CONFIG_PARPORT_PC_FIFO=y
CONFIG_PARPORT_PC_SUPERIO=y
CONFIG_PARPORT_PC_PCMCIA=m
CONFIG_PARPORT_NOT_PC=y
# CONFIG_PARPORT_GSC is not set
CONFIG_PARPORT_1284=y

#
# Plug and Play support
#
CONFIG_PNP=y
# CONFIG_PNP_DEBUG is not set

#
# Protocols
#
CONFIG_PNPACPI=y

#
# Block devices
#
CONFIG_BLK_DEV_FD=m
CONFIG_PARIDE=m
CONFIG_PARIDE_PARPORT=m

#
# Parallel IDE high-level drivers
#
CONFIG_PARIDE_PD=m
CONFIG_PARIDE_PCD=m
CONFIG_PARIDE_PF=m
CONFIG_PARIDE_PT=m
CONFIG_PARIDE_PG=m

#
# Parallel IDE protocol modules
#
CONFIG_PARIDE_ATEN=m
CONFIG_PARIDE_BPCK=m
CONFIG_PARIDE_COMM=m
CONFIG_PARIDE_DSTR=m
CONFIG_PARIDE_FIT2=m
CONFIG_PARIDE_FIT3=m
CONFIG_PARIDE_EPAT=m
CONFIG_PARIDE_EPATC8=y
CONFIG_PARIDE_EPIA=m
CONFIG_PARIDE_FRIQ=m
CONFIG_PARIDE_FRPW=m
CONFIG_PARIDE_KBIC=m
CONFIG_PARIDE_KTTI=m
CONFIG_PARIDE_ON20=m
CONFIG_PARIDE_ON26=m
CONFIG_BLK_CPQ_DA=m
CONFIG_BLK_CPQ_CISS_DA=m
# CONFIG_CISS_SCSI_TAPE is not set
CONFIG_BLK_DEV_DAC960=m
CONFIG_BLK_DEV_UMEM=m
# CONFIG_BLK_DEV_COW_COMMON is not set
CONFIG_BLK_DEV_LOOP=y
# CONFIG_BLK_DEV_CRYPTOLOOP is not set
CONFIG_BLK_DEV_NBD=m
CONFIG_BLK_DEV_SX8=m
# CONFIG_BLK_DEV_UB is not set
CONFIG_BLK_DEV_RAM=y
CONFIG_BLK_DEV_RAM_COUNT=16
CONFIG_BLK_DEV_RAM_SIZE=8192
CONFIG_BLK_DEV_INITRD=y
# CONFIG_CDROM_PKTCDVD is not set
# CONFIG_ATA_OVER_ETH is not set

#
# ATA/ATAPI/MFM/RLL support
#
CONFIG_IDE=y
CONFIG_BLK_DEV_IDE=y

#
# Please see Documentation/ide.txt for help/info on IDE drives
#
# CONFIG_BLK_DEV_IDE_SATA is not set
# CONFIG_BLK_DEV_HD_IDE is not set
CONFIG_BLK_DEV_IDEDISK=y
CONFIG_IDEDISK_MULTI_MODE=y
CONFIG_BLK_DEV_IDECS=m
CONFIG_BLK_DEV_IDECD=y
# CONFIG_BLK_DEV_IDETAPE is not set
CONFIG_BLK_DEV_IDEFLOPPY=m
# CONFIG_BLK_DEV_IDESCSI is not set
# CONFIG_IDE_TASK_IOCTL is not set

#
# IDE chipset support/bugfixes
#
CONFIG_IDE_GENERIC=y
CONFIG_BLK_DEV_CMD640=y
CONFIG_BLK_DEV_CMD640_ENHANCED=y
CONFIG_BLK_DEV_IDEPNP=y
CONFIG_BLK_DEV_IDEPCI=y
CONFIG_IDEPCI_SHARE_IRQ=y
# CONFIG_BLK_DEV_OFFBOARD is not set
CONFIG_BLK_DEV_GENERIC=y
CONFIG_BLK_DEV_OPTI621=y
CONFIG_BLK_DEV_RZ1000=y
CONFIG_BLK_DEV_IDEDMA_PCI=y
# CONFIG_BLK_DEV_IDEDMA_FORCED is not set
CONFIG_IDEDMA_PCI_AUTO=y
# CONFIG_IDEDMA_ONLYDISK is not set
CONFIG_BLK_DEV_AEC62XX=y
CONFIG_BLK_DEV_ALI15X3=y
# CONFIG_WDC_ALI15X3 is not set
CONFIG_BLK_DEV_AMD74XX=y
CONFIG_BLK_DEV_ATIIXP=y
CONFIG_BLK_DEV_CMD64X=y
# CONFIG_BLK_DEV_TRIFLEX is not set
# CONFIG_BLK_DEV_CY82C693 is not set
# CONFIG_BLK_DEV_CS5520 is not set
# CONFIG_BLK_DEV_CS5530 is not set
# CONFIG_BLK_DEV_HPT34X is not set
# CONFIG_BLK_DEV_HPT366 is not set
CONFIG_BLK_DEV_SC1200=m
CONFIG_BLK_DEV_PIIX=y
CONFIG_BLK_DEV_IT821X=m
# CONFIG_BLK_DEV_NS87415 is not set
# CONFIG_BLK_DEV_PDC202XX_OLD is not set
# CONFIG_BLK_DEV_PDC202XX_NEW is not set
# CONFIG_BLK_DEV_SVWKS is not set
CONFIG_BLK_DEV_SIIMAGE=m
# CONFIG_BLK_DEV_SIS5513 is not set
# CONFIG_BLK_DEV_SLC90E66 is not set
# CONFIG_BLK_DEV_TRM290 is not set
# CONFIG_BLK_DEV_VIA82CXXX is not set
# CONFIG_IDE_ARM is not set
CONFIG_BLK_DEV_IDEDMA=y
CONFIG_IDEDMA_IVB=y
CONFIG_IDEDMA_AUTO=y
# CONFIG_BLK_DEV_HD is not set

#
# SCSI device support
#
# CONFIG_RAID_ATTRS is not set
CONFIG_SCSI=y
CONFIG_SCSI_PROC_FS=y

#
# SCSI support type (disk, tape, CD-ROM)
#
CONFIG_BLK_DEV_SD=y
# CONFIG_CHR_DEV_ST is not set
# CONFIG_CHR_DEV_OSST is not set
CONFIG_BLK_DEV_SR=y
CONFIG_BLK_DEV_SR_VENDOR=y
CONFIG_CHR_DEV_SG=m
# CONFIG_CHR_DEV_SCH is not set

#
# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
#
# CONFIG_SCSI_MULTI_LUN is not set
# CONFIG_SCSI_CONSTANTS is not set
# CONFIG_SCSI_LOGGING is not set

#
# SCSI Transport Attributes
#
CONFIG_SCSI_SPI_ATTRS=m
CONFIG_SCSI_FC_ATTRS=m
# CONFIG_SCSI_ISCSI_ATTRS is not set
# CONFIG_SCSI_SAS_ATTRS is not set

#
# SCSI low-level drivers
#
# CONFIG_ISCSI_TCP is not set
CONFIG_BLK_DEV_3W_XXXX_RAID=m
CONFIG_SCSI_3W_9XXX=m
CONFIG_SCSI_ACARD=m
CONFIG_SCSI_AACRAID=m
CONFIG_SCSI_AIC7XXX=m
CONFIG_AIC7XXX_CMDS_PER_DEVICE=32
CONFIG_AIC7XXX_RESET_DELAY_MS=5000
# CONFIG_AIC7XXX_DEBUG_ENABLE is not set
CONFIG_AIC7XXX_DEBUG_MASK=0
CONFIG_AIC7XXX_REG_PRETTY_PRINT=y
# CONFIG_SCSI_AIC7XXX_OLD is not set
CONFIG_SCSI_AIC79XX=m
CONFIG_AIC79XX_CMDS_PER_DEVICE=32
CONFIG_AIC79XX_RESET_DELAY_MS=5000
# CONFIG_AIC79XX_ENABLE_RD_STRM is not set
# CONFIG_AIC79XX_DEBUG_ENABLE is not set
CONFIG_AIC79XX_DEBUG_MASK=0
# CONFIG_AIC79XX_REG_PRETTY_PRINT is not set
CONFIG_MEGARAID_NEWGEN=y
CONFIG_MEGARAID_MM=m
CONFIG_MEGARAID_MAILBOX=m
CONFIG_MEGARAID_LEGACY=m
# CONFIG_MEGARAID_SAS is not set
CONFIG_SCSI_SATA=y
CONFIG_SCSI_SATA_AHCI=m
CONFIG_SCSI_SATA_SVW=m
CONFIG_SCSI_ATA_PIIX=m
# CONFIG_SCSI_SATA_MV is not set
CONFIG_SCSI_SATA_NV=m
# CONFIG_SCSI_PDC_ADMA is not set
CONFIG_SCSI_SATA_QSTOR=m
CONFIG_SCSI_SATA_PROMISE=m
CONFIG_SCSI_SATA_SX4=m
CONFIG_SCSI_SATA_SIL=m
# CONFIG_SCSI_SATA_SIL24 is not set
CONFIG_SCSI_SATA_SIS=m
CONFIG_SCSI_SATA_ULI=m
CONFIG_SCSI_SATA_VIA=m
CONFIG_SCSI_SATA_VITESSE=m
CONFIG_SCSI_SATA_INTEL_COMBINED=y
CONFIG_SCSI_BUSLOGIC=m
# CONFIG_SCSI_OMIT_FLASHPOINT is not set
CONFIG_SCSI_DMX3191D=m
CONFIG_SCSI_EATA=m
CONFIG_SCSI_EATA_TAGGED_QUEUE=y
CONFIG_SCSI_EATA_LINKED_COMMANDS=y
CONFIG_SCSI_EATA_MAX_TAGS=16
CONFIG_SCSI_FUTURE_DOMAIN=m
CONFIG_SCSI_GDTH=m
CONFIG_SCSI_IPS=m
CONFIG_SCSI_INITIO=m
CONFIG_SCSI_INIA100=m
CONFIG_SCSI_PPA=m
CONFIG_SCSI_IMM=m
# CONFIG_SCSI_IZIP_EPP16 is not set
# CONFIG_SCSI_IZIP_SLOW_CTR is not set
CONFIG_SCSI_SYM53C8XX_2=m
CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=1
CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16
CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64
# CONFIG_SCSI_SYM53C8XX_IOMAPPED is not set
CONFIG_SCSI_IPR=m
# CONFIG_SCSI_IPR_TRACE is not set
# CONFIG_SCSI_IPR_DUMP is not set
CONFIG_SCSI_QLOGIC_FC=m
# CONFIG_SCSI_QLOGIC_FC_FIRMWARE is not set
CONFIG_SCSI_QLOGIC_1280=m
CONFIG_SCSI_QLA2XXX=y
CONFIG_SCSI_QLA21XX=m
CONFIG_SCSI_QLA22XX=m
CONFIG_SCSI_QLA2300=m
CONFIG_SCSI_QLA2322=m
CONFIG_SCSI_QLA6312=m
# CONFIG_SCSI_QLA24XX is not set
CONFIG_SCSI_LPFC=m
CONFIG_SCSI_DC395x=m
CONFIG_SCSI_DC390T=m
# CONFIG_SCSI_DEBUG is not set

#
# PCMCIA SCSI adapter support
#
CONFIG_PCMCIA_FDOMAIN=m
CONFIG_PCMCIA_QLOGIC=m
CONFIG_PCMCIA_SYM53C500=m

#
# Multi-device support (RAID and LVM)
#
CONFIG_MD=y
CONFIG_BLK_DEV_MD=m
CONFIG_MD_LINEAR=m
CONFIG_MD_RAID0=m
CONFIG_MD_RAID1=m
CONFIG_MD_RAID10=m
CONFIG_MD_RAID5=m
CONFIG_MD_RAID6=m
CONFIG_MD_MULTIPATH=m
CONFIG_MD_FAULTY=m
CONFIG_BLK_DEV_DM=m
CONFIG_DM_CRYPT=m
CONFIG_DM_SNAPSHOT=m
CONFIG_DM_MIRROR=m
CONFIG_DM_ZERO=m
CONFIG_DM_MULTIPATH=m
CONFIG_DM_MULTIPATH_EMC=m
CONFIG_BLK_DEV_DM_BBR=m

#
# Fusion MPT device support
#
# CONFIG_FUSION is not set
# CONFIG_FUSION_SPI is not set
# CONFIG_FUSION_FC is not set
# CONFIG_FUSION_SAS is not set

#
# IEEE 1394 (FireWire) support
#
CONFIG_IEEE1394=m

#
# Subsystem Options
#
# CONFIG_IEEE1394_VERBOSEDEBUG is not set
# CONFIG_IEEE1394_OUI_DB is not set
CONFIG_IEEE1394_EXTRA_CONFIG_ROMS=y
CONFIG_IEEE1394_CONFIG_ROM_IP1394=y
# CONFIG_IEEE1394_EXPORT_FULL_API is not set

#
# Device Drivers
#
# CONFIG_IEEE1394_PCILYNX is not set
CONFIG_IEEE1394_OHCI1394=m

#
# Protocol Drivers
#
CONFIG_IEEE1394_VIDEO1394=m
CONFIG_IEEE1394_SBP2=m
# CONFIG_IEEE1394_SBP2_PHYS_DMA is not set
CONFIG_IEEE1394_ETH1394=m
CONFIG_IEEE1394_DV1394=m
CONFIG_IEEE1394_RAWIO=m
CONFIG_IEEE1394_CMP=m
# CONFIG_IEEE1394_AMDTP is not set

#
# I2O device support
#
CONFIG_I2O=m
CONFIG_I2O_EXT_ADAPTEC=y
CONFIG_I2O_EXT_ADAPTEC_DMA64=y
CONFIG_I2O_CONFIG=m
CONFIG_I2O_CONFIG_OLD_IOCTL=y
# CONFIG_I2O_BUS is not set
CONFIG_I2O_BLOCK=m
CONFIG_I2O_SCSI=m
CONFIG_I2O_PROC=m

#
# Network device support
#
CONFIG_NETDEVICES=y
# CONFIG_DUMMY is not set
# CONFIG_BONDING is not set
# CONFIG_EQUALIZER is not set
# CONFIG_TUN is not set
CONFIG_NET_SB1000=m

#
# ARCnet devices
#
# CONFIG_ARCNET is not set

#
# PHY device support
#
# CONFIG_PHYLIB is not set

#
# Ethernet (10 or 100Mbit)
#
CONFIG_NET_ETHERNET=y
CONFIG_MII=m
CONFIG_HAPPYMEAL=m
CONFIG_SUNGEM=m
# CONFIG_CASSINI is not set
CONFIG_NET_VENDOR_3COM=y
CONFIG_VORTEX=m
CONFIG_TYPHOON=m

#
# Tulip family network device support
#
CONFIG_NET_TULIP=y
CONFIG_DE2104X=m
CONFIG_TULIP=m
CONFIG_TULIP_MWI=y
CONFIG_TULIP_MMIO=y
CONFIG_TULIP_NAPI=y
CONFIG_TULIP_NAPI_HW_MITIGATION=y
CONFIG_DE4X5=m
CONFIG_WINBOND_840=m
CONFIG_DM9102=m
# CONFIG_ULI526X is not set
CONFIG_PCMCIA_XIRCOM=m
CONFIG_HP100=m
CONFIG_NET_PCI=y
CONFIG_PCNET32=m
CONFIG_AMD8111_ETH=m
# CONFIG_AMD8111E_NAPI is not set
CONFIG_ADAPTEC_STARFIRE=m
# CONFIG_ADAPTEC_STARFIRE_NAPI is not set
CONFIG_B44=m
CONFIG_FORCEDETH=m
CONFIG_DGRS=m
# CONFIG_EEPRO100 is not set
CONFIG_E100=m
CONFIG_FEALNX=m
CONFIG_NATSEMI=m
CONFIG_NE2K_PCI=m
CONFIG_8139CP=m
CONFIG_8139TOO=m
# CONFIG_8139TOO_PIO is not set
CONFIG_8139TOO_TUNE_TWISTER=y
CONFIG_8139TOO_8129=y
# CONFIG_8139_OLD_RX_RESET is not set
CONFIG_SIS900=m
CONFIG_EPIC100=m
CONFIG_SUNDANCE=m
CONFIG_SUNDANCE_MMIO=y
CONFIG_VIA_RHINE=m
CONFIG_VIA_RHINE_MMIO=y
# CONFIG_NET_POCKET is not set

#
# Ethernet (1000 Mbit)
#
CONFIG_ACENIC=m
# CONFIG_ACENIC_OMIT_TIGON_I is not set
CONFIG_DL2K=m
CONFIG_E1000=m
# CONFIG_E1000_NAPI is not set
CONFIG_NS83820=m
CONFIG_HAMACHI=m
CONFIG_YELLOWFIN=m
CONFIG_R8169=m
# CONFIG_R8169_NAPI is not set
CONFIG_R8169_VLAN=y
# CONFIG_SIS190 is not set
CONFIG_SKGE=m
# CONFIG_SKY2 is not set
CONFIG_SK98LIN=m
CONFIG_VIA_VELOCITY=m
CONFIG_TIGON3=m
CONFIG_BNX2=m

#
# Ethernet (10000 Mbit)
#
# CONFIG_CHELSIO_T1 is not set
CONFIG_IXGB=m
# CONFIG_IXGB_NAPI is not set
CONFIG_S2IO=m
# CONFIG_S2IO_NAPI is not set

#
# Token Ring devices
#
CONFIG_TR=y
CONFIG_IBMOL=m
CONFIG_3C359=m
CONFIG_TMS380TR=m
CONFIG_TMSPCI=m
CONFIG_ABYSS=m

#
# Wireless LAN (non-hamradio)
#
CONFIG_NET_RADIO=y

#
# Obsolete Wireless cards support (pre-802.11)
#
CONFIG_STRIP=m
CONFIG_PCMCIA_WAVELAN=m
CONFIG_PCMCIA_NETWAVE=m

#
# Wireless 802.11 Frequency Hopping cards support
#
CONFIG_PCMCIA_RAYCS=m

#
# Wireless 802.11b ISA/PCI cards support
#
# CONFIG_AIRO is not set
# CONFIG_HERMES is not set
CONFIG_ATMEL=m
CONFIG_PCI_ATMEL=m

#
# Wireless 802.11b Pcmcia/Cardbus cards support
#
CONFIG_AIRO_CS=m
CONFIG_PCMCIA_ATMEL=m
CONFIG_PCMCIA_WL3501=m

#
# Prism GT/Duette 802.11(a/b/g) PCI/Cardbus support
#
CONFIG_PRISM54=m
# CONFIG_HOSTAP is not set
CONFIG_NET_WIRELESS=y

#
# PCMCIA network device support
#
CONFIG_NET_PCMCIA=y
CONFIG_PCMCIA_3C589=m
CONFIG_PCMCIA_3C574=m
CONFIG_PCMCIA_FMVJ18X=m
CONFIG_PCMCIA_PCNET=m
CONFIG_PCMCIA_NMCLAN=m
CONFIG_PCMCIA_SMC91C92=m
CONFIG_PCMCIA_XIRC2PS=m
CONFIG_PCMCIA_AXNET=m

#
# Wan interfaces
#
CONFIG_WAN=y
CONFIG_DSCC4=m
CONFIG_DSCC4_PCISYNC=y
CONFIG_DSCC4_PCI_RST=y
CONFIG_LANMEDIA=m
CONFIG_SYNCLINK_SYNCPPP=m
CONFIG_HDLC=m
CONFIG_HDLC_RAW=y
CONFIG_HDLC_RAW_ETH=y
CONFIG_HDLC_CISCO=y
CONFIG_HDLC_FR=y
CONFIG_HDLC_PPP=y

#
# X.25/LAPB support is disabled
#
CONFIG_PCI200SYN=m
CONFIG_WANXL=m
CONFIG_PC300=m
CONFIG_PC300_MLPPP=y
CONFIG_FARSYNC=m
CONFIG_DLCI=m
CONFIG_DLCI_COUNT=24
CONFIG_DLCI_MAX=8
CONFIG_SBNI=m
CONFIG_SBNI_MULTILINE=y

#
# ATM drivers
#
# CONFIG_ATM_DUMMY is not set
# CONFIG_ATM_TCP is not set
# CONFIG_ATM_LANAI is not set
# CONFIG_ATM_ENI is not set
# CONFIG_ATM_FIRESTREAM is not set
# CONFIG_ATM_ZATM is not set
# CONFIG_ATM_IDT77252 is not set
# CONFIG_ATM_AMBASSADOR is not set
# CONFIG_ATM_HORIZON is not set
# CONFIG_ATM_FORE200E_MAYBE is not set
# CONFIG_ATM_HE is not set
CONFIG_FDDI=y
CONFIG_DEFXX=m
CONFIG_SKFP=m
CONFIG_HIPPI=y
CONFIG_ROADRUNNER=m
# CONFIG_ROADRUNNER_LARGE_RINGS is not set
CONFIG_PLIP=m
CONFIG_PPP=m
CONFIG_PPP_MULTILINK=y
CONFIG_PPP_FILTER=y
CONFIG_PPP_ASYNC=m
CONFIG_PPP_SYNC_TTY=m
CONFIG_PPP_DEFLATE=m
CONFIG_PPP_BSDCOMP=m
# CONFIG_PPP_MPPE is not set
CONFIG_PPPOE=m
CONFIG_PPPOATM=m
CONFIG_SLIP=m
CONFIG_SLIP_COMPRESSED=y
CONFIG_SLIP_SMART=y
CONFIG_SLIP_MODE_SLIP6=y
CONFIG_NET_FC=y
# CONFIG_SHAPER is not set
# CONFIG_NETCONSOLE is not set
# CONFIG_NETPOLL is not set
# CONFIG_NET_POLL_CONTROLLER is not set

#
# ISDN subsystem
#
# CONFIG_ISDN is not set

#
# Telephony Support
#
# CONFIG_PHONE is not set

#
# Input device support
#
CONFIG_INPUT=y

#
# Userland interfaces
#
CONFIG_INPUT_MOUSEDEV=y
CONFIG_INPUT_MOUSEDEV_PSAUX=y
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
# CONFIG_INPUT_JOYDEV is not set
# CONFIG_INPUT_TSDEV is not set
CONFIG_INPUT_EVDEV=y
# CONFIG_INPUT_EVBUG is not set

#
# Input Device Drivers
#
CONFIG_INPUT_KEYBOARD=y
CONFIG_KEYBOARD_ATKBD=y
CONFIG_KEYBOARD_SUNKBD=m
CONFIG_KEYBOARD_LKKBD=m
CONFIG_KEYBOARD_XTKBD=m
CONFIG_KEYBOARD_NEWTON=m
CONFIG_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=y
CONFIG_MOUSE_SERIAL=m
# CONFIG_MOUSE_VSXXXAA is not set
# CONFIG_INPUT_JOYSTICK is not set
# CONFIG_INPUT_TOUCHSCREEN is not set
CONFIG_INPUT_MISC=y
CONFIG_INPUT_PCSPKR=m
# CONFIG_INPUT_UINPUT is not set

#
# Hardware I/O ports
#
CONFIG_SERIO=y
CONFIG_SERIO_I8042=y
CONFIG_SERIO_SERPORT=m
CONFIG_SERIO_CT82C710=m
CONFIG_SERIO_PARKBD=m
CONFIG_SERIO_PCIPS2=m
CONFIG_SERIO_LIBPS2=y
# CONFIG_SERIO_RAW is not set
# CONFIG_GAMEPORT is not set

#
# Character devices
#
CONFIG_VT=y
CONFIG_VT_CONSOLE=y
CONFIG_HW_CONSOLE=y
# CONFIG_SERIAL_NONSTANDARD is not set

#
# Serial drivers
#
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_CONSOLE=y
CONFIG_SERIAL_8250_CS=m
CONFIG_SERIAL_8250_ACPI=y
CONFIG_SERIAL_8250_NR_UARTS=4
CONFIG_SERIAL_8250_EXTENDED=y
CONFIG_SERIAL_8250_MANY_PORTS=y
CONFIG_SERIAL_8250_SHARE_IRQ=y
# CONFIG_SERIAL_8250_DETECT_IRQ is not set
CONFIG_SERIAL_8250_RSA=y

#
# Non-8250 serial port support
#
CONFIG_SERIAL_CORE=y
CONFIG_SERIAL_CORE_CONSOLE=y
# CONFIG_SERIAL_JSM is not set
CONFIG_UNIX98_PTYS=y
# CONFIG_LEGACY_PTYS is not set
# CONFIG_PRINTER is not set
CONFIG_PPDEV=m
# CONFIG_TIPAR is not set

#
# IPMI
#
# CONFIG_IPMI_HANDLER is not set

#
# Watchdog Cards
#
# CONFIG_WATCHDOG is not set
# CONFIG_HW_RANDOM is not set
CONFIG_NVRAM=m
CONFIG_RTC=y
# CONFIG_DTLK is not set
# CONFIG_R3964 is not set
# CONFIG_APPLICOM is not set

#
# Ftape, the floppy tape device driver
#
CONFIG_AGP=y
CONFIG_AGP_AMD64=y
# CONFIG_AGP_INTEL is not set
# CONFIG_DRM is not set

#
# PCMCIA character devices
#
# CONFIG_SYNCLINK_CS is not set
# CONFIG_CARDMAN_4000 is not set
# CONFIG_CARDMAN_4040 is not set
CONFIG_MWAVE=m
# CONFIG_RAW_DRIVER is not set
# CONFIG_HPET is not set
# CONFIG_HANGCHECK_TIMER is not set

#
# TPM devices
#
# CONFIG_TCG_TPM is not set
# CONFIG_TELCLOCK is not set

#
# I2C support
#
CONFIG_I2C=m
CONFIG_I2C_CHARDEV=m

#
# I2C Algorithms
#
CONFIG_I2C_ALGOBIT=m
CONFIG_I2C_ALGOPCF=m
CONFIG_I2C_ALGOPCA=m

#
# I2C Hardware Bus support
#
CONFIG_I2C_ALI1535=m
CONFIG_I2C_ALI1563=m
CONFIG_I2C_ALI15X3=m
CONFIG_I2C_AMD756=m
CONFIG_I2C_AMD756_S4882=m
CONFIG_I2C_AMD8111=m
# CONFIG_I2C_I801 is not set
# CONFIG_I2C_I810 is not set
CONFIG_I2C_PIIX4=m
CONFIG_I2C_NFORCE2=m
# CONFIG_I2C_PARPORT is not set
# CONFIG_I2C_PARPORT_LIGHT is not set
# CONFIG_I2C_PROSAVAGE is not set
# CONFIG_I2C_SAVAGE4 is not set
# CONFIG_SCx200_ACB is not set
# CONFIG_I2C_SIS5595 is not set
# CONFIG_I2C_SIS630 is not set
# CONFIG_I2C_SIS96X is not set
CONFIG_I2C_STUB=m
# CONFIG_I2C_VIA is not set
# CONFIG_I2C_VIAPRO is not set
# CONFIG_I2C_VOODOO3 is not set
# CONFIG_I2C_PCA_ISA is not set

#
# Miscellaneous I2C Chip support
#
# CONFIG_SENSORS_DS1337 is not set
# CONFIG_SENSORS_DS1374 is not set
# CONFIG_SENSORS_EEPROM is not set
CONFIG_SENSORS_PCF8574=m
CONFIG_SENSORS_PCA9539=m
CONFIG_SENSORS_PCF8591=m
# CONFIG_SENSORS_RTC8564 is not set
# CONFIG_SENSORS_MAX6875 is not set
# CONFIG_RTC_X1205_I2C is not set
# CONFIG_I2C_DEBUG_CORE is not set
# CONFIG_I2C_DEBUG_ALGO is not set
# CONFIG_I2C_DEBUG_BUS is not set
# CONFIG_I2C_DEBUG_CHIP is not set

#
# Dallas's 1-wire bus
#
# CONFIG_W1 is not set

#
# Hardware Monitoring support
#
CONFIG_HWMON=y
# CONFIG_HWMON_VID is not set
# CONFIG_SENSORS_ADM1021 is not set
# CONFIG_SENSORS_ADM1025 is not set
# CONFIG_SENSORS_ADM1026 is not set
# CONFIG_SENSORS_ADM1031 is not set
# CONFIG_SENSORS_ADM9240 is not set
# CONFIG_SENSORS_ASB100 is not set
# CONFIG_SENSORS_ATXP1 is not set
# CONFIG_SENSORS_DS1621 is not set
# CONFIG_SENSORS_FSCHER is not set
# CONFIG_SENSORS_FSCPOS is not set
# CONFIG_SENSORS_GL518SM is not set
# CONFIG_SENSORS_GL520SM is not set
# CONFIG_SENSORS_IT87 is not set
# CONFIG_SENSORS_LM63 is not set
# CONFIG_SENSORS_LM75 is not set
# CONFIG_SENSORS_LM77 is not set
# CONFIG_SENSORS_LM78 is not set
# CONFIG_SENSORS_LM80 is not set
# CONFIG_SENSORS_LM83 is not set
# CONFIG_SENSORS_LM85 is not set
# CONFIG_SENSORS_LM87 is not set
# CONFIG_SENSORS_LM90 is not set
# CONFIG_SENSORS_LM92 is not set
# CONFIG_SENSORS_MAX1619 is not set
# CONFIG_SENSORS_PC87360 is not set
# CONFIG_SENSORS_SIS5595 is not set
# CONFIG_SENSORS_SMSC47M1 is not set
# CONFIG_SENSORS_SMSC47B397 is not set
# CONFIG_SENSORS_VIA686A is not set
# CONFIG_SENSORS_W83781D is not set
# CONFIG_SENSORS_W83792D is not set
# CONFIG_SENSORS_W83L785TS is not set
# CONFIG_SENSORS_W83627HF is not set
# CONFIG_SENSORS_W83627EHF is not set
# CONFIG_SENSORS_HDAPS is not set
# CONFIG_HWMON_DEBUG_CHIP is not set

#
# Misc devices
#
# CONFIG_IBM_ASM is not set

#
# Multimedia Capabilities Port drivers
#

#
# Multimedia devices
#
CONFIG_VIDEO_DEV=m

#
# Video For Linux
#

#
# Video Adapters
#
# CONFIG_VIDEO_BT848 is not set
# CONFIG_VIDEO_BWQCAM is not set
# CONFIG_VIDEO_CQCAM is not set
# CONFIG_VIDEO_W9966 is not set
# CONFIG_VIDEO_CPIA is not set
# CONFIG_VIDEO_SAA5246A is not set
# CONFIG_VIDEO_SAA5249 is not set
# CONFIG_TUNER_3036 is not set
# CONFIG_VIDEO_STRADIS is not set
# CONFIG_VIDEO_ZORAN is not set
CONFIG_VIDEO_SAA7134=m
# CONFIG_VIDEO_SAA7134_ALSA is not set
# CONFIG_VIDEO_MXB is not set
# CONFIG_VIDEO_DPC is not set
# CONFIG_VIDEO_HEXIUM_ORION is not set
# CONFIG_VIDEO_HEXIUM_GEMINI is not set
# CONFIG_VIDEO_CX88 is not set
# CONFIG_VIDEO_EM28XX is not set
# CONFIG_VIDEO_OVCAMCHIP is not set
CONFIG_VIDEO_AUDIO_DECODER=m
CONFIG_VIDEO_DECODER=m

#
# Radio Adapters
#
# CONFIG_RADIO_GEMTEK_PCI is not set
# CONFIG_RADIO_MAXIRADIO is not set
# CONFIG_RADIO_MAESTRO is not set

#
# Digital Video Broadcasting Devices
#
# CONFIG_DVB is not set
CONFIG_VIDEO_TUNER=m
CONFIG_VIDEO_BUF=m
CONFIG_VIDEO_IR=m

#
# Graphics support
#
CONFIG_FB=y
CONFIG_FB_CFB_FILLRECT=y
CONFIG_FB_CFB_COPYAREA=y
CONFIG_FB_CFB_IMAGEBLIT=y
# CONFIG_FB_MACMODES is not set
# CONFIG_FB_MODE_HELPERS is not set
# CONFIG_FB_TILEBLITTING is not set
# CONFIG_FB_CIRRUS is not set
# CONFIG_FB_PM2 is not set
# CONFIG_FB_CYBER2000 is not set
# CONFIG_FB_ARC is not set
# CONFIG_FB_ASILIANT is not set
# CONFIG_FB_IMSTT is not set
# CONFIG_FB_VGA16 is not set
CONFIG_FB_VESA=y
CONFIG_FB_VESA_STD=y
# CONFIG_FB_VESA_TNG is not set
CONFIG_VIDEO_SELECT=y
# CONFIG_FB_HGA is not set
# CONFIG_FB_S1D13XXX is not set
# CONFIG_FB_NVIDIA is not set
# CONFIG_FB_RIVA is not set
# CONFIG_FB_MATROX is not set
# CONFIG_FB_RADEON_OLD is not set
# CONFIG_FB_RADEON is not set
# CONFIG_FB_ATY128 is not set
# CONFIG_FB_ATY is not set
# CONFIG_FB_SAVAGE is not set
# CONFIG_FB_SIS is not set
# CONFIG_FB_NEOMAGIC is not set
# CONFIG_FB_KYRO is not set
# CONFIG_FB_3DFX is not set
# CONFIG_FB_VOODOO1 is not set
# CONFIG_FB_CYBLA is not set
# CONFIG_FB_TRIDENT is not set
# CONFIG_FB_GEODE is not set
# CONFIG_FB_VIRTUAL is not set

#
# Console display driver support
#
CONFIG_VGA_CONSOLE=y
CONFIG_DUMMY_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE=y
# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set
# CONFIG_FONTS is not set
CONFIG_FONT_8x8=y
CONFIG_FONT_8x16=y

#
# Logo configuration
#
# CONFIG_LOGO is not set
CONFIG_BACKLIGHT_LCD_SUPPORT=y
CONFIG_BACKLIGHT_CLASS_DEVICE=m
CONFIG_BACKLIGHT_DEVICE=y
CONFIG_LCD_CLASS_DEVICE=m
CONFIG_LCD_DEVICE=y
CONFIG_FB_SPLASH=y

#
# Speakup console speech
#
CONFIG_SPEAKUP=y
CONFIG_SPEAKUP_ACNTSA=y
CONFIG_SPEAKUP_ACNTPC=y
CONFIG_SPEAKUP_APOLLO=y
CONFIG_SPEAKUP_AUDPTR=y
CONFIG_SPEAKUP_BNS=y
CONFIG_SPEAKUP_DECTLK=y
CONFIG_SPEAKUP_DECEXT=y
# CONFIG_SPEAKUP_DECPC is not set
CONFIG_SPEAKUP_DTLK=y
CONFIG_SPEAKUP_KEYPC=y
CONFIG_SPEAKUP_LTLK=y
CONFIG_SPEAKUP_SFTSYN=y
CONFIG_SPEAKUP_SPKOUT=y
CONFIG_SPEAKUP_TXPRT=y

#
# Enter the 3 to 6 character keyword from the list above, or none for no
default synthesizer on boot up.
#
CONFIG_SPEAKUP_DEFAULT="none"

#
# Sound
#
CONFIG_SOUND=y

#
# Advanced Linux Sound Architecture
#
CONFIG_SND=m
CONFIG_SND_AC97_CODEC=m
CONFIG_SND_AC97_BUS=m
CONFIG_SND_TIMER=m
CONFIG_SND_PCM=m
CONFIG_SND_RAWMIDI=m
# CONFIG_SND_SEQUENCER is not set
CONFIG_SND_OSSEMUL=y
CONFIG_SND_MIXER_OSS=m
CONFIG_SND_PCM_OSS=m
CONFIG_SND_RTCTIMER=m
# CONFIG_SND_VERBOSE_PRINTK is not set
# CONFIG_SND_DEBUG is not set

#
# Generic devices
#
CONFIG_SND_MPU401_UART=m
# CONFIG_SND_DUMMY is not set
# CONFIG_SND_MTPAV is not set
# CONFIG_SND_SERIAL_U16550 is not set
# CONFIG_SND_MPU401 is not set

#
# PCI devices
#
CONFIG_SND_ALI5451=m
CONFIG_SND_ATIIXP=m
# CONFIG_SND_ATIIXP_MODEM is not set
# CONFIG_SND_AU8810 is not set
# CONFIG_SND_AU8820 is not set
# CONFIG_SND_AU8830 is not set
# CONFIG_SND_AZT3328 is not set
# CONFIG_SND_BT87X is not set
# CONFIG_SND_CS46XX is not set
# CONFIG_SND_CS4281 is not set
# CONFIG_SND_EMU10K1 is not set
# CONFIG_SND_EMU10K1X is not set
# CONFIG_SND_CA0106 is not set
# CONFIG_SND_KORG1212 is not set
# CONFIG_SND_MIXART is not set
# CONFIG_SND_NM256 is not set
# CONFIG_SND_RME32 is not set
# CONFIG_SND_RME96 is not set
# CONFIG_SND_RME9652 is not set
# CONFIG_SND_HDSP is not set
# CONFIG_SND_HDSPM is not set
# CONFIG_SND_TRIDENT is not set
# CONFIG_SND_YMFPCI is not set
# CONFIG_SND_AD1889 is not set
# CONFIG_SND_ALS4000 is not set
# CONFIG_SND_CMIPCI is not set
# CONFIG_SND_ENS1370 is not set
# CONFIG_SND_ENS1371 is not set
# CONFIG_SND_ES1938 is not set
# CONFIG_SND_ES1968 is not set
# CONFIG_SND_MAESTRO3 is not set
# CONFIG_SND_FM801 is not set
# CONFIG_SND_ICE1712 is not set
# CONFIG_SND_ICE1724 is not set
CONFIG_SND_INTEL8X0=m
# CONFIG_SND_INTEL8X0M is not set
# CONFIG_SND_SONICVIBES is not set
# CONFIG_SND_VIA82XX is not set
# CONFIG_SND_VIA82XX_MODEM is not set
# CONFIG_SND_VX222 is not set
# CONFIG_SND_HDA_INTEL is not set

#
# USB devices
#
# CONFIG_SND_USB_AUDIO is not set
# CONFIG_SND_USB_USX2Y is not set

#
# PCMCIA devices
#

#
# Open Sound System
#
# CONFIG_SOUND_PRIME is not set

#
# USB support
#
CONFIG_USB_ARCH_HAS_HCD=y
CONFIG_USB_ARCH_HAS_OHCI=y
CONFIG_USB=m
# CONFIG_USB_DEBUG is not set

#
# Miscellaneous USB options
#
CONFIG_USB_DEVICEFS=y
# CONFIG_USB_BANDWIDTH is not set
# CONFIG_USB_DYNAMIC_MINORS is not set
# CONFIG_USB_SUSPEND is not set
# CONFIG_USB_OTG is not set

#
# USB Host Controller Drivers
#
CONFIG_USB_EHCI_HCD=m
# CONFIG_USB_EHCI_SPLIT_ISO is not set
# CONFIG_USB_EHCI_ROOT_HUB_TT is not set
# CONFIG_USB_ISP116X_HCD is not set
CONFIG_USB_OHCI_HCD=m
# CONFIG_USB_OHCI_BIG_ENDIAN is not set
CONFIG_USB_OHCI_LITTLE_ENDIAN=y
CONFIG_USB_UHCI_HCD=m
CONFIG_USB_SL811_HCD=m
CONFIG_USB_SL811_CS=m

#
# USB Device Class drivers
#
# CONFIG_OBSOLETE_OSS_USB_DRIVER is not set
CONFIG_USB_ACM=m
# CONFIG_USB_PRINTER is not set

#
# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
#

#
# may also be needed; see USB_STORAGE Help for more information
#
CONFIG_USB_STORAGE=m
# CONFIG_USB_STORAGE_DEBUG is not set
CONFIG_USB_STORAGE_DATAFAB=y
CONFIG_USB_STORAGE_FREECOM=y
CONFIG_USB_STORAGE_ISD200=y
CONFIG_USB_STORAGE_DPCM=y
CONFIG_USB_STORAGE_USBAT=y
CONFIG_USB_STORAGE_SDDR09=y
CONFIG_USB_STORAGE_SDDR55=y
CONFIG_USB_STORAGE_JUMPSHOT=y

#
# USB Input Devices
#
CONFIG_USB_HID=m
CONFIG_USB_HIDINPUT=y
# CONFIG_HID_FF is not set
CONFIG_USB_HIDDEV=y

#
# USB HID Boot Protocol drivers
#
# CONFIG_USB_KBD is not set
# CONFIG_USB_MOUSE is not set
CONFIG_USB_AIPTEK=m
CONFIG_USB_WACOM=m
# CONFIG_USB_ACECAD is not set
CONFIG_USB_KBTAB=m
# CONFIG_USB_POWERMATE is not set
CONFIG_USB_MTOUCH=m
# CONFIG_USB_ITMTOUCH is not set
CONFIG_USB_EGALAX=m
# CONFIG_USB_YEALINK is not set
CONFIG_USB_XPAD=m
CONFIG_USB_ATI_REMOTE=m
# CONFIG_USB_KEYSPAN_REMOTE is not set
# CONFIG_USB_APPLETOUCH is not set

#
# USB Imaging devices
#
# CONFIG_USB_MDC800 is not set
# CONFIG_USB_MICROTEK is not set

#
# USB Multimedia devices
#
# CONFIG_USB_DABUSB is not set
# CONFIG_USB_VICAM is not set
# CONFIG_USB_DSBR is not set
# CONFIG_USB_IBMCAM is not set
# CONFIG_USB_KONICAWC is not set
# CONFIG_USB_OV511 is not set
# CONFIG_USB_SE401 is not set
# CONFIG_USB_SN9C102 is not set
# CONFIG_USB_STV680 is not set
# CONFIG_USB_PWC is not set

#
# USB Network Adapters
#
CONFIG_USB_CATC=m
CONFIG_USB_KAWETH=m
CONFIG_USB_PEGASUS=m
CONFIG_USB_RTL8150=m
CONFIG_USB_USBNET=m
CONFIG_USB_NET_AX8817X=m
CONFIG_USB_NET_CDCETHER=m
# CONFIG_USB_NET_GL620A is not set
CONFIG_USB_NET_NET1080=m
# CONFIG_USB_NET_PLUSB is not set
# CONFIG_USB_NET_RNDIS_HOST is not set
# CONFIG_USB_NET_CDC_SUBSET is not set
CONFIG_USB_NET_ZAURUS=m
CONFIG_USB_ZD1201=m
# CONFIG_USB_MON is not set

#
# USB port drivers
#
CONFIG_USB_USS720=m

#
# USB Serial Converter support
#
CONFIG_USB_SERIAL=m
CONFIG_USB_SERIAL_GENERIC=y
CONFIG_USB_SERIAL_AIRPRIME=m
# CONFIG_USB_SERIAL_ANYDATA is not set
# CONFIG_USB_SERIAL_BELKIN is not set
# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set
CONFIG_USB_SERIAL_CP2101=m
# CONFIG_USB_SERIAL_CYPRESS_M8 is not set
# CONFIG_USB_SERIAL_EMPEG is not set
# CONFIG_USB_SERIAL_FTDI_SIO is not set
# CONFIG_USB_SERIAL_VISOR is not set
# CONFIG_USB_SERIAL_IPAQ is not set
# CONFIG_USB_SERIAL_IR is not set
# CONFIG_USB_SERIAL_EDGEPORT is not set
# CONFIG_USB_SERIAL_EDGEPORT_TI is not set
# CONFIG_USB_SERIAL_GARMIN is not set
CONFIG_USB_SERIAL_IPW=m
# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set
# CONFIG_USB_SERIAL_KEYSPAN is not set
# CONFIG_USB_SERIAL_KLSI is not set
# CONFIG_USB_SERIAL_KOBIL_SCT is not set
# CONFIG_USB_SERIAL_MCT_U232 is not set
# CONFIG_USB_SERIAL_PL2303 is not set
# CONFIG_USB_SERIAL_HP4X is not set
# CONFIG_USB_SERIAL_SAFE is not set
# CONFIG_USB_SERIAL_TI is not set
# CONFIG_USB_SERIAL_CYBERJACK is not set
# CONFIG_USB_SERIAL_XIRCOM is not set
CONFIG_USB_SERIAL_OPTION=m
CONFIG_USB_SERIAL_OMNINET=m

#
# USB Miscellaneous drivers
#
# CONFIG_USB_EMI62 is not set
# CONFIG_USB_EMI26 is not set
CONFIG_USB_AUERSWALD=m
# CONFIG_USB_RIO500 is not set
# CONFIG_USB_LEGOTOWER is not set
# CONFIG_USB_LCD is not set
# CONFIG_USB_LED is not set
# CONFIG_USB_CYTHERM is not set
# CONFIG_USB_PHIDGETKIT is not set
# CONFIG_USB_PHIDGETSERVO is not set
# CONFIG_USB_IDMOUSE is not set
CONFIG_USB_SISUSBVGA=m
# CONFIG_USB_SISUSBVGA_CON is not set
# CONFIG_USB_LD is not set
# CONFIG_USB_TEST is not set

#
# USB DSL modem support
#
CONFIG_USB_ATM=m
CONFIG_USB_SPEEDTOUCH=m
# CONFIG_USB_CXACRU is not set
# CONFIG_USB_XUSBATM is not set

#
# USB Gadget Support
#
# CONFIG_USB_GADGET is not set

#
# MMC/SD Card support
#
CONFIG_MMC=m
# CONFIG_MMC_DEBUG is not set
CONFIG_MMC_BLOCK=m
CONFIG_MMC_WBSD=m

#
# InfiniBand support
#
CONFIG_INFINIBAND=m
# CONFIG_INFINIBAND_USER_MAD is not set
# CONFIG_INFINIBAND_USER_ACCESS is not set
CONFIG_INFINIBAND_MTHCA=m
# CONFIG_INFINIBAND_MTHCA_DEBUG is not set
CONFIG_INFINIBAND_IPOIB=m
# CONFIG_INFINIBAND_IPOIB_DEBUG is not set
# CONFIG_INFINIBAND_SRP is not set

#
# SN Devices
#

#
# Firmware Drivers
#
# CONFIG_EDD is not set
# CONFIG_DELL_RBU is not set
# CONFIG_DCDBAS is not set

#
# File systems
#
CONFIG_EXT2_FS=y
CONFIG_EXT2_FS_XATTR=y
CONFIG_EXT2_FS_POSIX_ACL=y
CONFIG_EXT2_FS_SECURITY=y
# CONFIG_EXT2_FS_XIP is not set
CONFIG_EXT3_FS=y
CONFIG_EXT3_FS_XATTR=y
CONFIG_EXT3_FS_POSIX_ACL=y
CONFIG_EXT3_FS_SECURITY=y
CONFIG_JBD=y
# CONFIG_JBD_DEBUG is not set
CONFIG_FS_MBCACHE=y
CONFIG_REISERFS_FS=y
# CONFIG_REISERFS_CHECK is not set
# CONFIG_REISERFS_PROC_INFO is not set
CONFIG_REISERFS_FS_XATTR=y
CONFIG_REISERFS_FS_POSIX_ACL=y
CONFIG_REISERFS_FS_SECURITY=y
CONFIG_JFS_FS=m
CONFIG_JFS_POSIX_ACL=y
# CONFIG_JFS_SECURITY is not set
# CONFIG_JFS_DEBUG is not set
# CONFIG_JFS_STATISTICS is not set
CONFIG_FS_POSIX_ACL=y
CONFIG_XFS_FS=m
CONFIG_XFS_QUOTA=y
CONFIG_XFS_SECURITY=y
CONFIG_XFS_POSIX_ACL=y
CONFIG_XFS_RT=y
# CONFIG_MINIX_FS is not set
# CONFIG_ROMFS_FS is not set
CONFIG_INOTIFY=y
# CONFIG_QUOTA is not set
CONFIG_QUOTACTL=y
CONFIG_DNOTIFY=y
# CONFIG_AUTOFS_FS is not set
# CONFIG_AUTOFS4_FS is not set
# CONFIG_FUSE_FS is not set

#
# CD-ROM/DVD Filesystems
#
CONFIG_ISO9660_FS=y
CONFIG_JOLIET=y
CONFIG_ZISOFS=y
CONFIG_ZISOFS_FS=y
CONFIG_UDF_FS=y
CONFIG_UDF_NLS=y

#
# DOS/FAT/NT Filesystems
#
CONFIG_FAT_FS=y
CONFIG_MSDOS_FS=y
CONFIG_VFAT_FS=y
CONFIG_FAT_DEFAULT_CODEPAGE=437
CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
CONFIG_NTFS_FS=y
# CONFIG_NTFS_DEBUG is not set
CONFIG_NTFS_RW=y

#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
CONFIG_PROC_KCORE=y
CONFIG_SYSFS=y
CONFIG_TMPFS=y
# CONFIG_HUGETLBFS is not set
# CONFIG_HUGETLB_PAGE is not set
CONFIG_RAMFS=y
# CONFIG_RELAYFS_FS is not set

#
# Miscellaneous filesystems
#
# CONFIG_ADFS_FS is not set
# CONFIG_AFFS_FS is not set
# CONFIG_HFS_FS is not set
# CONFIG_HFSPLUS_FS is not set
# CONFIG_BEFS_FS is not set
# CONFIG_BFS_FS is not set
# CONFIG_EFS_FS is not set
# CONFIG_CRAMFS is not set
# CONFIG_SQUASHFS is not set
# CONFIG_VXFS_FS is not set
# CONFIG_HPFS_FS is not set
# CONFIG_QNX4FS_FS is not set
# CONFIG_SYSV_FS is not set
# CONFIG_UFS_FS is not set

#
# Network File Systems
#
# CONFIG_NFS_FS is not set
# CONFIG_NFSD is not set
CONFIG_SMB_FS=m
CONFIG_SMB_NLS_DEFAULT=y
CONFIG_SMB_NLS_REMOTE="cp437"
CONFIG_CIFS=m
# CONFIG_CIFS_STATS is not set
# CONFIG_CIFS_XATTR is not set
# CONFIG_CIFS_EXPERIMENTAL is not set
# CONFIG_NCP_FS is not set
# CONFIG_CODA_FS is not set
# CONFIG_AFS_FS is not set
# CONFIG_9P_FS is not set

#
# Partition Types
#
CONFIG_PARTITION_ADVANCED=y
# CONFIG_ACORN_PARTITION is not set
# CONFIG_OSF_PARTITION is not set
# CONFIG_AMIGA_PARTITION is not set
# CONFIG_ATARI_PARTITION is not set
# CONFIG_MAC_PARTITION is not set
CONFIG_MSDOS_PARTITION=y
# CONFIG_BSD_DISKLABEL is not set
# CONFIG_MINIX_SUBPARTITION is not set
# CONFIG_SOLARIS_X86_PARTITION is not set
# CONFIG_UNIXWARE_DISKLABEL is not set
CONFIG_LDM_PARTITION=y
# CONFIG_LDM_DEBUG is not set
# CONFIG_SGI_PARTITION is not set
# CONFIG_ULTRIX_PARTITION is not set
# CONFIG_SUN_PARTITION is not set
# CONFIG_EFI_PARTITION is not set

#
# Native Language Support
#
CONFIG_NLS=y
CONFIG_NLS_DEFAULT="utf8"
CONFIG_NLS_CODEPAGE_437=y
# CONFIG_NLS_CODEPAGE_737 is not set
# CONFIG_NLS_CODEPAGE_775 is not set
# CONFIG_NLS_CODEPAGE_850 is not set
# CONFIG_NLS_CODEPAGE_852 is not set
# CONFIG_NLS_CODEPAGE_855 is not set
# CONFIG_NLS_CODEPAGE_857 is not set
# CONFIG_NLS_CODEPAGE_860 is not set
# CONFIG_NLS_CODEPAGE_861 is not set
# CONFIG_NLS_CODEPAGE_862 is not set
# CONFIG_NLS_CODEPAGE_863 is not set
# CONFIG_NLS_CODEPAGE_864 is not set
# CONFIG_NLS_CODEPAGE_865 is not set
CONFIG_NLS_CODEPAGE_866=y
# CONFIG_NLS_CODEPAGE_869 is not set
# CONFIG_NLS_CODEPAGE_936 is not set
# CONFIG_NLS_CODEPAGE_950 is not set
# CONFIG_NLS_CODEPAGE_932 is not set
# CONFIG_NLS_CODEPAGE_949 is not set
# CONFIG_NLS_CODEPAGE_874 is not set
# CONFIG_NLS_ISO8859_8 is not set
# CONFIG_NLS_CODEPAGE_1250 is not set
CONFIG_NLS_CODEPAGE_1251=y
# CONFIG_NLS_ASCII is not set
CONFIG_NLS_ISO8859_1=y
# CONFIG_NLS_ISO8859_2 is not set
# CONFIG_NLS_ISO8859_3 is not set
# CONFIG_NLS_ISO8859_4 is not set
# CONFIG_NLS_ISO8859_5 is not set
# CONFIG_NLS_ISO8859_6 is not set
# CONFIG_NLS_ISO8859_7 is not set
# CONFIG_NLS_ISO8859_9 is not set
# CONFIG_NLS_ISO8859_13 is not set
# CONFIG_NLS_ISO8859_14 is not set
# CONFIG_NLS_ISO8859_15 is not set
CONFIG_NLS_KOI8_R=y
CONFIG_NLS_KOI8_U=y
CONFIG_NLS_UTF8=y

#
# Instrumentation Support
#
# CONFIG_PROFILING is not set
# CONFIG_KPROBES is not set

#
# Kernel hacking
#
# CONFIG_PRINTK_TIME is not set
# CONFIG_DEBUG_KERNEL is not set
CONFIG_LOG_BUF_SHIFT=15

#
# Security options
#
# CONFIG_KEYS is not set
# CONFIG_SECURITY is not set

#
# Cryptographic options
#
CONFIG_CRYPTO=y
CONFIG_CRYPTO_HMAC=y
# CONFIG_CRYPTO_NULL is not set
# CONFIG_CRYPTO_MD4 is not set
CONFIG_CRYPTO_MD5=y
CONFIG_CRYPTO_SHA1=m
CONFIG_CRYPTO_SHA256=m
CONFIG_CRYPTO_SHA512=m
# CONFIG_CRYPTO_WP512 is not set
# CONFIG_CRYPTO_TGR192 is not set
CONFIG_CRYPTO_DES=y
CONFIG_CRYPTO_BLOWFISH=m
CONFIG_CRYPTO_TWOFISH=m
CONFIG_CRYPTO_SERPENT=m
# CONFIG_CRYPTO_AES_X86_64 is not set
CONFIG_CRYPTO_CAST5=m
CONFIG_CRYPTO_CAST6=m
CONFIG_CRYPTO_TEA=m
CONFIG_CRYPTO_ARC4=m
# CONFIG_CRYPTO_KHAZAD is not set
# CONFIG_CRYPTO_ANUBIS is not set
CONFIG_CRYPTO_DEFLATE=m
CONFIG_CRYPTO_MICHAEL_MIC=m
CONFIG_CRYPTO_CRC32C=m
# CONFIG_CRYPTO_TEST is not set

#
# Hardware crypto devices
#

#
# Library routines
#
CONFIG_CRC_CCITT=m
# CONFIG_CRC16 is not set
CONFIG_CRC32=y
CONFIG_LIBCRC32C=m
CONFIG_ZLIB_INFLATE=y
CONFIG_ZLIB_DEFLATE=m

-----------------------------------

---- make.conf --------------------

# These settings were set by the catalyst build script that automatically
built this stage
# Please consult /etc/make.conf.example for a more detailed example
CFLAGS="-march=k8 -O3 -fforce-addr -funit-at-a-time -fomit-frame-pointer
-frename-registers -fprefetch-loop-arrays -ftracer -funswitch-loops 
-ffast-math"
CHOST="x86_64-pc-linux-gnu"
CXXFLAGS="${CFLAGS}"
GENTOO_MIRRORS="http://gentoo.osuosl.org/"
ACCEPT_KEYWORDS="amd64"
MAKEOPTS="-j2"
LINGUAS="uk"
SYNC="rsync://rsync.uk.gentoo.org/gentoo-portage"
USE="3dfx 3dnow 3dnowext 7zip aac acpi amarok asf bash-completion cdparanoia
     cdr divx4linux djvu dvd dvdread fat fbdev fbsplash freetype fuse
     gimp glx gphoto2 iconv imlib2 input_devices_keyboard
     input_devices_mouse jabber javascript jpeg2k kdeenablefinal lame
     maps mjpeg mmx mp4live mpeg2 mplayer musicbrainz no_wxgtk1 nocd
     nomotif nomusic nopop3d nosendmail ntfs pdf rar reiserfs scaner scp
     sms sse sse2 stats tidy transcode type1 unicode utf8 v4l v4l2 vcd
     vfat video_cards_ati video_cards_fglrx video_cards_v4l
     video_cards_vesa video_cards_vga vidix vim vim-with-x win32codecs
     wma x86_64 xanim xinerama xosd zeroconf zip -alsa -fortran -gnome
     -gtk -imlib -ipv6"

------------------------------------------

--- grub.conf ---------------------------
title  GentooLinux 2.6.15
root (hd0,6)
kernel /boot/kernel-2.6.15-gentoo-r3 root=/dev/hda7
video=vesafb:ypan,1024x768-32@60

---------------------------------------------


-- 
Vitaly Kovalyshyn aka samael
ICQ: 169219607
e-mail: samael@ugcc.org.ua
Unix System Administrator
Ukrainian Greek-Catholic Church

~~~~~~~~~~~~~~~~~~~
Open Your mind - use OpenSource!
"Nothing else matters", - © Metallica
"Цели ясны, задачи определены, за работу,
товарищи", - ©

-- 
Vitaly Kovalyshyn aka samael
ICQ: 169219607
e-mail: samael@ugcc.org.ua
URL: http://www.ugcc.lviv.ua/
Unix System Administrator
Ukrainian Greek-Catholic Church

~~~~~~~~~~~~~~~~~~~
Open Your mind from closed Windows - use OpenSource!

UNIX is user-friendly; it's just picky about its friends!!!
UNIX is simple; it just takes a genius to understand its simplicity!!!

-- 
gentoo-admin@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 10+ messages in thread

* RE: [gentoo-admin] [gentoo-desktop] Problem with Gentoo-2006.0 on  AMD64 Athlon 3000+
  2006-02-14 10:03       ` Vitaly Kovalyshyn
@ 2006-02-14 13:18         ` Nerdvana - Steve Walsh
  0 siblings, 0 replies; 10+ messages in thread
From: Nerdvana - Steve Walsh @ 2006-02-14 13:18 UTC (permalink / raw
  To: gentoo-admin

This link might shed some light on the matter of the error

http://lkml.org/lkml/2005/6/20/69

HTH

Steve

-----Original Message-----
From: Vitaly Kovalyshyn 
Sent: Tuesday, 14 February 2006 9:03 PM
To: gentoo-admin@lists.gentoo.org
Cc: gentoo-desktop@lists.gentoo.org
Subject: [gentoo-admin] [gentoo-desktop] Problem with Gentoo-2006.0 on
AMD64 Athlon 3000+


Can anybody help me?????????????

I get kubuntu-dapper-install-amd64_20060212.iso
And nothing!!! No sound, no TV!!!

But old KNOPPIX(i386) -  works perfectly!!!


And what does it mean:
Feb 12 19:46:31 tux PCI: Setting latency timer of device 0000:00:04.0 to 64
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
.........................................................................
Feb 12 19:46:31 tux AC'97 0 does not respond - RESET
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux AC'97 0 access is not valid [0xffffffff], removing mixer.
Feb 12 19:46:31 tux Unable to initialize codec #0
Feb 12 19:46:31 tux ACPI: PCI interrupt for device 0000:00:04.0 disabled



-----------------------------------------------------------------------------------------------
Good time of day!

I had a problem. I decided to renew the computer. Replaced
Duron950/Soltek KT133/512 MB/nVidia 2MX 400 AGP x2
on
AMD64 Athlon 3000+/Asus of K8N4-E Delux/1GB/ATI X600 PCI-Express x16

Downloaded gentoo-x86_64-minimal and stage1-amd64
emerge sync
make.profile -> amd64/2006.0

Before ALL worked perfectly, and sound and TV/FM.. Now, to neither the
sound nor TV, and console only in the VGA-mode... See my logs....
I nead Your advise.....

PS: In KNOPPIX LIVECD (i386) – all works perfectly!!!

----  DMESG  -------------

Bootdata ok (command line is root=/dev/hda7
video=vesafb:ypan,1024x768-32@60 )
Linux version 2.6.15-gentoo-r3 (root@livecd) (gcc version 3.4.4 (Gentoo
3.4.4-r1, ssp-3.4.4-1.0, pie-8.7.8)) #1 SMP PREEMPT Sun Feb 12 21:41:15
EET 2006
BIOS-provided physical RAM map:
 BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
 BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
 BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
 BIOS-e820: 0000000000100000 - 000000003fff0000 (usable)
 BIOS-e820: 000000003fff0000 - 000000003fff3000 (ACPI NVS)
 BIOS-e820: 000000003fff3000 - 0000000040000000 (ACPI data)
 BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
 BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
 BIOS-e820: 00000000fee00000 - 00000000fef00000 (reserved)
 BIOS-e820: 00000000fefffc00 - 00000000ff000000 (reserved)
 BIOS-e820: 00000000ffff0000 - 0000000100000000 (reserved)
ACPI: RSDP (v000 Nvidia                                ) @ 0x00000000000f77b0
ACPI: RSDT (v001 Nvidia AWRDACPI 0x42302e31 AWRD 0x00000000) @
0x000000003fff3040
ACPI: FADT (v001 Nvidia AWRDACPI 0x42302e31 AWRD 0x00000000) @
0x000000003fff30c0
ACPI: MCFG (v001 Nvidia AWRDACPI 0x42302e31 AWRD 0x00000000) @
0x000000003fff96c0
ACPI: MADT (v001 Nvidia AWRDACPI 0x42302e31 AWRD 0x00000000) @
0x000000003fff9600
ACPI: DSDT (v001 NVIDIA AWRDACPI 0x00001000 MSFT 0x0100000e) @
0x0000000000000000
On node 0 totalpages: 257558
  DMA zone: 3053 pages, LIFO batch:0
  DMA32 zone: 254505 pages, LIFO batch:31
  Normal zone: 0 pages, LIFO batch:0
  HighMem zone: 0 pages, LIFO batch:0
Nvidia board detected. Ignoring ACPI timer override.
ACPI: Local APIC address 0xfee00000
ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
Processor #0 15:4 APIC version 16
ACPI: LAPIC_NMI (acpi_id[0x00] 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: BIOS IRQ0 pin2 override ignored.
ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge)
ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge)
ACPI: IRQ9 used by override.
ACPI: IRQ14 used by override.
ACPI: IRQ15 used by override.
Setting APIC routing to flat
Using ACPI (MADT) for SMP configuration information
Allocating PCI resources starting at 50000000 (gap: 40000000:a0000000)
Checking aperture...
CPU 0: aperture @ 8c8a000000 size 32 MB
Aperture from northbridge cpu 0 too small (32 MB)
No AGP bridge found
Built 1 zonelists
Kernel command line: root=/dev/hda7 video=vesafb:ypan,1024x768-32@60
Initializing CPU#0
PID hash table entries: 4096 (order: 12, 131072 bytes)
time.c: Using 1.193182 MHz PIT timer.
time.c: Detected 2010.322 MHz processor.
Speakup v-2.00 CVS: Wed Dec 21 14:36:03 EST 2005 : initialized
Console: colour VGA+ 80x25
Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes)
Inode-cache hash table entries: 65536 (order: 7, 524288 bytes)
Memory: 1028252k/1048512k available (2241k kernel code, 19624k reserved,
727k data, 196k init)
Calibrating delay using timer specific routine.. 4024.95 BogoMIPS
(lpj=8049902)
Mount-cache hash table entries: 256
CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
CPU: L2 Cache: 512K (64 bytes/line)
mtrr: v2.0 (20020519)
Using local APIC timer interrupts.
Detected 12.564 MHz APIC timer.
Brought up 1 CPUs
time.c: Using PIT/TSC based timekeeping.
testing NMI watchdog ... OK.
NET: Registered protocol family 16
ACPI: bus type pci registered
PCI: Using configuration type 1
PCI: Using MMCONFIG at e0000000
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)
PCI: Transparent bridge - 0000:00:09.0
Boot video device is 0000:01:00.0
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]
ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNK2] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNK3] (IRQs 3 4 *5 7 9 10 11 12 14 15)
ACPI: PCI Interrupt Link [LNK4] (IRQs 3 4 5 7 9 10 *11 12 14 15)
ACPI: PCI Interrupt Link [LNK5] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LUBA] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LUBB] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LMAC] (IRQs 3 4 5 7 9 10 *11 12 14 15)
ACPI: PCI Interrupt Link [LACI] (IRQs *3 4 5 7 9 10 11 12 14 15)
ACPI: PCI Interrupt Link [LMCI] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LSMB] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LUB2] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LIDE] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LSID] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LFID] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LPCA] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [APC1] (IRQs 16) *0, disabled.
ACPI: PCI Interrupt Link [APC2] (IRQs 17) *0, disabled.
ACPI: PCI Interrupt Link [APC3] (IRQs 18) *5
ACPI: PCI Interrupt Link [APC4] (IRQs 19) *11
ACPI: PCI Interrupt Link [APC5] (IRQs *16), disabled.
ACPI: PCI Interrupt Link [APCF] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APCG] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APCH] (IRQs 20 21 22 23) *0
ACPI: PCI Interrupt Link [APCJ] (IRQs 20 21 22 23) *0
ACPI: PCI Interrupt Link [APCK] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APCS] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APCL] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APCZ] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APSI] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APSJ] (IRQs 20 21 22 23) *0, disabled.
ACPI: PCI Interrupt Link [APCP] (IRQs 20 21 22 23) *0, disabled.
Linux Plug and Play Support v0.97 (c) Adam Belay
pnp: PnP ACPI init
pnp: PnP ACPI: found 15 devices
SCSI subsystem initialized
PCI: Using ACPI for IRQ routing
PCI: If a device doesn't work, try "pci=routeirq".  If it helps, post a
report
PCI: Cannot allocate resource region 1 of device 0000:01:00.0
PCI-DMA: Disabling IOMMU.
pnp: 00:00: ioport range 0x4000-0x407f could not be reserved
pnp: 00:00: ioport range 0x4080-0x40ff has been reserved
pnp: 00:00: ioport range 0x4400-0x447f has been reserved
pnp: 00:00: ioport range 0x4480-0x44ff could not be reserved
pnp: 00:00: ioport range 0x4800-0x487f has been reserved
pnp: 00:00: ioport range 0x4880-0x48ff has been reserved
PCI: Bridge: 0000:00:09.0
  IO window: a000-bfff
  MEM window: da000000-dbffffff
  PREFETCH window: disabled.
PCI: Bridge: 0000:00:0b.0
  IO window: disabled.
  MEM window: disabled.
  PREFETCH window: disabled.
PCI: Bridge: 0000:00:0c.0
  IO window: disabled.
  MEM window: disabled.
  PREFETCH window: disabled.
PCI: Bridge: 0000:00:0d.0
  IO window: disabled.
  MEM window: disabled.
  PREFETCH window: disabled.
PCI: Ignore bogus resource 6 [0:0] of 0000:01:00.0
PCI: Failed to allocate I/O resource #1:4000@c000 for 0000:01:00.0
PCI: Bridge: 0000:00:0e.0
  IO window: c000-cfff
  MEM window: d8000000-d9ffffff
  PREFETCH window: d0000000-d7ffffff
PCI: Setting latency timer of device 0000:00:09.0 to 64
PCI: Setting latency timer of device 0000:00:0b.0 to 64
PCI: Setting latency timer of device 0000:00:0c.0 to 64
PCI: Setting latency timer of device 0000:00:0d.0 to 64
PCI: Setting latency timer of device 0000:00:0e.0 to 64
IA32 emulation $Id: sys_ia32.c,v 1.32 2002/03/24 13:02:28 ak Exp $
NTFS driver 2.1.25 [Flags: R/W].
Initializing Cryptographic API
io scheduler noop registered
io scheduler deadline registered
PCI: Setting latency timer of device 0000:00:0b.0 to 64
pcie_portdrv_probe->Dev[005d:10de] has invalid IRQ. Check vendor BIOS
assign_interrupt_mode Found MSI capability
Allocate Port Service[pcie00]
Allocate Port Service[pcie03]
PCI: Setting latency timer of device 0000:00:0c.0 to 64
pcie_portdrv_probe->Dev[005d:10de] has invalid IRQ. Check vendor BIOS
assign_interrupt_mode Found MSI capability
Allocate Port Service[pcie00]
Allocate Port Service[pcie03]
PCI: Setting latency timer of device 0000:00:0d.0 to 64
pcie_portdrv_probe->Dev[005d:10de] has invalid IRQ. Check vendor BIOS
assign_interrupt_mode Found MSI capability
Allocate Port Service[pcie00]
Allocate Port Service[pcie03]
PCI: Setting latency timer of device 0000:00:0e.0 to 64
pcie_portdrv_probe->Dev[005d:10de] has invalid IRQ. Check vendor BIOS
assign_interrupt_mode Found MSI capability
Allocate Port Service[pcie00]
Allocate Port Service[pcie03]
Real Time Clock Driver v1.12
initialized device: /dev/synth, node ( MAJOR 10, MINOR 25 )
Linux agpgart interface v0.101 (c) Dave Jones
PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
serio: i8042 AUX 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
serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
serial8250: ttyS0 at I/O 0x3f8 (irq = 0) is a 16550A
00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
mice: PS/2 mouse device common for all mice
RAMDISK driver initialized: 16 RAM disks of 8192K size 1024 blocksize
loop: loaded (max 8 devices)
Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
NFORCE-CK804: IDE controller at PCI slot 0000:00:06.0
NFORCE-CK804: chipset revision 242
NFORCE-CK804: not 100% native mode: will probe irqs later
NFORCE-CK804: 0000:00:06.0 (rev f2) UDMA133 controller
    ide0: BM-DMA at 0xf000-0xf007, BIOS settings: hda:DMA, hdb:DMA
    ide1: BM-DMA at 0xf008-0xf00f, BIOS settings: hdc:DMA, hdd:DMA
Probing IDE interface ide0...
input: AT Translated Set 2 keyboard as /class/input/input0
Losing some ticks... checking if CPU frequency changed.
input: ImPS/2 Generic Wheel Mouse as /class/input/input1
hda: ST3120022A, ATA DISK drive
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
Probing IDE interface ide1...
hdc: HL-DT-ST RW/DVD GCC-4521B, ATAPI CD/DVD-ROM drive
ide1 at 0x170-0x177,0x376 on irq 15
hda: max request size: 1024KiB
hda: 234441648 sectors (120034 MB) w/2048KiB Cache, CHS=16383/255/63,
UDMA(100)
hda: cache flushes supported
 hda: hda1 hda2 < hda5 hda6 hda7 hda8 > hda3
hdc: ATAPI 52X DVD-ROM CD-R/RW drive, 2048kB Cache, UDMA(33)
Uniform CD-ROM driver Revision: 3.20
NET: Registered protocol family 2
IP route cache hash table entries: 32768 (order: 6, 262144 bytes)
TCP established hash table entries: 131072 (order: 9, 2097152 bytes)
TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
TCP: Hash tables configured (established 131072 bind 65536)
TCP reno registered
TCP bic registered
NET: Registered protocol family 1
NET: Registered protocol family 17
kjournald starting.  Commit interval 5 seconds
EXT3-fs: mounted filesystem with ordered data mode.
VFS: Mounted root (ext3 filesystem) readonly.
Freeing unused kernel memory: 196k freed
Adding 530104k swap on /dev/hda8.  Priority:-1 extents:1 across:530104k
EXT3 FS on hda7, internal journal
ReiserFS: hda3: found reiserfs format "3.6" with standard journal
ReiserFS: hda3: using ordered data mode
ReiserFS: hda3: journal params: device hda3, size 8192, journal first
block 18, max trans len 1024, max batch 900, max commit age 30, max trans
age 30
ReiserFS: hda3: checking transaction log (hda3)
ReiserFS: hda3: Using r5 hash to sort names
usbcore: registered new driver usbfs
usbcore: registered new driver hub

-------------------------------------------------

--- MESSAGES ---------------------------------

Feb 12 19:46:31 tux syslog-ng[7509]: syslog-ng version 1.6.9 starting
Feb 12 19:46:31 tux syslog-ng[7509]: Changing permissions on special file
/dev/tty12
Feb 12 19:46:31 tux DVD-ROM CD-R/RW drive, 2048kB Cache, UDMA(33)
Feb 12 19:46:31 tux Uniform CD-ROM driver Revision: 3.20
Feb 12 19:46:31 tux NET: Registered protocol family 2
Feb 12 19:46:31 tux IP route cache hash table entries: 32768 (order: 6,
262144 bytes)
Feb 12 19:46:31 tux TCP established hash table entries: 131072 (order: 9,
2097152 bytes)
Feb 12 19:46:31 tux TCP bind hash table entries: 65536 (order: 8, 1048576
bytes)
Feb 12 19:46:31 tux TCP: Hash tables configured (established 131072 bind
65536)
Feb 12 19:46:31 tux TCP reno registered
Feb 12 19:46:31 tux TCP bic registered
Feb 12 19:46:31 tux NET: Registered protocol family 1
Feb 12 19:46:31 tux NET: Registered protocol family 17
Feb 12 19:46:31 tux kjournald starting.  Commit interval 5 seconds
Feb 12 19:46:31 tux EXT3-fs: mounted filesystem with ordered data mode.
Feb 12 19:46:31 tux VFS: Mounted root (ext3 filesystem) readonly.
Feb 12 19:46:31 tux Freeing unused kernel memory: 196k freed
Feb 12 19:46:31 tux Adding 530104k swap on /dev/hda8.  Priority:-1
extents:1 across:530104k
Feb 12 19:46:31 tux EXT3 FS on hda7, internal journal
Feb 12 19:46:31 tux ReiserFS: hda3: found reiserfs format "3.6" with
standard journal
Feb 12 19:46:31 tux ReiserFS: hda3: using ordered data mode
Feb 12 19:46:31 tux ReiserFS: hda3: journal params: device hda3, size
8192, journal first block 18, max trans len 1024, max batch 900, max
commit age 30, max trans age 30
Feb 12 19:46:31 tux ReiserFS: hda3: checking transaction log (hda3)
Feb 12 19:46:31 tux ReiserFS: hda3: Using r5 hash to sort names
Feb 12 19:46:31 tux usbcore: registered new driver usbfs
Feb 12 19:46:31 tux usbcore: registered new driver hub
Feb 12 19:46:31 tux i2c_adapter i2c-0: nForce2 SMBus adapter at 0x4c00
Feb 12 19:46:31 tux i2c_adapter i2c-1: nForce2 SMBus adapter at 0x4c40
Feb 12 19:46:31 tux ohci_hcd: 2005 April 22 USB 1.1 'Open' Host Controller
(OHCI) Driver (PCI)
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APCF] disabled and
referenced, BIOS bug.
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APCF] BIOS reported IRQ 0,
using IRQ 23
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APCF] enabled at IRQ 23
Feb 12 19:46:31 tux GSI 16 sharing vector 0xB1 and IRQ 16
Feb 12 19:46:31 tux ACPI: PCI Interrupt 0000:00:02.0[A] -> Link [APCF] ->
GSI 23 (level, low) -> IRQ 16
Feb 12 19:46:31 tux ACPI: PCI interrupt for device 0000:00:02.0 disabled
Feb 12 19:46:31 tux ohci_hcd 0000:00:02.0: init 0000:00:02.0 fail, -16
Feb 12 19:46:31 tux ohci_hcd: probe of 0000:00:02.0 failed with error -16
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APCL] disabled and
referenced, BIOS bug.
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APCL] BIOS reported IRQ 0,
using IRQ 22
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APCL] enabled at IRQ 22
Feb 12 19:46:31 tux GSI 17 sharing vector 0xB9 and IRQ 17
Feb 12 19:46:31 tux ACPI: PCI Interrupt 0000:00:02.1[B] -> Link [APCL] ->
GSI 22 (level, low) -> IRQ 17
Feb 12 19:46:31 tux ACPI: PCI interrupt for device 0000:00:02.1 disabled
Feb 12 19:46:31 tux ehci_hcd 0000:00:02.1: init 0000:00:02.1 fail, -16
Feb 12 19:46:31 tux ehci_hcd: probe of 0000:00:02.1 failed with error -16
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APCJ] BIOS reported IRQ 0,
using IRQ 21
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APCJ] enabled at IRQ 21
Feb 12 19:46:31 tux GSI 18 sharing vector 0xC1 and IRQ 18
Feb 12 19:46:31 tux ACPI: PCI Interrupt 0000:00:04.0[A] -> Link [APCJ] ->
GSI 21 (level, low) -> IRQ 18
Feb 12 19:46:31 tux PCI: Setting latency timer of device 0000:00:04.0 to 64
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux AC'97 0 does not respond - RESET
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux codec_semaphore: semaphore is not ready [0x1][0x1010101]
Feb 12 19:46:31 tux AC'97 0 access is not valid [0xffffffff], removing mixer.
Feb 12 19:46:31 tux Unable to initialize codec #0
Feb 12 19:46:31 tux ACPI: PCI interrupt for device 0000:00:04.0 disabled
Feb 12 19:46:31 tux Intel ICH: probe of 0000:00:04.0 failed with error -5
Feb 12 19:46:31 tux libata version 1.20 loaded.
Feb 12 19:46:31 tux forcedeth.c: Reverse Engineered nForce ethernet
driver. Version 0.48.
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APCH] BIOS reported IRQ 0,
using IRQ 20
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APCH] enabled at IRQ 20
Feb 12 19:46:31 tux GSI 19 sharing vector 0xC9 and IRQ 19
Feb 12 19:46:31 tux ACPI: PCI Interrupt 0000:00:0a.0[A] -> Link [APCH] ->
GSI 20 (level, low) -> IRQ 19
Feb 12 19:46:31 tux PCI: Setting latency timer of device 0000:00:0a.0 to 64
Feb 12 19:46:31 tux forcedeth: Couldn't find register window for device
0000:00:0a.0.
Feb 12 19:46:31 tux ACPI: PCI interrupt for device 0000:00:0a.0 disabled
Feb 12 19:46:31 tux forcedeth: probe of 0000:00:0a.0 failed with error -22
Feb 12 19:46:31 tux Linux video capture interface: v1.00
Feb 12 19:46:31 tux saa7130/34: v4l2 driver version 0.2.14 loaded
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APC2] disabled and
referenced, BIOS bug.
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APC2] BIOS reported IRQ 0,
using IRQ 17
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APC2] enabled at IRQ 17
Feb 12 19:46:31 tux GSI 20 sharing vector 0xD1 and IRQ 20
Feb 12 19:46:31 tux ACPI: PCI Interrupt 0000:05:07.0[A] -> Link [APC2] ->
GSI 17 (level, low) -> IRQ 20
Feb 12 19:46:31 tux saa7130[0]: found at 0000:05:07.0, rev: 1, irq: 20,
latency: 32, mmio: 0x0
Feb 12 19:46:31 tux saa7130[0]: subsystem: 1461:a115, board:
UNKNOWN/GENERIC [card=0,autodetected]
Feb 12 19:46:31 tux saa7130[0]: can't get MMIO memory @ 0x0
Feb 12 19:46:31 tux saa7134: probe of 0000:05:07.0 failed with error -16
Feb 12 19:46:31 tux sata_sil 0000:05:0a.0: version 0.9
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APC4] BIOS reported IRQ 11,
using IRQ 19
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APC4] enabled at IRQ 19
Feb 12 19:46:31 tux GSI 21 sharing vector 0xD9 and IRQ 21
Feb 12 19:46:31 tux ACPI: PCI Interrupt 0000:05:0a.0[A] -> Link [APC4] ->
GSI 19 (level, low) -> IRQ 21
Feb 12 19:46:31 tux ACPI: PCI interrupt for device 0000:05:0a.0 disabled
Feb 12 19:46:31 tux sata_sil: probe of 0000:05:0a.0 failed with error -12
Feb 12 19:46:31 tux ieee1394: Initialized config rom entry `ip1394'
Feb 12 19:46:31 tux ohci1394: $Rev: 1313 $ Ben Collins <bcollins@debian.org>
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APC1] disabled and
referenced, BIOS bug.
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APC1] BIOS reported IRQ 0,
using IRQ 16
Feb 12 19:46:31 tux ACPI: PCI Interrupt Link [APC1] enabled at IRQ 16
Feb 12 19:46:31 tux GSI 22 sharing vector 0xE1 and IRQ 22
Feb 12 19:46:31 tux ACPI: PCI Interrupt 0000:05:0b.0[A] -> Link [APC1] ->
GSI 16 (level, low) -> IRQ 22
Feb 12 19:46:31 tux ohci1394: fw-host0: Unexpected PCI resource length of 0!
Feb 12 19:46:31 tux ohci1394: MMIO resource (0x0 - 0x800) unavailable
Feb 12 19:46:31 tux ohci1394: probe of 0000:05:0b.0 failed with error -12
Feb 12 19:46:31 tux input: PC Speaker as /class/input/input2
Feb 12 19:46:31 tux Floppy drive(s): fd0 is 1.44M
Feb 12 19:46:31 tux FDC 0 is a post-1991 82077
Feb 12 19:46:31 tux parport: PnPBIOS parport detected.
Feb 12 19:46:31 tux parport0: PC-style at 0x378 (0x778), irq 7, dma 3
[PCSPP,TRISTATE,COMPAT,ECP,DMA]
Feb 12 19:46:31 tux USB Universal Host Controller Interface driver v2.3
Feb 12 19:46:43 tux login(pam_unix)[7728]: session opened for user root by
LOGIN(uid=0)
Feb 12 19:48:09 tux shutdown[7756]: shutting down for system reboot
Feb 12 19:48:09 tux init: Switching to runlevel: 6
Feb 12 19:48:17 tux syslog-ng[7509]: syslog-ng version 1.6.9 going down

-------------------------------------------

---- kernlel-2.6.15-r3  -------------------

#
# Automatically generated make config: don't edit
# Linux kernel version: 2.6.15-gentoo-r3
# Sun Feb 12 21:30:32 2006
#
CONFIG_X86_64=y
CONFIG_64BIT=y
CONFIG_X86=y
CONFIG_SEMAPHORE_SLEEPERS=y
CONFIG_MMU=y
CONFIG_RWSEM_GENERIC_SPINLOCK=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
CONFIG_X86_CMPXCHG=y
CONFIG_EARLY_PRINTK=y
CONFIG_GENERIC_ISA_DMA=y
CONFIG_GENERIC_IOMAP=y
CONFIG_ARCH_MAY_HAVE_PC_FDC=y

#
# Code maturity level options
#
CONFIG_EXPERIMENTAL=y
CONFIG_CLEAN_COMPILE=y
CONFIG_LOCK_KERNEL=y
CONFIG_INIT_ENV_ARG_LIMIT=32

#
# General setup
#
CONFIG_LOCALVERSION=""
CONFIG_LOCALVERSION_AUTO=y
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
# CONFIG_POSIX_MQUEUE is not set
# CONFIG_BSD_PROCESS_ACCT is not set
CONFIG_SYSCTL=y
# CONFIG_AUDIT is not set
CONFIG_HOTPLUG=y
CONFIG_KOBJECT_UEVENT=y
CONFIG_IKCONFIG=y
CONFIG_IKCONFIG_PROC=y
CONFIG_CPUSETS=y
CONFIG_INITRAMFS_SOURCE=""
CONFIG_CC_OPTIMIZE_FOR_SIZE=y
CONFIG_EMBEDDED=y
# CONFIG_KALLSYMS is not set
CONFIG_PRINTK=y
CONFIG_BUG=y
CONFIG_BASE_FULL=y
CONFIG_FUTEX=y
CONFIG_EPOLL=y
CONFIG_SHMEM=y
CONFIG_CC_ALIGN_FUNCTIONS=0
CONFIG_CC_ALIGN_LABELS=0
CONFIG_CC_ALIGN_LOOPS=0
CONFIG_CC_ALIGN_JUMPS=0
# CONFIG_TINY_SHMEM is not set
CONFIG_BASE_SMALL=0

#
# Loadable module support
#
CONFIG_MODULES=y
CONFIG_MODULE_UNLOAD=y
CONFIG_MODULE_FORCE_UNLOAD=y
CONFIG_OBSOLETE_MODPARM=y
CONFIG_MODVERSIONS=y
# CONFIG_MODULE_SRCVERSION_ALL is not set
CONFIG_KMOD=y
CONFIG_STOP_MACHINE=y

#
# Block layer
#
CONFIG_LBD=y

#
# IO Schedulers
#
CONFIG_IOSCHED_NOOP=y
# CONFIG_IOSCHED_AS is not set
CONFIG_IOSCHED_DEADLINE=y
# CONFIG_IOSCHED_CFQ is not set
# CONFIG_DEFAULT_AS is not set
CONFIG_DEFAULT_DEADLINE=y
# CONFIG_DEFAULT_CFQ is not set
# CONFIG_DEFAULT_NOOP is not set
CONFIG_DEFAULT_IOSCHED="deadline"

#
# Processor type and features
#
# CONFIG_MK8 is not set
# CONFIG_MPSC is not set
CONFIG_GENERIC_CPU=y
CONFIG_X86_L1_CACHE_BYTES=128
CONFIG_X86_L1_CACHE_SHIFT=7
CONFIG_X86_TSC=y
CONFIG_X86_GOOD_APIC=y
# CONFIG_MICROCODE is not set
# CONFIG_X86_MSR is not set
# CONFIG_X86_CPUID is not set
CONFIG_X86_HT=y
CONFIG_X86_IO_APIC=y
CONFIG_X86_LOCAL_APIC=y
CONFIG_MTRR=y
CONFIG_SMP=y
CONFIG_SCHED_SMT=y
# CONFIG_PREEMPT_NONE is not set
# CONFIG_PREEMPT_VOLUNTARY is not set
CONFIG_PREEMPT=y
CONFIG_PREEMPT_BKL=y
# CONFIG_NUMA is not set
CONFIG_ARCH_FLATMEM_ENABLE=y
CONFIG_SELECT_MEMORY_MODEL=y
CONFIG_FLATMEM_MANUAL=y
# CONFIG_DISCONTIGMEM_MANUAL is not set
# CONFIG_SPARSEMEM_MANUAL is not set
CONFIG_FLATMEM=y
CONFIG_FLAT_NODE_MEM_MAP=y
# CONFIG_SPARSEMEM_STATIC is not set
CONFIG_SPLIT_PTLOCK_CPUS=4
CONFIG_HAVE_ARCH_EARLY_PFN_TO_NID=y
CONFIG_NR_CPUS=8
# CONFIG_HOTPLUG_CPU is not set
CONFIG_HPET_TIMER=y
# CONFIG_X86_PM_TIMER is not set
# CONFIG_HPET_EMULATE_RTC is not set
CONFIG_GART_IOMMU=y
CONFIG_SWIOTLB=y
# CONFIG_X86_MCE is not set
CONFIG_PHYSICAL_START=0x100000
# CONFIG_KEXEC is not set
CONFIG_SECCOMP=y
# CONFIG_HZ_100 is not set
CONFIG_HZ_250=y
# CONFIG_HZ_1000 is not set
CONFIG_HZ=250
CONFIG_GENERIC_HARDIRQS=y
CONFIG_GENERIC_IRQ_PROBE=y
CONFIG_ISA_DMA_API=y
CONFIG_GENERIC_PENDING_IRQ=y

#
# Power management options
#
CONFIG_PM=y
CONFIG_PM_LEGACY=y
# CONFIG_PM_DEBUG is not set

#
# ACPI (Advanced Configuration and Power Interface) Support
#
CONFIG_ACPI=y
CONFIG_ACPI_AC=m
# CONFIG_ACPI_BATTERY is not set
CONFIG_ACPI_BUTTON=m
CONFIG_ACPI_VIDEO=m
# CONFIG_ACPI_HOTKEY is not set
CONFIG_ACPI_FAN=m
CONFIG_ACPI_PROCESSOR=m
CONFIG_ACPI_THERMAL=m
CONFIG_ACPI_ASUS=m
CONFIG_ACPI_IBM=m
CONFIG_ACPI_TOSHIBA=m
CONFIG_ACPI_BLACKLIST_YEAR=0
# CONFIG_ACPI_DEBUG is not set
CONFIG_ACPI_EC=y
CONFIG_ACPI_POWER=y
CONFIG_ACPI_SYSTEM=y
CONFIG_ACPI_CONTAINER=m

#
# CPU Frequency scaling
#
CONFIG_CPU_FREQ=y
CONFIG_CPU_FREQ_TABLE=m
# CONFIG_CPU_FREQ_DEBUG is not set
CONFIG_CPU_FREQ_STAT=m
# CONFIG_CPU_FREQ_STAT_DETAILS is not set
CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
CONFIG_CPU_FREQ_GOV_POWERSAVE=m
CONFIG_CPU_FREQ_GOV_USERSPACE=m
CONFIG_CPU_FREQ_GOV_ONDEMAND=m
CONFIG_CPU_FREQ_GOV_CONSERVATIVE=m

#
# CPUFreq processor drivers
#
CONFIG_X86_POWERNOW_K8=m
CONFIG_X86_POWERNOW_K8_ACPI=y
CONFIG_X86_SPEEDSTEP_CENTRINO=m
CONFIG_X86_SPEEDSTEP_CENTRINO_ACPI=y
CONFIG_X86_ACPI_CPUFREQ=m

#
# shared options
#
# CONFIG_X86_ACPI_CPUFREQ_PROC_INTF is not set
CONFIG_X86_P4_CLOCKMOD=m
CONFIG_X86_SPEEDSTEP_LIB=m

#
# Bus options (PCI etc.)
#
CONFIG_PCI=y
CONFIG_PCI_DIRECT=y
CONFIG_PCI_MMCONFIG=y
# CONFIG_UNORDERED_IO is not set
CONFIG_PCIEPORTBUS=y
# CONFIG_PCI_MSI is not set
# CONFIG_PCI_LEGACY_PROC is not set

#
# PCCARD (PCMCIA/CardBus) support
#
CONFIG_PCCARD=m
# CONFIG_PCMCIA_DEBUG is not set
CONFIG_PCMCIA=m
CONFIG_PCMCIA_LOAD_CIS=y
CONFIG_PCMCIA_IOCTL=y
CONFIG_CARDBUS=y

#
# PC-card bridges
#
CONFIG_YENTA=m
CONFIG_PD6729=m
CONFIG_I82092=m
CONFIG_PCCARD_NONSTATIC=m

#
# PCI Hotplug Support
#
# CONFIG_HOTPLUG_PCI is not set

#
# Executable file formats / Emulations
#
CONFIG_BINFMT_ELF=y
# CONFIG_BINFMT_MISC is not set
CONFIG_IA32_EMULATION=y
# CONFIG_IA32_AOUT is not set
CONFIG_COMPAT=y
CONFIG_SYSVIPC_COMPAT=y
CONFIG_UID16=y

#
# Networking
#
CONFIG_NET=y

#
# Networking options
#
CONFIG_PACKET=y
# CONFIG_PACKET_MMAP is not set
CONFIG_UNIX=y
CONFIG_XFRM=y
# CONFIG_XFRM_USER is not set
# CONFIG_NET_KEY is not set
CONFIG_INET=y
# CONFIG_IP_MULTICAST is not set
# CONFIG_IP_ADVANCED_ROUTER is not set
CONFIG_IP_FIB_HASH=y
# CONFIG_IP_PNP is not set
# CONFIG_NET_IPIP is not set
# CONFIG_NET_IPGRE is not set
# CONFIG_ARPD is not set
# CONFIG_SYN_COOKIES is not set
# CONFIG_INET_AH is not set
# CONFIG_INET_ESP is not set
# CONFIG_INET_IPCOMP is not set
# CONFIG_INET_TUNNEL is not set
CONFIG_INET_DIAG=y
CONFIG_INET_TCP_DIAG=y
# CONFIG_TCP_CONG_ADVANCED is not set
CONFIG_TCP_CONG_BIC=y
CONFIG_IPV6=m
CONFIG_IPV6_PRIVACY=y
CONFIG_INET6_AH=m
CONFIG_INET6_ESP=m
CONFIG_INET6_IPCOMP=m
CONFIG_INET6_TUNNEL=m
CONFIG_IPV6_TUNNEL=m
# CONFIG_NETFILTER is not set

#
# DCCP Configuration (EXPERIMENTAL)
#
# CONFIG_IP_DCCP is not set

#
# SCTP Configuration (EXPERIMENTAL)
#
# CONFIG_IP_SCTP is not set
CONFIG_ATM=m
# CONFIG_ATM_CLIP is not set
# CONFIG_ATM_LANE is not set
# CONFIG_ATM_BR2684 is not set
# CONFIG_BRIDGE is not set
CONFIG_VLAN_8021Q=m
# CONFIG_DECNET is not set
CONFIG_LLC=y
# CONFIG_LLC2 is not set
# CONFIG_IPX is not set
# CONFIG_ATALK is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set

#
# QoS and/or fair queueing
#
# CONFIG_NET_SCHED is not set

#
# Network testing
#
# CONFIG_NET_PKTGEN is not set
# CONFIG_HAMRADIO is not set
# CONFIG_IRDA is not set
CONFIG_BT=m
CONFIG_BT_L2CAP=m
CONFIG_BT_SCO=m
CONFIG_BT_RFCOMM=m
CONFIG_BT_RFCOMM_TTY=y
CONFIG_BT_BNEP=m
CONFIG_BT_BNEP_MC_FILTER=y
CONFIG_BT_BNEP_PROTO_FILTER=y
CONFIG_BT_HIDP=m

#
# Bluetooth device drivers
#
CONFIG_BT_HCIUSB=m
CONFIG_BT_HCIUSB_SCO=y
CONFIG_BT_HCIUART=m
CONFIG_BT_HCIUART_H4=y
CONFIG_BT_HCIUART_BCSP=y
CONFIG_BT_HCIBCM203X=m
CONFIG_BT_HCIBPA10X=m
CONFIG_BT_HCIBFUSB=m
CONFIG_BT_HCIDTL1=m
CONFIG_BT_HCIBT3C=m
CONFIG_BT_HCIBLUECARD=m
CONFIG_BT_HCIBTUART=m
CONFIG_BT_HCIVHCI=m
# CONFIG_IEEE80211 is not set

#
# Device Drivers
#

#
# Generic Driver Options
#
CONFIG_STANDALONE=y
CONFIG_PREVENT_FIRMWARE_BUILD=y
CONFIG_FW_LOADER=m

#
# Connector - unified userspace <-> kernelspace linker
#
# CONFIG_CONNECTOR is not set

#
# Memory Technology Devices (MTD)
#
# CONFIG_MTD is not set

#
# Parallel port support
#
CONFIG_PARPORT=m
CONFIG_PARPORT_PC=m
CONFIG_PARPORT_SERIAL=m
CONFIG_PARPORT_PC_FIFO=y
CONFIG_PARPORT_PC_SUPERIO=y
CONFIG_PARPORT_PC_PCMCIA=m
CONFIG_PARPORT_NOT_PC=y
# CONFIG_PARPORT_GSC is not set
CONFIG_PARPORT_1284=y

#
# Plug and Play support
#
CONFIG_PNP=y
# CONFIG_PNP_DEBUG is not set

#
# Protocols
#
CONFIG_PNPACPI=y

#
# Block devices
#
CONFIG_BLK_DEV_FD=m
CONFIG_PARIDE=m
CONFIG_PARIDE_PARPORT=m

#
# Parallel IDE high-level drivers
#
CONFIG_PARIDE_PD=m
CONFIG_PARIDE_PCD=m
CONFIG_PARIDE_PF=m
CONFIG_PARIDE_PT=m
CONFIG_PARIDE_PG=m

#
# Parallel IDE protocol modules
#
CONFIG_PARIDE_ATEN=m
CONFIG_PARIDE_BPCK=m
CONFIG_PARIDE_COMM=m
CONFIG_PARIDE_DSTR=m
CONFIG_PARIDE_FIT2=m
CONFIG_PARIDE_FIT3=m
CONFIG_PARIDE_EPAT=m
CONFIG_PARIDE_EPATC8=y
CONFIG_PARIDE_EPIA=m
CONFIG_PARIDE_FRIQ=m
CONFIG_PARIDE_FRPW=m
CONFIG_PARIDE_KBIC=m
CONFIG_PARIDE_KTTI=m
CONFIG_PARIDE_ON20=m
CONFIG_PARIDE_ON26=m
CONFIG_BLK_CPQ_DA=m
CONFIG_BLK_CPQ_CISS_DA=m
# CONFIG_CISS_SCSI_TAPE is not set
CONFIG_BLK_DEV_DAC960=m
CONFIG_BLK_DEV_UMEM=m
# CONFIG_BLK_DEV_COW_COMMON is not set
CONFIG_BLK_DEV_LOOP=y
# CONFIG_BLK_DEV_CRYPTOLOOP is not set
CONFIG_BLK_DEV_NBD=m
CONFIG_BLK_DEV_SX8=m
# CONFIG_BLK_DEV_UB is not set
CONFIG_BLK_DEV_RAM=y
CONFIG_BLK_DEV_RAM_COUNT=16
CONFIG_BLK_DEV_RAM_SIZE=8192
CONFIG_BLK_DEV_INITRD=y
# CONFIG_CDROM_PKTCDVD is not set
# CONFIG_ATA_OVER_ETH is not set

#
# ATA/ATAPI/MFM/RLL support
#
CONFIG_IDE=y
CONFIG_BLK_DEV_IDE=y

#
# Please see Documentation/ide.txt for help/info on IDE drives
#
# CONFIG_BLK_DEV_IDE_SATA is not set
# CONFIG_BLK_DEV_HD_IDE is not set
CONFIG_BLK_DEV_IDEDISK=y
CONFIG_IDEDISK_MULTI_MODE=y
CONFIG_BLK_DEV_IDECS=m
CONFIG_BLK_DEV_IDECD=y
# CONFIG_BLK_DEV_IDETAPE is not set
CONFIG_BLK_DEV_IDEFLOPPY=m
# CONFIG_BLK_DEV_IDESCSI is not set
# CONFIG_IDE_TASK_IOCTL is not set

#
# IDE chipset support/bugfixes
#
CONFIG_IDE_GENERIC=y
CONFIG_BLK_DEV_CMD640=y
CONFIG_BLK_DEV_CMD640_ENHANCED=y
CONFIG_BLK_DEV_IDEPNP=y
CONFIG_BLK_DEV_IDEPCI=y
CONFIG_IDEPCI_SHARE_IRQ=y
# CONFIG_BLK_DEV_OFFBOARD is not set
CONFIG_BLK_DEV_GENERIC=y
CONFIG_BLK_DEV_OPTI621=y
CONFIG_BLK_DEV_RZ1000=y
CONFIG_BLK_DEV_IDEDMA_PCI=y
# CONFIG_BLK_DEV_IDEDMA_FORCED is not set
CONFIG_IDEDMA_PCI_AUTO=y
# CONFIG_IDEDMA_ONLYDISK is not set
CONFIG_BLK_DEV_AEC62XX=y
CONFIG_BLK_DEV_ALI15X3=y
# CONFIG_WDC_ALI15X3 is not set
CONFIG_BLK_DEV_AMD74XX=y
CONFIG_BLK_DEV_ATIIXP=y
CONFIG_BLK_DEV_CMD64X=y
# CONFIG_BLK_DEV_TRIFLEX is not set
# CONFIG_BLK_DEV_CY82C693 is not set
# CONFIG_BLK_DEV_CS5520 is not set
# CONFIG_BLK_DEV_CS5530 is not set
# CONFIG_BLK_DEV_HPT34X is not set
# CONFIG_BLK_DEV_HPT366 is not set
CONFIG_BLK_DEV_SC1200=m
CONFIG_BLK_DEV_PIIX=y
CONFIG_BLK_DEV_IT821X=m
# CONFIG_BLK_DEV_NS87415 is not set
# CONFIG_BLK_DEV_PDC202XX_OLD is not set
# CONFIG_BLK_DEV_PDC202XX_NEW is not set
# CONFIG_BLK_DEV_SVWKS is not set
CONFIG_BLK_DEV_SIIMAGE=m
# CONFIG_BLK_DEV_SIS5513 is not set
# CONFIG_BLK_DEV_SLC90E66 is not set
# CONFIG_BLK_DEV_TRM290 is not set
# CONFIG_BLK_DEV_VIA82CXXX is not set
# CONFIG_IDE_ARM is not set
CONFIG_BLK_DEV_IDEDMA=y
CONFIG_IDEDMA_IVB=y
CONFIG_IDEDMA_AUTO=y
# CONFIG_BLK_DEV_HD is not set

#
# SCSI device support
#
# CONFIG_RAID_ATTRS is not set
CONFIG_SCSI=y
CONFIG_SCSI_PROC_FS=y

#
# SCSI support type (disk, tape, CD-ROM)
#
CONFIG_BLK_DEV_SD=y
# CONFIG_CHR_DEV_ST is not set
# CONFIG_CHR_DEV_OSST is not set
CONFIG_BLK_DEV_SR=y
CONFIG_BLK_DEV_SR_VENDOR=y
CONFIG_CHR_DEV_SG=m
# CONFIG_CHR_DEV_SCH is not set

#
# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
#
# CONFIG_SCSI_MULTI_LUN is not set
# CONFIG_SCSI_CONSTANTS is not set
# CONFIG_SCSI_LOGGING is not set

#
# SCSI Transport Attributes
#
CONFIG_SCSI_SPI_ATTRS=m
CONFIG_SCSI_FC_ATTRS=m
# CONFIG_SCSI_ISCSI_ATTRS is not set
# CONFIG_SCSI_SAS_ATTRS is not set

#
# SCSI low-level drivers
#
# CONFIG_ISCSI_TCP is not set
CONFIG_BLK_DEV_3W_XXXX_RAID=m
CONFIG_SCSI_3W_9XXX=m
CONFIG_SCSI_ACARD=m
CONFIG_SCSI_AACRAID=m
CONFIG_SCSI_AIC7XXX=m
CONFIG_AIC7XXX_CMDS_PER_DEVICE=32
CONFIG_AIC7XXX_RESET_DELAY_MS=5000
# CONFIG_AIC7XXX_DEBUG_ENABLE is not set
CONFIG_AIC7XXX_DEBUG_MASK=0
CONFIG_AIC7XXX_REG_PRETTY_PRINT=y
# CONFIG_SCSI_AIC7XXX_OLD is not set
CONFIG_SCSI_AIC79XX=m
CONFIG_AIC79XX_CMDS_PER_DEVICE=32
CONFIG_AIC79XX_RESET_DELAY_MS=5000
# CONFIG_AIC79XX_ENABLE_RD_STRM is not set
# CONFIG_AIC79XX_DEBUG_ENABLE is not set
CONFIG_AIC79XX_DEBUG_MASK=0
# CONFIG_AIC79XX_REG_PRETTY_PRINT is not set
CONFIG_MEGARAID_NEWGEN=y
CONFIG_MEGARAID_MM=m
CONFIG_MEGARAID_MAILBOX=m
CONFIG_MEGARAID_LEGACY=m
# CONFIG_MEGARAID_SAS is not set
CONFIG_SCSI_SATA=y
CONFIG_SCSI_SATA_AHCI=m
CONFIG_SCSI_SATA_SVW=m
CONFIG_SCSI_ATA_PIIX=m
# CONFIG_SCSI_SATA_MV is not set
CONFIG_SCSI_SATA_NV=m
# CONFIG_SCSI_PDC_ADMA is not set
CONFIG_SCSI_SATA_QSTOR=m
CONFIG_SCSI_SATA_PROMISE=m
CONFIG_SCSI_SATA_SX4=m
CONFIG_SCSI_SATA_SIL=m
# CONFIG_SCSI_SATA_SIL24 is not set
CONFIG_SCSI_SATA_SIS=m
CONFIG_SCSI_SATA_ULI=m
CONFIG_SCSI_SATA_VIA=m
CONFIG_SCSI_SATA_VITESSE=m
CONFIG_SCSI_SATA_INTEL_COMBINED=y
CONFIG_SCSI_BUSLOGIC=m
# CONFIG_SCSI_OMIT_FLASHPOINT is not set
CONFIG_SCSI_DMX3191D=m
CONFIG_SCSI_EATA=m
CONFIG_SCSI_EATA_TAGGED_QUEUE=y
CONFIG_SCSI_EATA_LINKED_COMMANDS=y
CONFIG_SCSI_EATA_MAX_TAGS=16
CONFIG_SCSI_FUTURE_DOMAIN=m
CONFIG_SCSI_GDTH=m
CONFIG_SCSI_IPS=m
CONFIG_SCSI_INITIO=m
CONFIG_SCSI_INIA100=m
CONFIG_SCSI_PPA=m
CONFIG_SCSI_IMM=m
# CONFIG_SCSI_IZIP_EPP16 is not set
# CONFIG_SCSI_IZIP_SLOW_CTR is not set
CONFIG_SCSI_SYM53C8XX_2=m
CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=1
CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16
CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64
# CONFIG_SCSI_SYM53C8XX_IOMAPPED is not set
CONFIG_SCSI_IPR=m
# CONFIG_SCSI_IPR_TRACE is not set
# CONFIG_SCSI_IPR_DUMP is not set
CONFIG_SCSI_QLOGIC_FC=m
# CONFIG_SCSI_QLOGIC_FC_FIRMWARE is not set
CONFIG_SCSI_QLOGIC_1280=m
CONFIG_SCSI_QLA2XXX=y
CONFIG_SCSI_QLA21XX=m
CONFIG_SCSI_QLA22XX=m
CONFIG_SCSI_QLA2300=m
CONFIG_SCSI_QLA2322=m
CONFIG_SCSI_QLA6312=m
# CONFIG_SCSI_QLA24XX is not set
CONFIG_SCSI_LPFC=m
CONFIG_SCSI_DC395x=m
CONFIG_SCSI_DC390T=m
# CONFIG_SCSI_DEBUG is not set

#
# PCMCIA SCSI adapter support
#
CONFIG_PCMCIA_FDOMAIN=m
CONFIG_PCMCIA_QLOGIC=m
CONFIG_PCMCIA_SYM53C500=m

#
# Multi-device support (RAID and LVM)
#
CONFIG_MD=y
CONFIG_BLK_DEV_MD=m
CONFIG_MD_LINEAR=m
CONFIG_MD_RAID0=m
CONFIG_MD_RAID1=m
CONFIG_MD_RAID10=m
CONFIG_MD_RAID5=m
CONFIG_MD_RAID6=m
CONFIG_MD_MULTIPATH=m
CONFIG_MD_FAULTY=m
CONFIG_BLK_DEV_DM=m
CONFIG_DM_CRYPT=m
CONFIG_DM_SNAPSHOT=m
CONFIG_DM_MIRROR=m
CONFIG_DM_ZERO=m
CONFIG_DM_MULTIPATH=m
CONFIG_DM_MULTIPATH_EMC=m
CONFIG_BLK_DEV_DM_BBR=m

#
# Fusion MPT device support
#
# CONFIG_FUSION is not set
# CONFIG_FUSION_SPI is not set
# CONFIG_FUSION_FC is not set
# CONFIG_FUSION_SAS is not set

#
# IEEE 1394 (FireWire) support
#
CONFIG_IEEE1394=m

#
# Subsystem Options
#
# CONFIG_IEEE1394_VERBOSEDEBUG is not set
# CONFIG_IEEE1394_OUI_DB is not set
CONFIG_IEEE1394_EXTRA_CONFIG_ROMS=y
CONFIG_IEEE1394_CONFIG_ROM_IP1394=y
# CONFIG_IEEE1394_EXPORT_FULL_API is not set

#
# Device Drivers
#
# CONFIG_IEEE1394_PCILYNX is not set
CONFIG_IEEE1394_OHCI1394=m

#
# Protocol Drivers
#
CONFIG_IEEE1394_VIDEO1394=m
CONFIG_IEEE1394_SBP2=m
# CONFIG_IEEE1394_SBP2_PHYS_DMA is not set
CONFIG_IEEE1394_ETH1394=m
CONFIG_IEEE1394_DV1394=m
CONFIG_IEEE1394_RAWIO=m
CONFIG_IEEE1394_CMP=m
# CONFIG_IEEE1394_AMDTP is not set

#
# I2O device support
#
CONFIG_I2O=m
CONFIG_I2O_EXT_ADAPTEC=y
CONFIG_I2O_EXT_ADAPTEC_DMA64=y
CONFIG_I2O_CONFIG=m
CONFIG_I2O_CONFIG_OLD_IOCTL=y
# CONFIG_I2O_BUS is not set
CONFIG_I2O_BLOCK=m
CONFIG_I2O_SCSI=m
CONFIG_I2O_PROC=m

#
# Network device support
#
CONFIG_NETDEVICES=y
# CONFIG_DUMMY is not set
# CONFIG_BONDING is not set
# CONFIG_EQUALIZER is not set
# CONFIG_TUN is not set
CONFIG_NET_SB1000=m

#
# ARCnet devices
#
# CONFIG_ARCNET is not set

#
# PHY device support
#
# CONFIG_PHYLIB is not set

#
# Ethernet (10 or 100Mbit)
#
CONFIG_NET_ETHERNET=y
CONFIG_MII=m
CONFIG_HAPPYMEAL=m
CONFIG_SUNGEM=m
# CONFIG_CASSINI is not set
CONFIG_NET_VENDOR_3COM=y
CONFIG_VORTEX=m
CONFIG_TYPHOON=m

#
# Tulip family network device support
#
CONFIG_NET_TULIP=y
CONFIG_DE2104X=m
CONFIG_TULIP=m
CONFIG_TULIP_MWI=y
CONFIG_TULIP_MMIO=y
CONFIG_TULIP_NAPI=y
CONFIG_TULIP_NAPI_HW_MITIGATION=y
CONFIG_DE4X5=m
CONFIG_WINBOND_840=m
CONFIG_DM9102=m
# CONFIG_ULI526X is not set
CONFIG_PCMCIA_XIRCOM=m
CONFIG_HP100=m
CONFIG_NET_PCI=y
CONFIG_PCNET32=m
CONFIG_AMD8111_ETH=m
# CONFIG_AMD8111E_NAPI is not set
CONFIG_ADAPTEC_STARFIRE=m
# CONFIG_ADAPTEC_STARFIRE_NAPI is not set
CONFIG_B44=m
CONFIG_FORCEDETH=m
CONFIG_DGRS=m
# CONFIG_EEPRO100 is not set
CONFIG_E100=m
CONFIG_FEALNX=m
CONFIG_NATSEMI=m
CONFIG_NE2K_PCI=m
CONFIG_8139CP=m
CONFIG_8139TOO=m
# CONFIG_8139TOO_PIO is not set
CONFIG_8139TOO_TUNE_TWISTER=y
CONFIG_8139TOO_8129=y
# CONFIG_8139_OLD_RX_RESET is not set
CONFIG_SIS900=m
CONFIG_EPIC100=m
CONFIG_SUNDANCE=m
CONFIG_SUNDANCE_MMIO=y
CONFIG_VIA_RHINE=m
CONFIG_VIA_RHINE_MMIO=y
# CONFIG_NET_POCKET is not set

#
# Ethernet (1000 Mbit)
#
CONFIG_ACENIC=m
# CONFIG_ACENIC_OMIT_TIGON_I is not set
CONFIG_DL2K=m
CONFIG_E1000=m
# CONFIG_E1000_NAPI is not set
CONFIG_NS83820=m
CONFIG_HAMACHI=m
CONFIG_YELLOWFIN=m
CONFIG_R8169=m
# CONFIG_R8169_NAPI is not set
CONFIG_R8169_VLAN=y
# CONFIG_SIS190 is not set
CONFIG_SKGE=m
# CONFIG_SKY2 is not set
CONFIG_SK98LIN=m
CONFIG_VIA_VELOCITY=m
CONFIG_TIGON3=m
CONFIG_BNX2=m

#
# Ethernet (10000 Mbit)
#
# CONFIG_CHELSIO_T1 is not set
CONFIG_IXGB=m
# CONFIG_IXGB_NAPI is not set
CONFIG_S2IO=m
# CONFIG_S2IO_NAPI is not set

#
# Token Ring devices
#
CONFIG_TR=y
CONFIG_IBMOL=m
CONFIG_3C359=m
CONFIG_TMS380TR=m
CONFIG_TMSPCI=m
CONFIG_ABYSS=m

#
# Wireless LAN (non-hamradio)
#
CONFIG_NET_RADIO=y

#
# Obsolete Wireless cards support (pre-802.11)
#
CONFIG_STRIP=m
CONFIG_PCMCIA_WAVELAN=m
CONFIG_PCMCIA_NETWAVE=m

#
# Wireless 802.11 Frequency Hopping cards support
#
CONFIG_PCMCIA_RAYCS=m

#
# Wireless 802.11b ISA/PCI cards support
#
# CONFIG_AIRO is not set
# CONFIG_HERMES is not set
CONFIG_ATMEL=m
CONFIG_PCI_ATMEL=m

#
# Wireless 802.11b Pcmcia/Cardbus cards support
#
CONFIG_AIRO_CS=m
CONFIG_PCMCIA_ATMEL=m
CONFIG_PCMCIA_WL3501=m

#
# Prism GT/Duette 802.11(a/b/g) PCI/Cardbus support
#
CONFIG_PRISM54=m
# CONFIG_HOSTAP is not set
CONFIG_NET_WIRELESS=y

#
# PCMCIA network device support
#
CONFIG_NET_PCMCIA=y
CONFIG_PCMCIA_3C589=m
CONFIG_PCMCIA_3C574=m
CONFIG_PCMCIA_FMVJ18X=m
CONFIG_PCMCIA_PCNET=m
CONFIG_PCMCIA_NMCLAN=m
CONFIG_PCMCIA_SMC91C92=m
CONFIG_PCMCIA_XIRC2PS=m
CONFIG_PCMCIA_AXNET=m

#
# Wan interfaces
#
CONFIG_WAN=y
CONFIG_DSCC4=m
CONFIG_DSCC4_PCISYNC=y
CONFIG_DSCC4_PCI_RST=y
CONFIG_LANMEDIA=m
CONFIG_SYNCLINK_SYNCPPP=m
CONFIG_HDLC=m
CONFIG_HDLC_RAW=y
CONFIG_HDLC_RAW_ETH=y
CONFIG_HDLC_CISCO=y
CONFIG_HDLC_FR=y
CONFIG_HDLC_PPP=y

#
# X.25/LAPB support is disabled
#
CONFIG_PCI200SYN=m
CONFIG_WANXL=m
CONFIG_PC300=m
CONFIG_PC300_MLPPP=y
CONFIG_FARSYNC=m
CONFIG_DLCI=m
CONFIG_DLCI_COUNT=24
CONFIG_DLCI_MAX=8
CONFIG_SBNI=m
CONFIG_SBNI_MULTILINE=y

#
# ATM drivers
#
# CONFIG_ATM_DUMMY is not set
# CONFIG_ATM_TCP is not set
# CONFIG_ATM_LANAI is not set
# CONFIG_ATM_ENI is not set
# CONFIG_ATM_FIRESTREAM is not set
# CONFIG_ATM_ZATM is not set
# CONFIG_ATM_IDT77252 is not set
# CONFIG_ATM_AMBASSADOR is not set
# CONFIG_ATM_HORIZON is not set
# CONFIG_ATM_FORE200E_MAYBE is not set
# CONFIG_ATM_HE is not set
CONFIG_FDDI=y
CONFIG_DEFXX=m
CONFIG_SKFP=m
CONFIG_HIPPI=y
CONFIG_ROADRUNNER=m
# CONFIG_ROADRUNNER_LARGE_RINGS is not set
CONFIG_PLIP=m
CONFIG_PPP=m
CONFIG_PPP_MULTILINK=y
CONFIG_PPP_FILTER=y
CONFIG_PPP_ASYNC=m
CONFIG_PPP_SYNC_TTY=m
CONFIG_PPP_DEFLATE=m
CONFIG_PPP_BSDCOMP=m
# CONFIG_PPP_MPPE is not set
CONFIG_PPPOE=m
CONFIG_PPPOATM=m
CONFIG_SLIP=m
CONFIG_SLIP_COMPRESSED=y
CONFIG_SLIP_SMART=y
CONFIG_SLIP_MODE_SLIP6=y
CONFIG_NET_FC=y
# CONFIG_SHAPER is not set
# CONFIG_NETCONSOLE is not set
# CONFIG_NETPOLL is not set
# CONFIG_NET_POLL_CONTROLLER is not set

#
# ISDN subsystem
#
# CONFIG_ISDN is not set

#
# Telephony Support
#
# CONFIG_PHONE is not set

#
# Input device support
#
CONFIG_INPUT=y

#
# Userland interfaces
#
CONFIG_INPUT_MOUSEDEV=y
CONFIG_INPUT_MOUSEDEV_PSAUX=y
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
# CONFIG_INPUT_JOYDEV is not set
# CONFIG_INPUT_TSDEV is not set
CONFIG_INPUT_EVDEV=y
# CONFIG_INPUT_EVBUG is not set

#
# Input Device Drivers
#
CONFIG_INPUT_KEYBOARD=y
CONFIG_KEYBOARD_ATKBD=y
CONFIG_KEYBOARD_SUNKBD=m
CONFIG_KEYBOARD_LKKBD=m
CONFIG_KEYBOARD_XTKBD=m
CONFIG_KEYBOARD_NEWTON=m
CONFIG_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=y
CONFIG_MOUSE_SERIAL=m
# CONFIG_MOUSE_VSXXXAA is not set
# CONFIG_INPUT_JOYSTICK is not set
# CONFIG_INPUT_TOUCHSCREEN is not set
CONFIG_INPUT_MISC=y
CONFIG_INPUT_PCSPKR=m
# CONFIG_INPUT_UINPUT is not set

#
# Hardware I/O ports
#
CONFIG_SERIO=y
CONFIG_SERIO_I8042=y
CONFIG_SERIO_SERPORT=m
CONFIG_SERIO_CT82C710=m
CONFIG_SERIO_PARKBD=m
CONFIG_SERIO_PCIPS2=m
CONFIG_SERIO_LIBPS2=y
# CONFIG_SERIO_RAW is not set
# CONFIG_GAMEPORT is not set

#
# Character devices
#
CONFIG_VT=y
CONFIG_VT_CONSOLE=y
CONFIG_HW_CONSOLE=y
# CONFIG_SERIAL_NONSTANDARD is not set

#
# Serial drivers
#
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_CONSOLE=y
CONFIG_SERIAL_8250_CS=m
CONFIG_SERIAL_8250_ACPI=y
CONFIG_SERIAL_8250_NR_UARTS=4
CONFIG_SERIAL_8250_EXTENDED=y
CONFIG_SERIAL_8250_MANY_PORTS=y
CONFIG_SERIAL_8250_SHARE_IRQ=y
# CONFIG_SERIAL_8250_DETECT_IRQ is not set
CONFIG_SERIAL_8250_RSA=y

#
# Non-8250 serial port support
#
CONFIG_SERIAL_CORE=y
CONFIG_SERIAL_CORE_CONSOLE=y
# CONFIG_SERIAL_JSM is not set
CONFIG_UNIX98_PTYS=y
# CONFIG_LEGACY_PTYS is not set
# CONFIG_PRINTER is not set
CONFIG_PPDEV=m
# CONFIG_TIPAR is not set

#
# IPMI
#
# CONFIG_IPMI_HANDLER is not set

#
# Watchdog Cards
#
# CONFIG_WATCHDOG is not set
# CONFIG_HW_RANDOM is not set
CONFIG_NVRAM=m
CONFIG_RTC=y
# CONFIG_DTLK is not set
# CONFIG_R3964 is not set
# CONFIG_APPLICOM is not set

#
# Ftape, the floppy tape device driver
#
CONFIG_AGP=y
CONFIG_AGP_AMD64=y
# CONFIG_AGP_INTEL is not set
# CONFIG_DRM is not set

#
# PCMCIA character devices
#
# CONFIG_SYNCLINK_CS is not set
# CONFIG_CARDMAN_4000 is not set
# CONFIG_CARDMAN_4040 is not set
CONFIG_MWAVE=m
# CONFIG_RAW_DRIVER is not set
# CONFIG_HPET is not set
# CONFIG_HANGCHECK_TIMER is not set

#
# TPM devices
#
# CONFIG_TCG_TPM is not set
# CONFIG_TELCLOCK is not set

#
# I2C support
#
CONFIG_I2C=m
CONFIG_I2C_CHARDEV=m

#
# I2C Algorithms
#
CONFIG_I2C_ALGOBIT=m
CONFIG_I2C_ALGOPCF=m
CONFIG_I2C_ALGOPCA=m

#
# I2C Hardware Bus support
#
CONFIG_I2C_ALI1535=m
CONFIG_I2C_ALI1563=m
CONFIG_I2C_ALI15X3=m
CONFIG_I2C_AMD756=m
CONFIG_I2C_AMD756_S4882=m
CONFIG_I2C_AMD8111=m
# CONFIG_I2C_I801 is not set
# CONFIG_I2C_I810 is not set
CONFIG_I2C_PIIX4=m
CONFIG_I2C_NFORCE2=m
# CONFIG_I2C_PARPORT is not set
# CONFIG_I2C_PARPORT_LIGHT is not set
# CONFIG_I2C_PROSAVAGE is not set
# CONFIG_I2C_SAVAGE4 is not set
# CONFIG_SCx200_ACB is not set
# CONFIG_I2C_SIS5595 is not set
# CONFIG_I2C_SIS630 is not set
# CONFIG_I2C_SIS96X is not set
CONFIG_I2C_STUB=m
# CONFIG_I2C_VIA is not set
# CONFIG_I2C_VIAPRO is not set
# CONFIG_I2C_VOODOO3 is not set
# CONFIG_I2C_PCA_ISA is not set

#
# Miscellaneous I2C Chip support
#
# CONFIG_SENSORS_DS1337 is not set
# CONFIG_SENSORS_DS1374 is not set
# CONFIG_SENSORS_EEPROM is not set
CONFIG_SENSORS_PCF8574=m
CONFIG_SENSORS_PCA9539=m
CONFIG_SENSORS_PCF8591=m
# CONFIG_SENSORS_RTC8564 is not set
# CONFIG_SENSORS_MAX6875 is not set
# CONFIG_RTC_X1205_I2C is not set
# CONFIG_I2C_DEBUG_CORE is not set
# CONFIG_I2C_DEBUG_ALGO is not set
# CONFIG_I2C_DEBUG_BUS is not set
# CONFIG_I2C_DEBUG_CHIP is not set

#
# Dallas's 1-wire bus
#
# CONFIG_W1 is not set

#
# Hardware Monitoring support
#
CONFIG_HWMON=y
# CONFIG_HWMON_VID is not set
# CONFIG_SENSORS_ADM1021 is not set
# CONFIG_SENSORS_ADM1025 is not set
# CONFIG_SENSORS_ADM1026 is not set
# CONFIG_SENSORS_ADM1031 is not set
# CONFIG_SENSORS_ADM9240 is not set
# CONFIG_SENSORS_ASB100 is not set
# CONFIG_SENSORS_ATXP1 is not set
# CONFIG_SENSORS_DS1621 is not set
# CONFIG_SENSORS_FSCHER is not set
# CONFIG_SENSORS_FSCPOS is not set
# CONFIG_SENSORS_GL518SM is not set
# CONFIG_SENSORS_GL520SM is not set
# CONFIG_SENSORS_IT87 is not set
# CONFIG_SENSORS_LM63 is not set
# CONFIG_SENSORS_LM75 is not set
# CONFIG_SENSORS_LM77 is not set
# CONFIG_SENSORS_LM78 is not set
# CONFIG_SENSORS_LM80 is not set
# CONFIG_SENSORS_LM83 is not set
# CONFIG_SENSORS_LM85 is not set
# CONFIG_SENSORS_LM87 is not set
# CONFIG_SENSORS_LM90 is not set
# CONFIG_SENSORS_LM92 is not set
# CONFIG_SENSORS_MAX1619 is not set
# CONFIG_SENSORS_PC87360 is not set
# CONFIG_SENSORS_SIS5595 is not set
# CONFIG_SENSORS_SMSC47M1 is not set
# CONFIG_SENSORS_SMSC47B397 is not set
# CONFIG_SENSORS_VIA686A is not set
# CONFIG_SENSORS_W83781D is not set
# CONFIG_SENSORS_W83792D is not set
# CONFIG_SENSORS_W83L785TS is not set
# CONFIG_SENSORS_W83627HF is not set
# CONFIG_SENSORS_W83627EHF is not set
# CONFIG_SENSORS_HDAPS is not set
# CONFIG_HWMON_DEBUG_CHIP is not set

#
# Misc devices
#
# CONFIG_IBM_ASM is not set

#
# Multimedia Capabilities Port drivers
#

#
# Multimedia devices
#
CONFIG_VIDEO_DEV=m

#
# Video For Linux
#

#
# Video Adapters
#
# CONFIG_VIDEO_BT848 is not set
# CONFIG_VIDEO_BWQCAM is not set
# CONFIG_VIDEO_CQCAM is not set
# CONFIG_VIDEO_W9966 is not set
# CONFIG_VIDEO_CPIA is not set
# CONFIG_VIDEO_SAA5246A is not set
# CONFIG_VIDEO_SAA5249 is not set
# CONFIG_TUNER_3036 is not set
# CONFIG_VIDEO_STRADIS is not set
# CONFIG_VIDEO_ZORAN is not set
CONFIG_VIDEO_SAA7134=m
# CONFIG_VIDEO_SAA7134_ALSA is not set
# CONFIG_VIDEO_MXB is not set
# CONFIG_VIDEO_DPC is not set
# CONFIG_VIDEO_HEXIUM_ORION is not set
# CONFIG_VIDEO_HEXIUM_GEMINI is not set
# CONFIG_VIDEO_CX88 is not set
# CONFIG_VIDEO_EM28XX is not set
# CONFIG_VIDEO_OVCAMCHIP is not set
CONFIG_VIDEO_AUDIO_DECODER=m
CONFIG_VIDEO_DECODER=m

#
# Radio Adapters
#
# CONFIG_RADIO_GEMTEK_PCI is not set
# CONFIG_RADIO_MAXIRADIO is not set
# CONFIG_RADIO_MAESTRO is not set

#
# Digital Video Broadcasting Devices
#
# CONFIG_DVB is not set
CONFIG_VIDEO_TUNER=m
CONFIG_VIDEO_BUF=m
CONFIG_VIDEO_IR=m

#
# Graphics support
#
CONFIG_FB=y
CONFIG_FB_CFB_FILLRECT=y
CONFIG_FB_CFB_COPYAREA=y
CONFIG_FB_CFB_IMAGEBLIT=y
# CONFIG_FB_MACMODES is not set
# CONFIG_FB_MODE_HELPERS is not set
# CONFIG_FB_TILEBLITTING is not set
# CONFIG_FB_CIRRUS is not set
# CONFIG_FB_PM2 is not set
# CONFIG_FB_CYBER2000 is not set
# CONFIG_FB_ARC is not set
# CONFIG_FB_ASILIANT is not set
# CONFIG_FB_IMSTT is not set
# CONFIG_FB_VGA16 is not set
CONFIG_FB_VESA=y
CONFIG_FB_VESA_STD=y
# CONFIG_FB_VESA_TNG is not set
CONFIG_VIDEO_SELECT=y
# CONFIG_FB_HGA is not set
# CONFIG_FB_S1D13XXX is not set
# CONFIG_FB_NVIDIA is not set
# CONFIG_FB_RIVA is not set
# CONFIG_FB_MATROX is not set
# CONFIG_FB_RADEON_OLD is not set
# CONFIG_FB_RADEON is not set
# CONFIG_FB_ATY128 is not set
# CONFIG_FB_ATY is not set
# CONFIG_FB_SAVAGE is not set
# CONFIG_FB_SIS is not set
# CONFIG_FB_NEOMAGIC is not set
# CONFIG_FB_KYRO is not set
# CONFIG_FB_3DFX is not set
# CONFIG_FB_VOODOO1 is not set
# CONFIG_FB_CYBLA is not set
# CONFIG_FB_TRIDENT is not set
# CONFIG_FB_GEODE is not set
# CONFIG_FB_VIRTUAL is not set

#
# Console display driver support
#
CONFIG_VGA_CONSOLE=y
CONFIG_DUMMY_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE=y
# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set
# CONFIG_FONTS is not set
CONFIG_FONT_8x8=y
CONFIG_FONT_8x16=y

#
# Logo configuration
#
# CONFIG_LOGO is not set
CONFIG_BACKLIGHT_LCD_SUPPORT=y
CONFIG_BACKLIGHT_CLASS_DEVICE=m
CONFIG_BACKLIGHT_DEVICE=y
CONFIG_LCD_CLASS_DEVICE=m
CONFIG_LCD_DEVICE=y
CONFIG_FB_SPLASH=y

#
# Speakup console speech
#
CONFIG_SPEAKUP=y
CONFIG_SPEAKUP_ACNTSA=y
CONFIG_SPEAKUP_ACNTPC=y
CONFIG_SPEAKUP_APOLLO=y
CONFIG_SPEAKUP_AUDPTR=y
CONFIG_SPEAKUP_BNS=y
CONFIG_SPEAKUP_DECTLK=y
CONFIG_SPEAKUP_DECEXT=y
# CONFIG_SPEAKUP_DECPC is not set
CONFIG_SPEAKUP_DTLK=y
CONFIG_SPEAKUP_KEYPC=y
CONFIG_SPEAKUP_LTLK=y
CONFIG_SPEAKUP_SFTSYN=y
CONFIG_SPEAKUP_SPKOUT=y
CONFIG_SPEAKUP_TXPRT=y

#
# Enter the 3 to 6 character keyword from the list above, or none for no
default synthesizer on boot up.
#
CONFIG_SPEAKUP_DEFAULT="none"

#
# Sound
#
CONFIG_SOUND=y

#
# Advanced Linux Sound Architecture
#
CONFIG_SND=m
CONFIG_SND_AC97_CODEC=m
CONFIG_SND_AC97_BUS=m
CONFIG_SND_TIMER=m
CONFIG_SND_PCM=m
CONFIG_SND_RAWMIDI=m
# CONFIG_SND_SEQUENCER is not set
CONFIG_SND_OSSEMUL=y
CONFIG_SND_MIXER_OSS=m
CONFIG_SND_PCM_OSS=m
CONFIG_SND_RTCTIMER=m
# CONFIG_SND_VERBOSE_PRINTK is not set
# CONFIG_SND_DEBUG is not set

#
# Generic devices
#
CONFIG_SND_MPU401_UART=m
# CONFIG_SND_DUMMY is not set
# CONFIG_SND_MTPAV is not set
# CONFIG_SND_SERIAL_U16550 is not set
# CONFIG_SND_MPU401 is not set

#
# PCI devices
#
CONFIG_SND_ALI5451=m
CONFIG_SND_ATIIXP=m
# CONFIG_SND_ATIIXP_MODEM is not set
# CONFIG_SND_AU8810 is not set
# CONFIG_SND_AU8820 is not set
# CONFIG_SND_AU8830 is not set
# CONFIG_SND_AZT3328 is not set
# CONFIG_SND_BT87X is not set
# CONFIG_SND_CS46XX is not set
# CONFIG_SND_CS4281 is not set
# CONFIG_SND_EMU10K1 is not set
# CONFIG_SND_EMU10K1X is not set
# CONFIG_SND_CA0106 is not set
# CONFIG_SND_KORG1212 is not set
# CONFIG_SND_MIXART is not set
# CONFIG_SND_NM256 is not set
# CONFIG_SND_RME32 is not set
# CONFIG_SND_RME96 is not set
# CONFIG_SND_RME9652 is not set
# CONFIG_SND_HDSP is not set
# CONFIG_SND_HDSPM is not set
# CONFIG_SND_TRIDENT is not set
# CONFIG_SND_YMFPCI is not set
# CONFIG_SND_AD1889 is not set
# CONFIG_SND_ALS4000 is not set
# CONFIG_SND_CMIPCI is not set
# CONFIG_SND_ENS1370 is not set
# CONFIG_SND_ENS1371 is not set
# CONFIG_SND_ES1938 is not set
# CONFIG_SND_ES1968 is not set
# CONFIG_SND_MAESTRO3 is not set
# CONFIG_SND_FM801 is not set
# CONFIG_SND_ICE1712 is not set
# CONFIG_SND_ICE1724 is not set
CONFIG_SND_INTEL8X0=m
# CONFIG_SND_INTEL8X0M is not set
# CONFIG_SND_SONICVIBES is not set
# CONFIG_SND_VIA82XX is not set
# CONFIG_SND_VIA82XX_MODEM is not set
# CONFIG_SND_VX222 is not set
# CONFIG_SND_HDA_INTEL is not set

#
# USB devices
#
# CONFIG_SND_USB_AUDIO is not set
# CONFIG_SND_USB_USX2Y is not set

#
# PCMCIA devices
#

#
# Open Sound System
#
# CONFIG_SOUND_PRIME is not set

#
# USB support
#
CONFIG_USB_ARCH_HAS_HCD=y
CONFIG_USB_ARCH_HAS_OHCI=y
CONFIG_USB=m
# CONFIG_USB_DEBUG is not set

#
# Miscellaneous USB options
#
CONFIG_USB_DEVICEFS=y
# CONFIG_USB_BANDWIDTH is not set
# CONFIG_USB_DYNAMIC_MINORS is not set
# CONFIG_USB_SUSPEND is not set
# CONFIG_USB_OTG is not set

#
# USB Host Controller Drivers
#
CONFIG_USB_EHCI_HCD=m
# CONFIG_USB_EHCI_SPLIT_ISO is not set
# CONFIG_USB_EHCI_ROOT_HUB_TT is not set
# CONFIG_USB_ISP116X_HCD is not set
CONFIG_USB_OHCI_HCD=m
# CONFIG_USB_OHCI_BIG_ENDIAN is not set
CONFIG_USB_OHCI_LITTLE_ENDIAN=y
CONFIG_USB_UHCI_HCD=m
CONFIG_USB_SL811_HCD=m
CONFIG_USB_SL811_CS=m

#
# USB Device Class drivers
#
# CONFIG_OBSOLETE_OSS_USB_DRIVER is not set
CONFIG_USB_ACM=m
# CONFIG_USB_PRINTER is not set

#
# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
#

#
# may also be needed; see USB_STORAGE Help for more information
#
CONFIG_USB_STORAGE=m
# CONFIG_USB_STORAGE_DEBUG is not set
CONFIG_USB_STORAGE_DATAFAB=y
CONFIG_USB_STORAGE_FREECOM=y
CONFIG_USB_STORAGE_ISD200=y
CONFIG_USB_STORAGE_DPCM=y
CONFIG_USB_STORAGE_USBAT=y
CONFIG_USB_STORAGE_SDDR09=y
CONFIG_USB_STORAGE_SDDR55=y
CONFIG_USB_STORAGE_JUMPSHOT=y

#
# USB Input Devices
#
CONFIG_USB_HID=m
CONFIG_USB_HIDINPUT=y
# CONFIG_HID_FF is not set
CONFIG_USB_HIDDEV=y

#
# USB HID Boot Protocol drivers
#
# CONFIG_USB_KBD is not set
# CONFIG_USB_MOUSE is not set
CONFIG_USB_AIPTEK=m
CONFIG_USB_WACOM=m
# CONFIG_USB_ACECAD is not set
CONFIG_USB_KBTAB=m
# CONFIG_USB_POWERMATE is not set
CONFIG_USB_MTOUCH=m
# CONFIG_USB_ITMTOUCH is not set
CONFIG_USB_EGALAX=m
# CONFIG_USB_YEALINK is not set
CONFIG_USB_XPAD=m
CONFIG_USB_ATI_REMOTE=m
# CONFIG_USB_KEYSPAN_REMOTE is not set
# CONFIG_USB_APPLETOUCH is not set

#
# USB Imaging devices
#
# CONFIG_USB_MDC800 is not set
# CONFIG_USB_MICROTEK is not set

#
# USB Multimedia devices
#
# CONFIG_USB_DABUSB is not set
# CONFIG_USB_VICAM is not set
# CONFIG_USB_DSBR is not set
# CONFIG_USB_IBMCAM is not set
# CONFIG_USB_KONICAWC is not set
# CONFIG_USB_OV511 is not set
# CONFIG_USB_SE401 is not set
# CONFIG_USB_SN9C102 is not set
# CONFIG_USB_STV680 is not set
# CONFIG_USB_PWC is not set

#
# USB Network Adapters
#
CONFIG_USB_CATC=m
CONFIG_USB_KAWETH=m
CONFIG_USB_PEGASUS=m
CONFIG_USB_RTL8150=m
CONFIG_USB_USBNET=m
CONFIG_USB_NET_AX8817X=m
CONFIG_USB_NET_CDCETHER=m
# CONFIG_USB_NET_GL620A is not set
CONFIG_USB_NET_NET1080=m
# CONFIG_USB_NET_PLUSB is not set
# CONFIG_USB_NET_RNDIS_HOST is not set
# CONFIG_USB_NET_CDC_SUBSET is not set
CONFIG_USB_NET_ZAURUS=m
CONFIG_USB_ZD1201=m
# CONFIG_USB_MON is not set

#
# USB port drivers
#
CONFIG_USB_USS720=m

#
# USB Serial Converter support
#
CONFIG_USB_SERIAL=m
CONFIG_USB_SERIAL_GENERIC=y
CONFIG_USB_SERIAL_AIRPRIME=m
# CONFIG_USB_SERIAL_ANYDATA is not set
# CONFIG_USB_SERIAL_BELKIN is not set
# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set
CONFIG_USB_SERIAL_CP2101=m
# CONFIG_USB_SERIAL_CYPRESS_M8 is not set
# CONFIG_USB_SERIAL_EMPEG is not set
# CONFIG_USB_SERIAL_FTDI_SIO is not set
# CONFIG_USB_SERIAL_VISOR is not set
# CONFIG_USB_SERIAL_IPAQ is not set
# CONFIG_USB_SERIAL_IR is not set
# CONFIG_USB_SERIAL_EDGEPORT is not set
# CONFIG_USB_SERIAL_EDGEPORT_TI is not set
# CONFIG_USB_SERIAL_GARMIN is not set
CONFIG_USB_SERIAL_IPW=m
# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set
# CONFIG_USB_SERIAL_KEYSPAN is not set
# CONFIG_USB_SERIAL_KLSI is not set
# CONFIG_USB_SERIAL_KOBIL_SCT is not set
# CONFIG_USB_SERIAL_MCT_U232 is not set
# CONFIG_USB_SERIAL_PL2303 is not set
# CONFIG_USB_SERIAL_HP4X is not set
# CONFIG_USB_SERIAL_SAFE is not set
# CONFIG_USB_SERIAL_TI is not set
# CONFIG_USB_SERIAL_CYBERJACK is not set
# CONFIG_USB_SERIAL_XIRCOM is not set
CONFIG_USB_SERIAL_OPTION=m
CONFIG_USB_SERIAL_OMNINET=m

#
# USB Miscellaneous drivers
#
# CONFIG_USB_EMI62 is not set
# CONFIG_USB_EMI26 is not set
CONFIG_USB_AUERSWALD=m
# CONFIG_USB_RIO500 is not set
# CONFIG_USB_LEGOTOWER is not set
# CONFIG_USB_LCD is not set
# CONFIG_USB_LED is not set
# CONFIG_USB_CYTHERM is not set
# CONFIG_USB_PHIDGETKIT is not set
# CONFIG_USB_PHIDGETSERVO is not set
# CONFIG_USB_IDMOUSE is not set
CONFIG_USB_SISUSBVGA=m
# CONFIG_USB_SISUSBVGA_CON is not set
# CONFIG_USB_LD is not set
# CONFIG_USB_TEST is not set

#
# USB DSL modem support
#
CONFIG_USB_ATM=m
CONFIG_USB_SPEEDTOUCH=m
# CONFIG_USB_CXACRU is not set
# CONFIG_USB_XUSBATM is not set

#
# USB Gadget Support
#
# CONFIG_USB_GADGET is not set

#
# MMC/SD Card support
#
CONFIG_MMC=m
# CONFIG_MMC_DEBUG is not set
CONFIG_MMC_BLOCK=m
CONFIG_MMC_WBSD=m

#
# InfiniBand support
#
CONFIG_INFINIBAND=m
# CONFIG_INFINIBAND_USER_MAD is not set
# CONFIG_INFINIBAND_USER_ACCESS is not set
CONFIG_INFINIBAND_MTHCA=m
# CONFIG_INFINIBAND_MTHCA_DEBUG is not set
CONFIG_INFINIBAND_IPOIB=m
# CONFIG_INFINIBAND_IPOIB_DEBUG is not set
# CONFIG_INFINIBAND_SRP is not set

#
# SN Devices
#

#
# Firmware Drivers
#
# CONFIG_EDD is not set
# CONFIG_DELL_RBU is not set
# CONFIG_DCDBAS is not set

#
# File systems
#
CONFIG_EXT2_FS=y
CONFIG_EXT2_FS_XATTR=y
CONFIG_EXT2_FS_POSIX_ACL=y
CONFIG_EXT2_FS_SECURITY=y
# CONFIG_EXT2_FS_XIP is not set
CONFIG_EXT3_FS=y
CONFIG_EXT3_FS_XATTR=y
CONFIG_EXT3_FS_POSIX_ACL=y
CONFIG_EXT3_FS_SECURITY=y
CONFIG_JBD=y
# CONFIG_JBD_DEBUG is not set
CONFIG_FS_MBCACHE=y
CONFIG_REISERFS_FS=y
# CONFIG_REISERFS_CHECK is not set
# CONFIG_REISERFS_PROC_INFO is not set
CONFIG_REISERFS_FS_XATTR=y
CONFIG_REISERFS_FS_POSIX_ACL=y
CONFIG_REISERFS_FS_SECURITY=y
CONFIG_JFS_FS=m
CONFIG_JFS_POSIX_ACL=y
# CONFIG_JFS_SECURITY is not set
# CONFIG_JFS_DEBUG is not set
# CONFIG_JFS_STATISTICS is not set
CONFIG_FS_POSIX_ACL=y
CONFIG_XFS_FS=m
CONFIG_XFS_QUOTA=y
CONFIG_XFS_SECURITY=y
CONFIG_XFS_POSIX_ACL=y
CONFIG_XFS_RT=y
# CONFIG_MINIX_FS is not set
# CONFIG_ROMFS_FS is not set
CONFIG_INOTIFY=y
# CONFIG_QUOTA is not set
CONFIG_QUOTACTL=y
CONFIG_DNOTIFY=y
# CONFIG_AUTOFS_FS is not set
# CONFIG_AUTOFS4_FS is not set
# CONFIG_FUSE_FS is not set

#
# CD-ROM/DVD Filesystems
#
CONFIG_ISO9660_FS=y
CONFIG_JOLIET=y
CONFIG_ZISOFS=y
CONFIG_ZISOFS_FS=y
CONFIG_UDF_FS=y
CONFIG_UDF_NLS=y

#
# DOS/FAT/NT Filesystems
#
CONFIG_FAT_FS=y
CONFIG_MSDOS_FS=y
CONFIG_VFAT_FS=y
CONFIG_FAT_DEFAULT_CODEPAGE=437
CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
CONFIG_NTFS_FS=y
# CONFIG_NTFS_DEBUG is not set
CONFIG_NTFS_RW=y

#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
CONFIG_PROC_KCORE=y
CONFIG_SYSFS=y
CONFIG_TMPFS=y
# CONFIG_HUGETLBFS is not set
# CONFIG_HUGETLB_PAGE is not set
CONFIG_RAMFS=y
# CONFIG_RELAYFS_FS is not set

#
# Miscellaneous filesystems
#
# CONFIG_ADFS_FS is not set
# CONFIG_AFFS_FS is not set
# CONFIG_HFS_FS is not set
# CONFIG_HFSPLUS_FS is not set
# CONFIG_BEFS_FS is not set
# CONFIG_BFS_FS is not set
# CONFIG_EFS_FS is not set
# CONFIG_CRAMFS is not set
# CONFIG_SQUASHFS is not set
# CONFIG_VXFS_FS is not set
# CONFIG_HPFS_FS is not set
# CONFIG_QNX4FS_FS is not set
# CONFIG_SYSV_FS is not set
# CONFIG_UFS_FS is not set

#
# Network File Systems
#
# CONFIG_NFS_FS is not set
# CONFIG_NFSD is not set
CONFIG_SMB_FS=m
CONFIG_SMB_NLS_DEFAULT=y
CONFIG_SMB_NLS_REMOTE="cp437"
CONFIG_CIFS=m
# CONFIG_CIFS_STATS is not set
# CONFIG_CIFS_XATTR is not set
# CONFIG_CIFS_EXPERIMENTAL is not set
# CONFIG_NCP_FS is not set
# CONFIG_CODA_FS is not set
# CONFIG_AFS_FS is not set
# CONFIG_9P_FS is not set

#
# Partition Types
#
CONFIG_PARTITION_ADVANCED=y
# CONFIG_ACORN_PARTITION is not set
# CONFIG_OSF_PARTITION is not set
# CONFIG_AMIGA_PARTITION is not set
# CONFIG_ATARI_PARTITION is not set
# CONFIG_MAC_PARTITION is not set
CONFIG_MSDOS_PARTITION=y
# CONFIG_BSD_DISKLABEL is not set
# CONFIG_MINIX_SUBPARTITION is not set
# CONFIG_SOLARIS_X86_PARTITION is not set
# CONFIG_UNIXWARE_DISKLABEL is not set
CONFIG_LDM_PARTITION=y
# CONFIG_LDM_DEBUG is not set
# CONFIG_SGI_PARTITION is not set
# CONFIG_ULTRIX_PARTITION is not set
# CONFIG_SUN_PARTITION is not set
# CONFIG_EFI_PARTITION is not set

#
# Native Language Support
#
CONFIG_NLS=y
CONFIG_NLS_DEFAULT="utf8"
CONFIG_NLS_CODEPAGE_437=y
# CONFIG_NLS_CODEPAGE_737 is not set
# CONFIG_NLS_CODEPAGE_775 is not set
# CONFIG_NLS_CODEPAGE_850 is not set
# CONFIG_NLS_CODEPAGE_852 is not set
# CONFIG_NLS_CODEPAGE_855 is not set
# CONFIG_NLS_CODEPAGE_857 is not set
# CONFIG_NLS_CODEPAGE_860 is not set
# CONFIG_NLS_CODEPAGE_861 is not set
# CONFIG_NLS_CODEPAGE_862 is not set
# CONFIG_NLS_CODEPAGE_863 is not set
# CONFIG_NLS_CODEPAGE_864 is not set
# CONFIG_NLS_CODEPAGE_865 is not set
CONFIG_NLS_CODEPAGE_866=y
# CONFIG_NLS_CODEPAGE_869 is not set
# CONFIG_NLS_CODEPAGE_936 is not set
# CONFIG_NLS_CODEPAGE_950 is not set
# CONFIG_NLS_CODEPAGE_932 is not set
# CONFIG_NLS_CODEPAGE_949 is not set
# CONFIG_NLS_CODEPAGE_874 is not set
# CONFIG_NLS_ISO8859_8 is not set
# CONFIG_NLS_CODEPAGE_1250 is not set
CONFIG_NLS_CODEPAGE_1251=y
# CONFIG_NLS_ASCII is not set
CONFIG_NLS_ISO8859_1=y
# CONFIG_NLS_ISO8859_2 is not set
# CONFIG_NLS_ISO8859_3 is not set
# CONFIG_NLS_ISO8859_4 is not set
# CONFIG_NLS_ISO8859_5 is not set
# CONFIG_NLS_ISO8859_6 is not set
# CONFIG_NLS_ISO8859_7 is not set
# CONFIG_NLS_ISO8859_9 is not set
# CONFIG_NLS_ISO8859_13 is not set
# CONFIG_NLS_ISO8859_14 is not set
# CONFIG_NLS_ISO8859_15 is not set
CONFIG_NLS_KOI8_R=y
CONFIG_NLS_KOI8_U=y
CONFIG_NLS_UTF8=y

#
# Instrumentation Support
#
# CONFIG_PROFILING is not set
# CONFIG_KPROBES is not set

#
# Kernel hacking
#
# CONFIG_PRINTK_TIME is not set
# CONFIG_DEBUG_KERNEL is not set
CONFIG_LOG_BUF_SHIFT=15

#
# Security options
#
# CONFIG_KEYS is not set
# CONFIG_SECURITY is not set

#
# Cryptographic options
#
CONFIG_CRYPTO=y
CONFIG_CRYPTO_HMAC=y
# CONFIG_CRYPTO_NULL is not set
# CONFIG_CRYPTO_MD4 is not set
CONFIG_CRYPTO_MD5=y
CONFIG_CRYPTO_SHA1=m
CONFIG_CRYPTO_SHA256=m
CONFIG_CRYPTO_SHA512=m
# CONFIG_CRYPTO_WP512 is not set
# CONFIG_CRYPTO_TGR192 is not set
CONFIG_CRYPTO_DES=y
CONFIG_CRYPTO_BLOWFISH=m
CONFIG_CRYPTO_TWOFISH=m
CONFIG_CRYPTO_SERPENT=m
# CONFIG_CRYPTO_AES_X86_64 is not set
CONFIG_CRYPTO_CAST5=m
CONFIG_CRYPTO_CAST6=m
CONFIG_CRYPTO_TEA=m
CONFIG_CRYPTO_ARC4=m
# CONFIG_CRYPTO_KHAZAD is not set
# CONFIG_CRYPTO_ANUBIS is not set
CONFIG_CRYPTO_DEFLATE=m
CONFIG_CRYPTO_MICHAEL_MIC=m
CONFIG_CRYPTO_CRC32C=m
# CONFIG_CRYPTO_TEST is not set

#
# Hardware crypto devices
#

#
# Library routines
#
CONFIG_CRC_CCITT=m
# CONFIG_CRC16 is not set
CONFIG_CRC32=y
CONFIG_LIBCRC32C=m
CONFIG_ZLIB_INFLATE=y
CONFIG_ZLIB_DEFLATE=m

-----------------------------------

---- make.conf --------------------

# These settings were set by the catalyst build script that automatically
built this stage
# Please consult /etc/make.conf.example for a more detailed example
CFLAGS="-march=k8 -O3 -fforce-addr -funit-at-a-time -fomit-frame-pointer
-frename-registers -fprefetch-loop-arrays -ftracer -funswitch-loops 
-ffast-math"
CHOST="x86_64-pc-linux-gnu"
CXXFLAGS="${CFLAGS}"
GENTOO_MIRRORS="http://gentoo.osuosl.org/"
ACCEPT_KEYWORDS="amd64"
MAKEOPTS="-j2"
LINGUAS="uk"
SYNC="rsync://rsync.uk.gentoo.org/gentoo-portage"
USE="3dfx 3dnow 3dnowext 7zip aac acpi amarok asf bash-completion cdparanoia
     cdr divx4linux djvu dvd dvdread fat fbdev fbsplash freetype fuse
     gimp glx gphoto2 iconv imlib2 input_devices_keyboard
     input_devices_mouse jabber javascript jpeg2k kdeenablefinal lame
     maps mjpeg mmx mp4live mpeg2 mplayer musicbrainz no_wxgtk1 nocd
     nomotif nomusic nopop3d nosendmail ntfs pdf rar reiserfs scaner scp
     sms sse sse2 stats tidy transcode type1 unicode utf8 v4l v4l2 vcd
     vfat video_cards_ati video_cards_fglrx video_cards_v4l
     video_cards_vesa video_cards_vga vidix vim vim-with-x win32codecs
     wma x86_64 xanim xinerama xosd zeroconf zip -alsa -fortran -gnome
     -gtk -imlib -ipv6"

------------------------------------------

--- grub.conf ---------------------------
title  GentooLinux 2.6.15
root (hd0,6)
kernel /boot/kernel-2.6.15-gentoo-r3 root=/dev/hda7
video=vesafb:ypan,1024x768-32@60

---------------------------------------------


-- 
Vitaly Kovalyshyn aka samael
ICQ: 169219607
e-mail: samael@ugcc.org.ua
Unix System Administrator
Ukrainian Greek-Catholic Church

~~~~~~~~~~~~~~~~~~~
Open Your mind - use OpenSource!
"Nothing else matters", - © Metallica
"Цели ясны, задачи определены, за работу,
товарищи", - ©

-- 
Vitaly Kovalyshyn aka samael
ICQ: 169219607
e-mail: samael@ugcc.org.ua
URL: http://www.ugcc.lviv.ua/
Unix System Administrator
Ukrainian Greek-Catholic Church

~~~~~~~~~~~~~~~~~~~
Open Your mind from closed Windows - use OpenSource!

UNIX is user-friendly; it's just picky about its friends!!!
UNIX is simple; it just takes a genius to understand its simplicity!!!

-- 
gentoo-admin@gentoo.org mailing list




-- 
gentoo-admin@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2006-02-14 13:20 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-11-07 17:49 [gentoo-admin] As can I disable arp reply geaaru
2005-11-07 18:25 ` Adolfo Castro Menna
2005-11-08 10:23   ` geaaru
2005-11-08  9:25     ` [gentoo-desktop] [gentoo-admin] Problem with configuring network via '/sbin/ifconfig' Vitaly Kovalyshyn
2005-11-08  9:25       ` Vitaly Kovalyshyn
2005-11-08 10:44       ` geaaru
2006-02-13  9:14       ` [gentoo-admin] [gentoo-desktop] Problem with Gentoo-2006.0 on AMD64 Athlon 3000+ Vitaly Kovalyshyn
2006-02-14 10:03       ` Vitaly Kovalyshyn
2006-02-14 13:18         ` Nerdvana - Steve Walsh
2005-11-08 12:34   ` Re: [gentoo-admin] As can I disable arp reply geaaru

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox