* Re: IBM HDAPS, I need a tip.
From: Dave Hansen @ 2005-08-01 13:38 UTC (permalink / raw)
To: Yani Ioannou
Cc: abonilla, Lee Revell, Linux Kernel Mailing List, hdaps devel,
Jan Engelhardt
In-Reply-To: <25381867050801010710af48d6@mail.gmail.com>
On Mon, 2005-08-01 at 04:07 -0400, Yani Ioannou wrote:
> Well don't forget there is a bios 'calibration' routine that you will
> see on start up (especially if you are on a moving vehicle/train).
I've never seen that. Could you please elaborate on what you see, and
when?
-- Dave
^ permalink raw reply
* Re: 2.6.12 stalls Andrew M. req this extended dmesg dump
From: jt @ 2005-08-01 13:35 UTC (permalink / raw)
To: Greg KH, linux-kernel
In-Reply-To: <20050731043710.GA18532@kroah.com>
Greg KH wrote:
>On Sat, Jul 30, 2005 at 12:52:38PM -0700, Andrew Morton wrote:
>
>
>>udev is doing stuff.
>>
>>
>>
>>> [ 40.691350] c16b1f40 00000082 c0115ff9 00000000 c1601530 bfd67d94 c1601530 00000000
>>> [ 40.691544] c1384e80 c1384520 00000000 0000122d 8cc9bc6a 00000008 c1601530 c1601020
>>> [ 40.695744] c1601144 00000000 00000246 c16010c8 00000004 fffffe00 c1601020 c0121343
>>> [ 40.699932] Call Trace:
>>> [ 40.708026] [<c0115ff9>] do_page_fault+0x1a9/0x57a
>>> [ 40.712230] [<c0121343>] do_wait+0x313/0x3a0
>>> [ 40.716403] [<c0119940>] default_wake_function+0x0/0x10
>>> [ 40.720663] [<c0119940>] default_wake_function+0x0/0x10
>>> [ 40.724858] [<c0121479>] sys_wait4+0x29/0x30
>>> [ 40.729039] [<c0103f99>] syscall_call+0x7/0xb
>>> [ 40.733255] udev S 00000000 0 1443 795 (NOTLB)
>>>
>>>
>>And it's sleeping for some reason.
>>
>>
>
>Yes, older versions of udev (< 058) can work _really slow_ with 2.6.12.
>Please upgrade your version of udev and see if that solves the issue or
>not.
>
>thanks,
>
>greg k-h
>
>
>
>
Interseting results.
I loaded udev 64
and hotplug ng 002
same delays about 111 seconds with udev
however newer hot plug cannot find on board network and
/etc/sysconfig/hotplug for both old and new hotplugs (0.45 is older on)
are the same, so
the problem must hotplug executable.
So let me know where you want me to go from here
^ permalink raw reply
* V tto you
From: Chidubem Cervantes @ 2005-08-01 13:33 UTC (permalink / raw)
To: Femie Early
[-- Attachment #1: Type: text/plain, Size: 894 bytes --]
Hello,
of a service I despise? Didn't ye tell me that I might redeem theso, he said softly.it. Being afterwards pressed by both Hagthorpe and Wolverstone, whowho sat with one leg thrown over the other in an attitude ofCome! he said.Ah, sangdieu! Tu ris, animal? You laugh! Tell me this: How dowarfare as on account of our strength. I have placed my ownwith bleeding lips. But his spirit was unquenched, and there washad joined the nations leagued to defend themselves from the wildBaynes and Pitt similarly admitted the accuracy of the Captain'shave happened to her.brisk and rasping, and the lips through which it passed were curvedThen he and his buccaneers removed themselves from the August andI desire, sir, that we be friends, said he suavely.They went, of course. For one thing the Spaniard had force to compelbroad black hat with a scarlet ostrich-plume, in his left hand an
[-- Attachment #2: Type: text/html, Size: 2410 bytes --]
^ permalink raw reply
* [linux-lvm] vgexport/vgimport fails
From: Richard Ray @ 2005-08-01 13:29 UTC (permalink / raw)
To: linux-lvm
I've run Fedora 2 for some time.
I have /dev/mapper/vg00-lvol0 460G 448G 12G 98% /src.
I installed Fedora 4 on a different partition.
In Fedora 2 I run
umount /src
vgchange -a n vg00
vgexport vg00
all run ok.
I reboot to Fedora 4.
I run
[~]$ pvscan -v
Wiping cache of LVM-capable devices
Wiping internal VG cache
Walking through all physical volumes
No matching physical volumes found
In /var/log/messages I see where the drives in the volume group are found.
Any suggestion?
Richard
^ permalink raw reply
* Re: [LARTC] Routing for multiple uplinks/providers problem.
From: John McMonagle @ 2005-08-01 13:32 UTC (permalink / raw)
To: lartc
In-Reply-To: <marc-lartc-104638816125616@msgid-missing>
Nelson
Not been having any problems with incoming DNAT
I'm using a bit different solution.
Noticed that the returning packets wanted to head for the correct
interface probably because of conntracking stuff. Problem was they would
be routed then the correct interface to whatever one was the default.
What I basically added rules that said if it's from an interfaces ip go
out that interface.
This is the setup for one of the isp interfaces:
IP="24.196.120.30"
NET="24.196.120.28"
LENGTH0
ROUTER="24.196.120.29"
BRD="24.196.120.31"
ip link set $IFACE up
ip addr flush dev $IFACE
ip addr add $IP/$LENGTH brd $BRD dev $IFACE
ip rule add prio 201 from $NET/$LENGTH table isp2
ip route add default via $ROUTER dev $IFACE src $IP proto static table isp2
ip route append prohibit default table isp2 metric 1 proto static
# call something to fixup default route
/etc/network/defroute
Doing some simular tricks to get ipsec vpn works outgoing from the
firewall.
IP="192.168.2.254"
NET="192.168.2.0"
LENGTH$
BRD="192.168.2.255"
ip link set $IFACE up
ip addr flush dev $IFACE
ip addr add $IP/$LENGTH brd $BRD dev $IFACE
#next is to make sure local 192.168. goes via eth0
ip rule delete prio 200 table 220
ip route del table 200
ip route add 192.168.0.0/16 via $IP dev $IFACE table 200
ip rule add prio 200 table 200
Nelson Castillo wrote:
>I think I said something wrong in my last message.
>You DNAT incoming packets and then SNAT them when
>they come back if your Linux router has some server behind it.
>I don't know if this is your case (having servers behind the router).
>
>(I needed to top-post here --- maybe not).
>
>On 7/28/05, Nelson Castillo <nelsoneci@gmail.com> wrote:
>
>
>>Hi John.
>>
>>On 7/28/05, John McMonagle <johnm@advocap.org> wrote:
>>
>>
>>
>>>Find that if I ping the same site from 2 computers it may work on one
>>>and fail on the other.
>>>Also was surprised that some time they are going out different
>>>interfaces at the same time.
>>>
>>>
>>Same symptoms I had.
>>
>>
>>
>>>Have snat on both interfaces
>>>
>>>
>>When you SNAT incoming packets, you need to do something different
>>from what is in the HOWTO ([4]) because SNAT is done before the
>>routing desition (check the Kernel Packet Traveling Diagram[5]).
>>
>>I had the same problem [1]. The solution is to use conntrack and mark
>>packets on arrival, and then route them back using the fwmark[2].
>>
>>There's no need to tell you I had a hard time with this. There should
>>be a warning about this in the HOWTO (in this page [4]).
>>
>> The proposed solution I quote in [2] worked for me for the
>> multiple uplink providers + SNAT problem.
>>
>> It is (Using the same variables that are in the HOWTO [4]):
>>
>> 1) Mark packages on arrival:
>>
>> iptables -t mangle -A PREROUTING -m conntrack --ctorigdst $IP1 -j
>>MARK --set-mark=1
>> iptables -t mangle -A PREROUTING -m conntrack --ctorigdst $IP2 -j
>>MARK --set-mark=2
>>
>> And then use the mark to route the outgoing packages correctly.
>>
>> ip rule add fwmark 1 table T1
>> ip rule add fwmark 2 table T2
>>
>>Regards,
>>Nelson.-
>>
>>PD : I solved my problem with IPVS and multiple uplink providers (see [3]).
>>
>>[1] http://mailman.ds9a.nl/pipermail/lartc/2005q2/016171.html
>>[2] http://mailman.ds9a.nl/pipermail/lartc/2005q2/016441.html
>>[3] http://arhuaco.blogspot.com/2005/07/ipvs-and-conntrack.html
>>[4] http://lartc.org/howto/lartc.rpdb.multiple-links.html
>>[5] http://www.docum.org/docum.org/kptd/
>>
>>--
>>Homepage : http://geocities.com/arhuaco
>>
>>The first principle is that you must not fool yourself
>>and you are the easiest person to fool.
>> -- Richard Feynman.
>>
>>
_______________________________________________
LARTC mailing list
LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc
^ permalink raw reply
* [ANNOUNCE] mtkdiff-20050801 (with patchkdiff, quiltkdiff, gitkdiff and modified gitk)
From: Tejun Heo @ 2005-08-01 13:28 UTC (permalink / raw)
To: git, lkml, snemana, paulus, rdunlap, mingo
Hello, guys.
New version of mtkdiff package is available. Changes since last release
(20050514) are.
* patchkdiff added. Idea is from patchview of Randy Dunlap (Hi!).
patchkdiff can show multiple diff files.
* quiltkdiff rewritten in perl. It's faster and doesn't push/pop quilt
repository. Patches are rolled back and applied in a temporary
working directory.
* gitkdiff rewritten in perl. It now works with the new git diff
output format and a bit faster. Also, this version can show
multiple commits. For example, you can do the following.
$ git-rev-list HEAD ^OLD_HEAD | gitkdiff -c -r
* modified gitk-1.2.
For more information...
http://home-tj.org/mtkdiff
Tarball is available at
http://home-tj.org/mtkdiff/files/mtkdiff-20050801.tar.gz
Thanks.
--
tejun
^ permalink raw reply
* [U-Boot-Users] MPC852T ethernet
From: tony.ford at quadrics.com @ 2005-08-01 13:28 UTC (permalink / raw)
To: u-boot
Hi,
I know u-boot is not an OS and is not intended to implement all the
functionality you might expect of one.
Sorry, I should have been more clear in what I was trying to do.
Given that u-boot can handle ethernet comms. I was looking at how I could
enable telnet as an alternative to a serial connection.
We're using a ppc based embedded controller in a network management
capacity where there is already ethernet but no serial. It's not clear
at the moment whether we'll boot linux or run a standalone application
to perform management functions.
The first step would seem to be to respond to interrupts on receipt
of an ethernet packet. It was this first step I was asking for feedback
on.
Best regards,
Tony.
> -----Original Message-----
> From: Wolfgang Denk [mailto:wd at denx.de]
> Sent: 01 August 2005 13:44
> To: Tony Ford
> Cc: u-boot-users at lists.sourceforge.net
> Subject: Re: [U-Boot-Users] MPC852T ethernet
>
>
> In message
> <30062B7EA51A9045B9F605FAAC1B4F628EAA71@exch01.quadrics.com>
> you wrote:
> >
> > I can ping and tftp from the platform but cannot ping or
> telnet to it.
>
> Are you talking about U-0Boot or Linux here?
>
> If you mean U-Boot, then you should understand that incoming pings
> are unsupported by U-Boot, and telnet like all other TCP/IP based
> services are unimplemented, too.
>
> If you talk about Linux, then you're off topic here.
>
> > I suppose that I'm missing some configuration but can't see what.
>
> What exactly makes you think this should work? Having a closer look
> you will also find out that U-Boot does not reply to ssh requests nor
> does it work as a web server. Java support is pretty poor, too. Doom
> isn't runnin either.
>
> > Any pointers would be appreciated.
>
> Don't expoect too much. This is a boot loader, not an OS.
>
> Best regards,
>
> Wolfgang Denk
>
> --
> Software Engineering: Embedded and Realtime Systems, Embedded Linux
> Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
> The C-shell doesn't parse. It adhoculates.
> - Casper.Dik at Holland.Sun.COM in <3ol96k$b2j@engnews2.Eng.Sun.COM>
>
^ permalink raw reply
* [ALSA - driver 0001297]: driver can't initialise card
From: bugtrack @ 2005-08-01 13:24 UTC (permalink / raw)
To: alsa-devel
The following issue has been ASSIGNED.
======================================================================
<https://bugtrack.alsa-project.org/alsa-bug/view.php?id=1297>
======================================================================
Reported By: hus
Assigned To: jcdutton
======================================================================
Project: ALSA - driver
Issue ID: 1297
Category: PCI - emu10k1
Reproducibility: always
Severity: major
Priority: normal
Status: assigned
Distribution: Fedora Core 4 (mostly)
Kernel Version: 2.6.12
======================================================================
Date Submitted: 08-01-2005 14:27 CEST
Last Modified: 08-01-2005 15:24 CEST
======================================================================
Summary: driver can't initialise card
Description:
My card is a somewhat older SB Live! (says "SB Live! Platinum 5.1" on the
box).
The snd-emu10k1 module refuses to work for this card; the kernel logs:
ACPI: PCI Interrupt 0000:02:05.0[A] -> GSI 17 (level, low) -> IRQ 17
ALSA sound/pci/emu10k1/emu10k1_main.c:742: vendor=0x1102, device=0x2,
subsystem_vendor_id=0x80611102, subsystem_id=0x8061
ALSA sound/pci/emu10k1/emu10k1_main.c:760: Soundcard name=SB Live
[Unknown],
vendor=0x1102, device=0x2, subsystem=0x80611102
ALSA sound/pci/ac97/ac97_codec.c:1888: AC'97 0 does not respond - RESET
ALSA sound/pci/ac97/ac97_codec.c:1897: AC'97 0 access is not valid [0x0],
removing mixer.
EMU10K1_Audigy: probe of 0000:02:05.0 failed with error -5
lspci shows
02:05.0 Multimedia audio controller: Creative Labs SB Live! EMU10k1 (rev
07)
Subsystem: Creative Labs SBLive! Player 5.1
Flags: bus master, medium devsel, latency 64, IRQ 17
I/O ports at 30c0 [size=32]
Capabilities: [dc] Power Management version 1
(-n: Class 0401: 1102:0002 (rev 07) Subsystem: 1102:8061)
The only deviation from the ordinary I can think of is that my system is
dual CPU, a Tyan Tiger MPX (S2466), and has it's PCI slots (iirc) behind a
PCI-to-PCI bridge. That's one thing our systems might have in common, as
your message shows the card on bus 03. Perhaps this is some strange kind
of routing problem?
======================================================================
Issue History
Date Modified Username Field Change
======================================================================
08-01-05 14:27 hus New Issue
08-01-05 14:27 hus Distribution => Fedora Core 4
(mostly)
08-01-05 14:27 hus Kernel Version => 2.6.12
08-01-05 14:28 hus Issue Monitored: hus
08-01-05 15:24 jcdutton Status new => assigned
08-01-05 15:24 jcdutton Assigned To => jcdutton
======================================================================
-------------------------------------------------------
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
^ permalink raw reply
* Re: [linux-lvm] How to recover data corrupted by vgcreate
From: 張廷州 @ 2005-08-01 13:25 UTC (permalink / raw)
To: linux-lvm
[-- Attachment #1: Type: text/plain, Size: 2131 bytes --]
Hi,
There is no backup information available in /etc/lvm/archive to restore VG to original configuration.
Unfortunately the root directory is also in LVM partition.
So, "vgcfgrestore" did not solve the problem.
I also tried to create new LV by "lvcreate" to match with the existing LV.
The problem is I have no idea about the size of old LV.
I just gave a random size in "lvcreate" command.
But, I could not mount the file system because of bad superblock.
I don't know what I missed. Maybe the size is critical to do the matching.
Is there any reverse procedure I can do to recover VG by the existing LV information?
It may just like to recover partition table by scanning cylinder data in hard disk.
Any idea? Thanks a lot.
Davis
> >On Wed, Jul 27, 2005 at 11:33:05AM -0500, Jonathan E Brassow wrote:
> >>I'm not familiar exactly with how the metadata gets laid on disk, but
> >>I would think you could just 'vgcreate vg_name /dev/hdd2' (you did
> >>this
> >>already) then 'lvcreate -n <lvname> -l <max size> vg_name'... This of
> >>course assumes that the previous lv resided wholly on /dev/hdd2. Then
> >>try mounting the new lv and see what happens.
> >
> >Before you do that, try vgcfgrestore.
> >
>
> AJ, when he did the initial 'vgcreate' was part of the process to
> create a backup copy of the metadata? If so, vgcfgrestore could work.
> But otherwise, I'm not sure were the old metadata would be stored,
> since this disk is from a different machine... Seems odd to me that
> vgcreate would blow over the old vg if it knew about it. If it did not
> know (or detect the old vg), how would it know to backup the metadata?
Not sure, but if the reason the disk was moved was because a cpu went out, i'm
assuming the old root fs is also on that disk - hoping so anyway ;) If so,
the old root fs can be mounted and /etc/lvm/archive can be checked for a valid
copy of the metadata. (Assuming root wasn't on lvm...)
As to why vgcreate didn't recognize the old VG...that's very odd - not sure
what went wrong there...
[-- Attachment #2: Type: text/html, Size: 3395 bytes --]
^ permalink raw reply
* Re: request_8xxirq
From: Tiago Dall'Agnol @ 2005-08-01 13:25 UTC (permalink / raw)
To: Alex Zeffertt; +Cc: linuxppc-embedded
In-Reply-To: <20050801140407.5b6e4d36.ajz@cambridgebroadband.com>
Hi Alex
All right. But where are request_8xxirq? That's my doubt.
Thank you,
Tiago
Alex Zeffertt wrote:
>On Fri, 29 Jul 2005 14:01:21 -0300
>"Tiago Dall'Agnol" <tdallagnol@parks.com.br> wrote:
>
>
>>But this code doesn't help to find request_8xxirq. It just do the
>>opposite. This code defines request_irq to be request_8xxirq when
>>CONFIG_8xx is defined. But where is located the implementation of
>>request_8xxirq?
>>
>>
>>
>
>See the code snippet in my last email. The C preprocessor replaces 'int request_irq(...' with 'int
>request_8xxirq(...' prior to compilation.
>
>
>
>
>>Alex Zeffertt wrote:
>>
>>
>>
>>>Maybe you're using a really old kernel. In linux-2.4.4 it's in
>>>arch/ppc/kernel/irq.c:
>>>
>>>-- snip --
>>>#if (defined(CONFIG_8xx) || defined(CONFIG_8260))
>>>/* Name change so we can catch standard drivers that potentially mess up
>>>* the internal interrupt controller on 8xx and 8260. Just bear with me,
>>>* I don't like this either and I am searching a better solution. For
>>>* now, this is what I need. -- Dan
>>>*/
>>>#define request_irq request_8xxirq
>>>
>>>...
>>>...
>>>...
>>>
>>>int request_irq(unsigned int irq, void (*handler)(int, void *, struct pt_regs *),
>>> unsigned long irqflags, const char * devname, void *dev_id)
>>>{
>>>--/snip --
>>>
>>>
>>>I don't know why it was done like this....
>>>
>>>Alex
>>>
>>>
>>>On Fri, 29 Jul 2005 10:52:33 -0300
>>>"Tiago Dall'Agnol" <tdallagnol@parks.com.br> wrote:
>>>
>>>
>>>
>>>
>>>
>>>>Thank you Alex.
>>>>
>>>>But in my linux, this is different.
>>>>What I have in that file is just
>>>>
>>>>extern int request_8xxirq(unsigned int irq,
>>>> void (*handler)(int, void *, struct pt_regs *),
>>>> unsigned long flags,
>>>> const char *device,
>>>> void *dev_id);
>>>>
>>>>And the request_8xxirq is declared as a
>>>>
>>>>EXPORT_SYMBOL(request_8xxirq);
>>>>
>>>>in arch/ppc/kernel/ppc_ksyms.c.
>>>>
>>>>I already tried to find out where the code that implements the function
>>>>is located, but it seems that it doesn't exist in my distribuction.
>>>>Maybe is it a "binary version"?
>>>>
>>>>Any other information will be apreciated ;-)
>>>>
>>>>Best Regards,
>>>>Tiago
>>>>
>>>>Alex Zeffertt wrote:
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>>In linux-2.4 it's in
>>>>>
>>>>> include/asm-ppc/mpc8xx.h
>>>>>
>>>>>-- snip --
>>>>>#define request_8xxirq request_irq
>>>>>--/snip --
>>>>>
>>>>>And request_irq is in arch/ppc/kernel/irq.c
>>>>>
>>>>>Alex
>>>>>
>>>>>On Fri, 29 Jul 2005 10:07:58 -0300
>>>>>"Tiago Dall'Agnol" <tdallagnol@parks.com.br> wrote:
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>>Hi,
>>>>>>
>>>>>>I had some problems with irq in my embedded system. I'm interested in
>>>>>>this function source code, but I didn't find it in my linux distribuction?
>>>>>>
>>>>>>Does anyone know where I can find it?
>>>>>>
>>>>>>Thanks a lot
>>>>>>Tiago
>>>>>>
>>>>>>Manish Joshi wrote:
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>>Hi,
>>>>>>>
>>>>>>>I am working on an old code which uses request_8xxirq() call which I
>>>>>>>can't find in latest kernel.
>>>>>>>Has this been replaced by something else ?
>>>>>>>
>>>>>>>I see the references on net about replacing request_8xxirq() with
>>>>>>>request_irq(). Can I do it ?
>>>>>>>
>>>>>>>TIA,
>>>>>>>Manish
>>>>>>>
>>>>>>>
>>>>>>>------------------------------------------------------------------------
>>>>>>>Start your day with Yahoo! - make it your home page
>>>>>>><http://us.rd.yahoo.com/evt=34442/*http://www.yahoo.com/r/hs>
>>>>>>>
>>>>>>>------------------------------------------------------------------------
>>>>>>>
>>>>>>>_______________________________________________
>>>>>>>Linuxppc-embedded mailing list
>>>>>>>Linuxppc-embedded@ozlabs.org
>>>>>>>https://ozlabs.org/mailman/listinfo/linuxppc-embedded
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>--
>>>>>>Tiago Dall'Agnol
>>>>>>Pesquisa e Desenvolvimento
>>>>>>Tel.: +55.51.470.05.64
>>>>>>Fax.: +55.51.470.05.70
>>>>>>e-mail: tdallagnol@parks.com.br
>>>>>>www.parks.com.br
>>>>>>
>>>>>>_______________________________________________
>>>>>>Linuxppc-embedded mailing list
>>>>>>Linuxppc-embedded@ozlabs.org
>>>>>>https://ozlabs.org/mailman/listinfo/linuxppc-embedded
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>--
>>>>
>>>>
>>>>
>>>>
>>>
>>>
>>>
>>>
>>--
>>Tiago Dall'Agnol
>>Pesquisa e Desenvolvimento
>>Tel.: +55.51.470.05.64
>>Fax.: +55.51.470.05.70
>>e-mail: tdallagnol@parks.com.br
>>www.parks.com.br
>>
>>
>
>
>
^ permalink raw reply
* Re: Git 1.0 Synopis (Draft v3
From: Horst von Brand @ 2005-08-01 13:21 UTC (permalink / raw)
To: Horst von Brand; +Cc: Ryan Anderson, git
In-Reply-To: <200507312215.j6VMFeqn030963@laptop11.inf.utfsm.cl>
[Yes, I know it is considered odd when you speak to yourself in public...]
Horst von Brand <vonbrand@inf.utfsm.cl> wrote:
> Ryan Anderson <ryan@michonline.com> wrote:
> > Source Code Management with Git
> More bugging...
And then some.
> > To get the 'Porcelain' tools mentioned above:
> > SCM Interface layers:
> > cogito - http://www.kernel.org/pub/software/scm/cogito/
> > StGIT - http://www.procode.org/stgit/
>
> At least cogito includes a (slightly old) version of git. Dunno about
> StGIT. And git and cogito have a gitk inside too. This should be mentioned,
> i.e., look at the package(s) you are interested and see what else they
> carry or require and keep in mind that (for now?) getting git as part of
> one package is /not/ guaranteed to be compatible with another or standard
> git.
Also note that StGIT is /not/ a SCM (as cogito is), it is a tool to shuffle
patches that uses git as a backend/target.
--
Dr. Horst H. von Brand User #22616 counter.li.org
Departamento de Informatica Fono: +56 32 654431
Universidad Tecnica Federico Santa Maria +56 32 654239
Casilla 110-V, Valparaiso, Chile Fax: +56 32 797513
^ permalink raw reply
* Re: mtd-20040610
From: Josh Boyer @ 2005-08-01 13:20 UTC (permalink / raw)
To: Soma sundaram Veerappan; +Cc: linux-mtd
In-Reply-To: <20050801130553.31554.qmail@web8508.mail.in.yahoo.com>
On Mon, 2005-08-01 at 14:05 +0100, Soma sundaram Veerappan wrote:
> Hi,
>
> I am working with linux-2.4.18-rmk7 for arm and i need
> mtd-20040610.I am not finding this patch on net and
> infrared.org ftp site.can someone please give some
> pointers where can i find this patch.
Please read:
http://linux-mtd.infradead.org/source.html#kernelversions
It tells you in there how to extract a certain snapshot from CVS.
josh
^ permalink raw reply
* Increase Your Performance
From: Eduardo Oliver @ 2005-08-01 13:19 UTC (permalink / raw)
To: morocco, princess1469, nikita, romp, gange, bompane, gagne, kaser,
koczera, heacock, jmacd, gryniuk, reynoza, sales, hornsby, vitaly,
reiserfs-list
Generic Cialis Soft Tabs is the new impotence treatment
drug that everyone is talking about.
It has benefits over Viagra and other ED treatment
solutions.
- Can mix with alcohol with no side effects
- Will not make you dizzy or blur your vision
- Works in 15 min compared to 75 min for Viagra
- Lasts 36 hours compared to 2 hours for Viagra
View it Here: http://commodious.net/cs/?bonsay
To Stop: http://commodious.net/rm.php?bonsay
^ permalink raw reply
* 2.6VMM, uClinux, & Comedi
From: NZG @ 2005-08-01 13:17 UTC (permalink / raw)
To: comedi; +Cc: linux-kernel
I managed to successfully cross-compile Comedi for the Coldfire uClinux 2.6,
however it has several unresolved symbols when I try to load it.
comedi: Unknown symbol pgd_offset_k
comedi: Unknown symbol pmd_none
comedi: Unknown symbol remap_page_range
comedi: Unknown symbol pte_present
comedi: Unknown symbol pte_offset_kernel
comedi: Unknown symbol VMALLOC_VMADDR
comedi: Unknown symbol pte_page
Apparently uClinux isn't implementing these paged memory functions,which
kind of makes sense, but I'm a little fuzzy on what the nommu code is
supposed to be doing exactly, and I couldn't find any documentation on what
these functions are doing in the vanilla 2.6 kernel.
Has anyone else been down this road before?
I found Mel Gorman's Thesis on the 2.4 mm functions, but I couldn't find most
of these symbols in it.
It's looking like the 2.6 mm stuff is still pretty undocumented, any links to
documentation (or short text explanations)would be appreciated.
thx.
NZG.
^ permalink raw reply
* Re: autofs-4.1.4/samples/rc.autofs.in bad use of grep \B
From: Jeff Moyer @ 2005-08-01 13:17 UTC (permalink / raw)
To: David Johnson; +Cc: autofs
In-Reply-To: <17127.59627.203496.547988@fig.ICSI.Berkeley.EDU>
==> Regarding [autofs] autofs-4.1.4/samples/rc.autofs.in bad use of grep \B; David Johnson <davidj@ICSI.Berkeley.EDU> adds:
davidj> autofs-4.1.4/samples/rc.autofs.in uses \B incorrectly in grep
davidj> commands. \B actually means "not edge of word", but the script
davidj> uses it to mean "beginning of word". Fortunately, due to the
davidj> script writer assuming "-" is part of a word, but this not being
davidj> the case when LANG==C, it works under most common circumstances
davidj> (but breaks with e.g. --no--verbose in /etc/sysconfig/autofs).
davidj> However, it may cease to work if more command-line args get added
davidj> to automount.
davidj> I've posted a tested patch against RHEL3 in bugzilla.redhat.com for
davidj> Fedora Devel. I've also forward-ported the patch to autofs-4.1.4
davidj> and included it here. Note that although this is very similar to
davidj> the RHEL3 patch and may well work, unfortunately I have no
davidj> reasonable way of testing it.
Why don't you have a reasonable way of testing it? It doesn't work
entirely correctly, by the way:
--- rc.autofs.in.sav 2005-04-11 04:30:54.000000000 -0700
+++ rc.autofs.in 2005-07-27 12:48:33.000000000 -0700
@@ -248,11 +248,13 @@
# those particular options out.
: echo DAEMONOPTIONS OPTIONS $daemonoptions $options
startupoptions=
- if echo "$options" | grep -qE -- '\B-(t\b|-timeout\b=)' ;
+ if echo " $options " | \
+ grep -qE -- '[[:space:]]-(t[[:space:][:digit:]]|-timeout=)';
then
startupoptions="--timeout=$(echo $options |\
sed 's/.*-\(t[^0-9]*\|-timeout\)[ \t=]*\([0-9][0-9]*\).*$/\2/g')"
- elif echo "$daemonoptions" | grep -q -- '-t' ;
+ elif echo " $daemonoptions " | \
+ grep -qE -- '[[:space:]]-(t[[:space:][:digit:]]|-timeout=)' ;
then
# It's okay to be sloppy with DAEMONOPTIONS as there is no
# possibility of conflicting with mount or map options.
If --timeout=60 is the first thing that appears in DAEMONOPTIONS, there
will be no space before it, so the grep will fail. It's easy to test.
-Jeff
^ permalink raw reply
* Re: [PATCH linux-2.6-block:master] block: fix cfq_find_next_crq
From: Jens Axboe @ 2005-08-01 13:17 UTC (permalink / raw)
To: Tejun Heo; +Cc: linux-kernel
In-Reply-To: <20050726132706.GC23916@htj.dyndns.org>
On Tue, Jul 26 2005, Tejun Heo wrote:
> Hi,
>
> In cfq_find_next_crq(), when determining rbnext, if
> rb_next(&last->rb_node) is NULL, rb_first() is used without checking
> if it equals last. If it equals last, rbnext should be NULL not last.
> This bug is masked by duplicate calls to cfq_find_next_crq which ends
> up clearing cfqq->next_crq as, on the second call, last isn't on rb
> tree.
>
> This patch fixes cfq_find_next_crq() and removes extra calls to
> cfq_update_next_crq().
Thanks, looks good!
--
Jens Axboe
^ permalink raw reply
* [ALSA - driver 0001298]: Creative Labs Sound Blaster Live! 24-bit not detected
From: bugtrack @ 2005-08-01 13:15 UTC (permalink / raw)
To: alsa-devel
The following issue has been SUBMITTED.
======================================================================
<https://bugtrack.alsa-project.org/alsa-bug/view.php?id=1298>
======================================================================
Reported By: andrewvegan
Assigned To: jcdutton
======================================================================
Project: ALSA - driver
Issue ID: 1298
Category: PCI - ca0106
Reproducibility: always
Severity: major
Priority: normal
Status: assigned
Distribution: Fedora Core 4
Kernel Version: 2.6.11-1.1369_FC4smp
======================================================================
Date Submitted: 08-01-2005 15:15 CEST
Last Modified: 08-01-2005 15:15 CEST
======================================================================
Summary: Creative Labs Sound Blaster Live! 24-bit not
detected
Description:
Unable to get the sound card detected in Fedora Core 4. PC is a Shuttle XPC
SD31P which has an onboard "Creative Labs Sound Blaster Live! 24-bit EAX
high-definition 7.1 audio processor".
from dmesg:
AC'97 0 does not respond - RESET
AC'97 0 access is not valid [0x0], removing mixer.
CA0106: probe of 0000:03:0b.0 failed with error -5
When I run lspci it lists a different card (Creative Labs SB Audigy LS):
[root@localhost ~]# lspci
00:00.0 Host bridge: Intel Corporation Memory Controller Hub (rev 02)
00:01.0 PCI bridge: Intel Corporation PCI Express Graphics Port (rev 02)
00:1c.0 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express
Port 1 (rev 01)
00:1d.0 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI
https://bugtrack.alsa-project.org/alsa-bug/view.php?id=1 (rev 01)
00:1d.1 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI
https://bugtrack.alsa-project.org/alsa-bug/view.php?id=2 (rev 01)
00:1d.2 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI
https://bugtrack.alsa-project.org/alsa-bug/view.php?id=3 (rev 01)
00:1d.3 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI
https://bugtrack.alsa-project.org/alsa-bug/view.php?id=4 (rev 01)
00:1d.7 USB Controller: Intel Corporation 82801G (ICH7 Family) USB2 EHCI
Controller (rev 01)
00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev e1)
00:1f.0 ISA bridge: Intel Corporation 82801GB/GR (ICH7 Family) LPC
Interface Bridge (rev 01)
00:1f.1 IDE interface: Intel Corporation 82801G (ICH7 Family) IDE
Controller (rev 01)
00:1f.2 IDE interface: Intel Corporation 82801GB/GR/GH (ICH7 Family)
Serial ATA Storage Controllers cc=IDE (rev 01)
00:1f.3 SMBus: Intel Corporation 82801G (ICH7 Family) SMBus Controller
(rev 01)
01:00.0 VGA compatible controller: nVidia Corporation NV43 [GeForce
6600] (rev a2)
02:00.0 Ethernet controller: Broadcom Corporation NetLink BCM5789
Gigabit Ethernet PCI Express (rev 11)
03:0a.0 FireWire (IEEE 1394): VIA Technologies, Inc. IEEE 1394 Host
Controller (rev 80)
03:0b.0 Multimedia audio controller: Creative Labs SB Audigy LS
======================================================================
Issue History
Date Modified Username Field Change
======================================================================
08-01-05 15:15 andrewvegan New Issue
08-01-05 15:15 andrewvegan Distribution => Fedora Core 4
08-01-05 15:15 andrewvegan Kernel Version => 2.6.11-1.1369_FC4smp
======================================================================
-------------------------------------------------------
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
^ permalink raw reply
* Re: [PATCH linux-2.6-block:master] block: fix try_module_get race in elevator_find
From: Jens Axboe @ 2005-08-01 13:17 UTC (permalink / raw)
To: Tejun Heo; +Cc: linux-kernel
In-Reply-To: <20050726131928.GB23916@htj.dyndns.org>
On Tue, Jul 26 2005, Tejun Heo wrote:
> Hello, Jens.
>
> This patch removes try_module_get race in elevator_find.
> try_module_get should always be called with the spinlock protecting
> what the module init/cleanup routines register/unregister to held. In
> the case of elevators, we should be holding elv_list to avoid it going
> away between spin_unlock_irq and try_module_get.
>
> This currently doesn't cause any problem as elevators are never
> unloaded, but the fix is simple and it's always nice to be correct.
Looks good. Elevators _are_ unloaded, right now you just can't unload as
and cfq because they use io contexts. But that will happen in the future
as well.
--
Jens Axboe
^ permalink raw reply
* mtd-20040610
From: Soma sundaram Veerappan @ 2005-08-01 13:05 UTC (permalink / raw)
To: linux-mtd
Hi,
I am working with linux-2.4.18-rmk7 for arm and i need
mtd-20040610.I am not finding this patch on net and
infrared.org ftp site.can someone please give some
pointers where can i find this patch.
Regards,
Soma sundaram.V
_______________________________________________________
Too much spam in your inbox? Yahoo! Mail gives you the best spam protection for FREE! http://in.mail.yahoo.com
^ permalink raw reply
* 2.6.13rc4 hang
From: Stephen Clark @ 2005-08-01 13:11 UTC (permalink / raw)
To: linux-kernel
In-Reply-To: <42EBA31F.9080703@earthlink.net>
Hello List,
I am having a problem 2.6.13rc4 described below on a HP Pavilion N5430
laptop.
1) If I cold boot with only 'lacpi' to run level 3 - shortly after I get
the login prompt the laptop freezes.
2) If I cold boot with 'lacpi acpi=off pci=noacpi,usepirqmask' the
system boots and does not freeze but when I try to play sound I get no
interrupts from my sound card.
3) If I now warm boot from step 2 with only 'lacpi' my laptop seems to
be stable and I have sound.
I did this several times to try and really verify the above scenarios.
Diff between dmesg output from step 1 and step 3
$ diff dmesg104550 dmesg105029
43,45c43,44
< CPU: After generic identify, caps: 0183f9ff c1c7f9ff 00000000 00000000
00000000 00000000 00000000
< CPU: After vendor identify, caps: 0183f9ff c1c7f9ff 00000000 00000000
00000000 00000000 00000000
< Enabling disabled K7/SSE Support.
---
> CPU: After generic identify, caps: 0383f9ff c1c7f9ff 00000000
00000000 00000000 00000000 00000000
> CPU: After vendor identify, caps: 0383f9ff c1c7f9ff 00000000 00000000
00000000 00000000 00000000
55c54
< ACPI: setting ELCR to 0200 (from 0800)
---
> ACPI: setting ELCR to 0200 (from 0820)
92c91
< audit(1122734733.300:1): initialized
---
> audit(1122735011.179:1): initialized
161c160
< Detected 849.810 MHz processor.
---
> Detected 850.192 MHz processor.
163c162
< powernow: Minimum speed 299 MHz. Maximum speed 849 MHz.
---
> powernow: Minimum speed 300 MHz. Maximum speed 850 MHz.
What is the best way to debug a hang? I there a way to turn on verbose
debugging at boot? Also why would
the hardware capabilities be different between a cold boot and a warm boot?
Thanks for any advice,
Steve
^ permalink raw reply
* Job.
From: Juliana R. @ 2005-08-02 4:15 UTC (permalink / raw)
To: Linux
Hello,
We are Russian marriage agency.
We need cooperation with you.
You can earn some cash for the small help in one matter.
Please contact us only by this e-mail for more details: INFO@ROYALWIFES.COM
Thanks,
Juliana Ramazanova.
Manager.
^ permalink raw reply
* Re: IBM HDAPS, I need a tip.
From: Vojtech Pavlik @ 2005-08-01 13:09 UTC (permalink / raw)
To: linux-os (Dick Johnson)
Cc: Paulo Marques, Jan Engelhardt, Lee Revell, abonilla, linux-kernel,
hdaps devel, Yani Ioannou, Dave Hansen
In-Reply-To: <Pine.LNX.4.61.0508010836020.30161@chaos.analogic.com>
On Mon, Aug 01, 2005 at 08:55:53AM -0400, linux-os (Dick Johnson) wrote:
> > Jan Engelhardt wrote:
> >>> So in order to calibrate it you need a readily available source of
> >>> constant acceleration, preferably with a known value.
> >>>
> >>> Hint: -9.8 m/sec^2.
> >>
> >> Drop it out of the window? :)
> >
> > No, no. Constant gravity (like having the laptop sitting on the desk)
> > "feels like" constant acceleration.
> >
> > Dropping it out of the window should measure 0 m/sec^2, because the
> > accelerometer is not working on an inertial referential (I hope this is
> > the correct term in english...). For the accelerometer, this is just
> > like the feeling of free falling inside an elevator: no gravity :)
> >
> > --
> > Paulo Marques - www.grupopie.com
>
> You need a centrifuge or something that works like one. You can
> make one and you can calibrate it using simple techniques.
Not at all. It's enough to let the laptop lie on the table for [0,0]G
calibration, then put sequentially it on all the four sides for [-1,0]G,
[1,0]G, [0,1]G, [0,-1]G calibration.
>From these five measurements you have both the zero point and the
slopes, including a good error estimate.
I've done that before when toying with IMUs.
--
Vojtech Pavlik
SuSE Labs, SuSE CR
^ permalink raw reply
* System freeze on USB plugin BKi810 Kernel 2.6
From: Joseph M. Hinkle @ 2005-08-01 13:04 UTC (permalink / raw)
To: linux-kernel
[-- Attachment #1: Type: text/plain, Size: 1047 bytes --]
CC responses to dunsalen@yahoo.com
As far back as I can remember with Kernel 2.6 on a
BookPC (BKi810) the kernel will lock up solid when a
USB device is inserted. The curious thing is if the
device is already plugged in when booted up, it will
work normally.
The only recovery is by turning power off.
The last test was with kernel 2.6.12
0000:00:1f.2 USB Controller: Intel Corporation 82801AB
USB (rev 01) (prog-if 00 [UHCI])
Flags: bus master, medium devsel, latency 0, IRQ 10
I/O ports at d000 [size=32]
Only the UHCI device was selected in kernel
configuration.
There are no messages revealing any trouble, either in
the logs nor with dmesg. I tried sprinkling kernel
messages around the code but that was ineffective in
localizing the problem to any specific region.
I have attached system information such as lspci
output, the kernel configuration, and /proc/cpuinfo
__________________________________
Yahoo! Mail for Mobile
Take Yahoo! Mail with you! Check email on your mobile phone.
http://mobile.yahoo.com/learn/mail
[-- Attachment #2: 1216054307-attach --]
[-- Type: application/octet-stream, Size: 29059 bytes --]
0000:00:1f.2 USB Controller: Intel Corporation 82801AB USB (rev 01) (prog-if 00 [UHCI])
Flags: bus master, medium devsel, latency 0, IRQ 10
I/O ports at d000 [size=32]
The whole lspci output:
0000:00:00.0 Host bridge: Intel Corporation 82810 GMCH [Graphics Memory Controller Hub] (rev 02)
0000:00:01.0 VGA compatible controller: Intel Corporation 82810 CGC [Chipset Graphics Controller] (rev 02)
0000:00:1e.0 PCI bridge: Intel Corporation 82801AB PCI Bridge (rev 01)
0000:00:1f.0 ISA bridge: Intel Corporation 82801AB ISA Bridge (LPC) (rev 01)
0000:00:1f.1 IDE interface: Intel Corporation 82801AB IDE (rev 01)
0000:00:1f.2 USB Controller: Intel Corporation 82801AB USB (rev 01)
0000:01:04.0 Ethernet controller: Davicom Semiconductor, Inc. 21x4x DEC-Tulip compatible 10/100 Ethernet (rev 10)
0000:01:05.0 Multimedia audio controller: C-Media Electronics Inc CM8738 (rev 10)
0000:01:05.1 Communication controller: C-Media Electronics Inc CM8738 (rev 10)
#
# Automatically generated make config: don't edit
# Linux kernel version: 2.6.12-gentoo-r6
# Mon Aug 1 02:50:39 2005
#
CONFIG_X86=y
CONFIG_MMU=y
CONFIG_UID16=y
CONFIG_GENERIC_ISA_DMA=y
CONFIG_GENERIC_IOMAP=y
#
# Code maturity level options
#
CONFIG_EXPERIMENTAL=y
CONFIG_CLEAN_COMPILE=y
CONFIG_BROKEN_ON_SMP=y
CONFIG_LOCK_KERNEL=y
CONFIG_INIT_ENV_ARG_LIMIT=32
#
# General setup
#
CONFIG_LOCALVERSION=""
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
CONFIG_POSIX_MQUEUE=y
# 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_EMBEDDED is not set
CONFIG_KALLSYMS=y
# CONFIG_KALLSYMS_EXTRA_PASS 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 is not set
CONFIG_OBSOLETE_MODPARM=y
# CONFIG_MODVERSIONS is not set
# CONFIG_MODULE_SRCVERSION_ALL is not set
CONFIG_KMOD=y
#
# Processor type and features
#
CONFIG_X86_PC=y
# CONFIG_X86_ELAN is not set
# CONFIG_X86_VOYAGER is not set
# CONFIG_X86_NUMAQ is not set
# CONFIG_X86_SUMMIT is not set
# CONFIG_X86_BIGSMP is not set
# CONFIG_X86_VISWS is not set
# CONFIG_X86_GENERICARCH is not set
# CONFIG_X86_ES7000 is not set
# CONFIG_M386 is not set
# CONFIG_M486 is not set
# CONFIG_M586 is not set
# CONFIG_M586TSC is not set
# CONFIG_M586MMX is not set
# CONFIG_M686 is not set
# CONFIG_MPENTIUMII is not set
CONFIG_MPENTIUMIII=y
# CONFIG_MPENTIUMM is not set
# CONFIG_MPENTIUM4 is not set
# CONFIG_MK6 is not set
# CONFIG_MK7 is not set
# CONFIG_MK8 is not set
# CONFIG_MCRUSOE is not set
# CONFIG_MEFFICEON is not set
# CONFIG_MWINCHIPC6 is not set
# CONFIG_MWINCHIP2 is not set
# CONFIG_MWINCHIP3D is not set
# CONFIG_MGEODEGX1 is not set
# CONFIG_MCYRIXIII is not set
# CONFIG_MVIAC3_2 is not set
# CONFIG_X86_GENERIC is not set
CONFIG_X86_CMPXCHG=y
CONFIG_X86_XADD=y
CONFIG_X86_L1_CACHE_SHIFT=5
CONFIG_RWSEM_XCHGADD_ALGORITHM=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
CONFIG_X86_WP_WORKS_OK=y
CONFIG_X86_INVLPG=y
CONFIG_X86_BSWAP=y
CONFIG_X86_POPAD_OK=y
CONFIG_X86_GOOD_APIC=y
CONFIG_X86_INTEL_USERCOPY=y
CONFIG_X86_USE_PPRO_CHECKSUM=y
# CONFIG_HPET_TIMER is not set
# CONFIG_SMP is not set
CONFIG_PREEMPT=y
CONFIG_PREEMPT_BKL=y
# CONFIG_X86_UP_APIC is not set
CONFIG_X86_TSC=y
CONFIG_X86_MCE=y
# CONFIG_X86_MCE_NONFATAL is not set
# CONFIG_TOSHIBA is not set
# CONFIG_I8K is not set
# CONFIG_X86_REBOOTFIXUPS is not set
CONFIG_MICROCODE=m
CONFIG_X86_MSR=y
CONFIG_X86_CPUID=m
#
# Firmware Drivers
#
# CONFIG_EDD is not set
CONFIG_NOHIGHMEM=y
# CONFIG_HIGHMEM4G is not set
# CONFIG_HIGHMEM64G is not set
# CONFIG_MATH_EMULATION is not set
CONFIG_MTRR=y
CONFIG_HAVE_DEC_LOCK=y
# CONFIG_REGPARM is not set
# CONFIG_SECCOMP is not set
#
# Power management options (ACPI, APM)
#
# CONFIG_PM is not set
#
# ACPI (Advanced Configuration and Power Interface) Support
#
# CONFIG_ACPI is not set
#
# CPU Frequency scaling
#
# CONFIG_CPU_FREQ is not set
#
# Bus options (PCI, PCMCIA, EISA, MCA, ISA)
#
CONFIG_PCI=y
# CONFIG_PCI_GOBIOS is not set
# CONFIG_PCI_GOMMCONFIG is not set
# CONFIG_PCI_GODIRECT is not set
CONFIG_PCI_GOANY=y
CONFIG_PCI_BIOS=y
CONFIG_PCI_DIRECT=y
# CONFIG_PCIEPORTBUS is not set
CONFIG_PCI_LEGACY_PROC=y
CONFIG_PCI_NAMES=y
CONFIG_ISA_DMA_API=y
CONFIG_ISA=y
# CONFIG_EISA is not set
# CONFIG_MCA is not set
# CONFIG_SCx200 is not set
#
# PCCARD (PCMCIA/CardBus) support
#
# CONFIG_PCCARD is not set
#
# PCI Hotplug Support
#
# CONFIG_HOTPLUG_PCI is not set
#
# Executable file formats
#
CONFIG_BINFMT_ELF=y
CONFIG_BINFMT_AOUT=y
CONFIG_BINFMT_MISC=y
#
# Device Drivers
#
#
# Generic Driver Options
#
CONFIG_STANDALONE=y
CONFIG_PREVENT_FIRMWARE_BUILD=y
CONFIG_FW_LOADER=m
#
# Memory Technology Devices (MTD)
#
# CONFIG_MTD is not set
#
# Parallel port support
#
CONFIG_PARPORT=y
CONFIG_PARPORT_PC=y
# CONFIG_PARPORT_SERIAL is not set
CONFIG_PARPORT_PC_FIFO=y
# CONFIG_PARPORT_PC_SUPERIO is not set
# CONFIG_PARPORT_GSC is not set
CONFIG_PARPORT_1284=y
#
# Plug and Play support
#
# CONFIG_PNP is not set
#
# Block devices
#
CONFIG_BLK_DEV_FD=y
# CONFIG_BLK_DEV_XD is not set
# CONFIG_PARIDE is not set
# CONFIG_BLK_CPQ_DA is not set
# CONFIG_BLK_CPQ_CISS_DA is not set
# CONFIG_BLK_DEV_DAC960 is not set
# CONFIG_BLK_DEV_UMEM is not set
# CONFIG_BLK_DEV_COW_COMMON is not set
CONFIG_BLK_DEV_LOOP=y
# CONFIG_BLK_DEV_CRYPTOLOOP is not set
# CONFIG_BLK_DEV_NBD is not set
# CONFIG_BLK_DEV_SX8 is not set
# CONFIG_BLK_DEV_UB is not set
# CONFIG_BLK_DEV_RAM is not set
CONFIG_BLK_DEV_RAM_COUNT=16
CONFIG_INITRAMFS_SOURCE=""
# CONFIG_LBD is not set
# CONFIG_CDROM_PKTCDVD is not set
#
# IO Schedulers
#
CONFIG_IOSCHED_NOOP=y
CONFIG_IOSCHED_AS=y
CONFIG_IOSCHED_DEADLINE=y
CONFIG_IOSCHED_CFQ=y
# 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_IDECD=y
# CONFIG_BLK_DEV_IDETAPE is not set
# CONFIG_BLK_DEV_IDEFLOPPY is not set
# 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 is not set
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 is not set
# CONFIG_BLK_DEV_RZ1000 is not set
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 is not set
# CONFIG_BLK_DEV_ALI15X3 is not set
# CONFIG_BLK_DEV_AMD74XX is not set
# CONFIG_BLK_DEV_ATIIXP is not set
# CONFIG_BLK_DEV_CMD64X is not set
# 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 is not set
CONFIG_BLK_DEV_PIIX=y
# CONFIG_BLK_DEV_IT821X is not set
# 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 is not set
# 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_IDE_CHIPSETS is not set
CONFIG_BLK_DEV_IDEDMA=y
# CONFIG_IDEDMA_IVB is not set
CONFIG_IDEDMA_AUTO=y
# CONFIG_BLK_DEV_HD is not set
#
# SCSI device support
#
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 is not set
CONFIG_CHR_DEV_SG=y
#
# 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 is not set
# CONFIG_SCSI_FC_ATTRS is not set
# CONFIG_SCSI_ISCSI_ATTRS is not set
#
# SCSI low-level drivers
#
# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
# CONFIG_SCSI_3W_9XXX is not set
# CONFIG_SCSI_7000FASST is not set
# CONFIG_SCSI_ACARD is not set
# CONFIG_SCSI_AHA152X is not set
# CONFIG_SCSI_AHA1542 is not set
# CONFIG_SCSI_AACRAID is not set
# CONFIG_SCSI_AIC7XXX is not set
# CONFIG_SCSI_AIC7XXX_OLD is not set
# CONFIG_SCSI_AIC79XX is not set
# CONFIG_SCSI_DPT_I2O is not set
# CONFIG_SCSI_IN2000 is not set
# CONFIG_MEGARAID_NEWGEN is not set
# CONFIG_MEGARAID_LEGACY is not set
# CONFIG_SCSI_SATA is not set
# CONFIG_SCSI_BUSLOGIC is not set
# CONFIG_SCSI_DMX3191D is not set
# CONFIG_SCSI_DTC3280 is not set
# CONFIG_SCSI_EATA is not set
# CONFIG_SCSI_FUTURE_DOMAIN is not set
# CONFIG_SCSI_GDTH is not set
# CONFIG_SCSI_GENERIC_NCR5380 is not set
# CONFIG_SCSI_GENERIC_NCR5380_MMIO is not set
# CONFIG_SCSI_IPS is not set
# CONFIG_SCSI_INITIO is not set
# CONFIG_SCSI_INIA100 is not set
# CONFIG_SCSI_PPA is not set
# CONFIG_SCSI_IMM is not set
# CONFIG_SCSI_NCR53C406A is not set
# CONFIG_SCSI_SYM53C8XX_2 is not set
# CONFIG_SCSI_IPR is not set
# CONFIG_SCSI_PAS16 is not set
# CONFIG_SCSI_PSI240I is not set
# CONFIG_SCSI_QLOGIC_FAS is not set
# CONFIG_SCSI_QLOGIC_FC is not set
# CONFIG_SCSI_QLOGIC_1280 is not set
CONFIG_SCSI_QLA2XXX=y
# CONFIG_SCSI_QLA21XX is not set
# CONFIG_SCSI_QLA22XX is not set
# CONFIG_SCSI_QLA2300 is not set
# CONFIG_SCSI_QLA2322 is not set
# CONFIG_SCSI_QLA6312 is not set
# CONFIG_SCSI_LPFC is not set
# CONFIG_SCSI_SYM53C416 is not set
# CONFIG_SCSI_DC395x is not set
# CONFIG_SCSI_DC390T is not set
# CONFIG_SCSI_T128 is not set
# CONFIG_SCSI_U14_34F is not set
# CONFIG_SCSI_ULTRASTOR is not set
# CONFIG_SCSI_NSP32 is not set
# CONFIG_SCSI_DEBUG is not set
#
# Old CD-ROM drivers (not SCSI, not IDE)
#
# CONFIG_CD_NO_IDESCSI is not set
#
# Multi-device support (RAID and LVM)
#
# CONFIG_MD is not set
#
# Fusion MPT device support
#
# CONFIG_FUSION is not set
#
# IEEE 1394 (FireWire) support
#
# CONFIG_IEEE1394 is not set
#
# I2O device support
#
# CONFIG_I2O is not set
#
# Networking support
#
CONFIG_NET=y
#
# Networking options
#
CONFIG_PACKET=y
CONFIG_PACKET_MMAP=y
CONFIG_UNIX=y
# CONFIG_NET_KEY is not set
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
# CONFIG_IP_ADVANCED_ROUTER is not set
# CONFIG_IP_PNP is not set
# CONFIG_NET_IPIP is not set
# CONFIG_NET_IPGRE is not set
# CONFIG_IP_MROUTE is not set
# CONFIG_ARPD is not set
CONFIG_SYN_COOKIES=y
# 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_IP_TCPDIAG is not set
# CONFIG_IP_TCPDIAG_IPV6 is not set
#
# IP: Virtual Server Configuration
#
# CONFIG_IP_VS is not set
# CONFIG_IPV6 is not set
CONFIG_NETFILTER=y
# CONFIG_NETFILTER_DEBUG is not set
#
# IP: Netfilter Configuration
#
CONFIG_IP_NF_CONNTRACK=y
# CONFIG_IP_NF_CT_ACCT is not set
# CONFIG_IP_NF_CONNTRACK_MARK is not set
# CONFIG_IP_NF_CT_PROTO_SCTP is not set
CONFIG_IP_NF_FTP=y
CONFIG_IP_NF_IRC=y
# CONFIG_IP_NF_TFTP is not set
# CONFIG_IP_NF_AMANDA is not set
CONFIG_IP_NF_QUEUE=y
CONFIG_IP_NF_IPTABLES=y
CONFIG_IP_NF_MATCH_LIMIT=y
CONFIG_IP_NF_MATCH_IPRANGE=y
CONFIG_IP_NF_MATCH_MAC=y
CONFIG_IP_NF_MATCH_PKTTYPE=y
CONFIG_IP_NF_MATCH_MARK=y
CONFIG_IP_NF_MATCH_MULTIPORT=y
CONFIG_IP_NF_MATCH_TOS=y
CONFIG_IP_NF_MATCH_RECENT=y
CONFIG_IP_NF_MATCH_ECN=y
CONFIG_IP_NF_MATCH_DSCP=y
CONFIG_IP_NF_MATCH_AH_ESP=y
CONFIG_IP_NF_MATCH_LENGTH=y
CONFIG_IP_NF_MATCH_TTL=y
CONFIG_IP_NF_MATCH_TCPMSS=y
CONFIG_IP_NF_MATCH_HELPER=y
CONFIG_IP_NF_MATCH_STATE=y
CONFIG_IP_NF_MATCH_CONNTRACK=y
CONFIG_IP_NF_MATCH_OWNER=y
# CONFIG_IP_NF_MATCH_ADDRTYPE is not set
# CONFIG_IP_NF_MATCH_REALM is not set
# CONFIG_IP_NF_MATCH_SCTP is not set
# CONFIG_IP_NF_MATCH_COMMENT is not set
# CONFIG_IP_NF_MATCH_HASHLIMIT is not set
CONFIG_IP_NF_FILTER=y
CONFIG_IP_NF_TARGET_REJECT=y
CONFIG_IP_NF_TARGET_LOG=y
CONFIG_IP_NF_TARGET_ULOG=y
CONFIG_IP_NF_TARGET_TCPMSS=y
CONFIG_IP_NF_NAT=y
CONFIG_IP_NF_NAT_NEEDED=y
CONFIG_IP_NF_TARGET_MASQUERADE=y
CONFIG_IP_NF_TARGET_REDIRECT=y
CONFIG_IP_NF_TARGET_NETMAP=y
CONFIG_IP_NF_TARGET_SAME=y
# CONFIG_IP_NF_NAT_SNMP_BASIC is not set
CONFIG_IP_NF_NAT_IRC=y
CONFIG_IP_NF_NAT_FTP=y
CONFIG_IP_NF_MANGLE=y
CONFIG_IP_NF_TARGET_TOS=y
CONFIG_IP_NF_TARGET_ECN=y
CONFIG_IP_NF_TARGET_DSCP=y
CONFIG_IP_NF_TARGET_MARK=y
CONFIG_IP_NF_TARGET_CLASSIFY=y
CONFIG_IP_NF_RAW=y
CONFIG_IP_NF_TARGET_NOTRACK=y
CONFIG_IP_NF_ARPTABLES=y
CONFIG_IP_NF_ARPFILTER=y
CONFIG_IP_NF_ARP_MANGLE=y
#
# SCTP Configuration (EXPERIMENTAL)
#
# CONFIG_IP_SCTP is not set
# CONFIG_ATM is not set
# CONFIG_BRIDGE is not set
# CONFIG_VLAN_8021Q is not set
# CONFIG_DECNET is not set
# 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
# CONFIG_NET_CLS_ROUTE is not set
#
# Network testing
#
# CONFIG_NET_PKTGEN is not set
# CONFIG_NETPOLL is not set
# CONFIG_NET_POLL_CONTROLLER is not set
# CONFIG_HAMRADIO is not set
# CONFIG_IRDA is not set
# CONFIG_BT is not set
CONFIG_NETDEVICES=y
CONFIG_DUMMY=m
# CONFIG_BONDING is not set
# CONFIG_EQUALIZER is not set
# CONFIG_TUN is not set
#
# ARCnet devices
#
# CONFIG_ARCNET is not set
#
# Ethernet (10 or 100Mbit)
#
CONFIG_NET_ETHERNET=y
# CONFIG_MII is not set
# CONFIG_HAPPYMEAL is not set
# CONFIG_SUNGEM is not set
# CONFIG_NET_VENDOR_3COM is not set
# CONFIG_LANCE is not set
# CONFIG_NET_VENDOR_SMC is not set
# CONFIG_NET_VENDOR_RACAL is not set
#
# Tulip family network device support
#
CONFIG_NET_TULIP=y
# CONFIG_DE2104X is not set
# CONFIG_TULIP is not set
# CONFIG_DE4X5 is not set
# CONFIG_WINBOND_840 is not set
CONFIG_DM9102=y
# CONFIG_AT1700 is not set
# CONFIG_DEPCA is not set
# CONFIG_HP100 is not set
# CONFIG_NET_ISA is not set
# CONFIG_NET_PCI is not set
# CONFIG_NET_POCKET is not set
#
# Ethernet (1000 Mbit)
#
# CONFIG_ACENIC is not set
# CONFIG_DL2K is not set
# CONFIG_E1000 is not set
# CONFIG_NS83820 is not set
# CONFIG_HAMACHI is not set
# CONFIG_YELLOWFIN is not set
# CONFIG_R8169 is not set
# CONFIG_SKGE is not set
# CONFIG_SK98LIN is not set
# CONFIG_TIGON3 is not set
# CONFIG_BNX2 is not set
#
# Ethernet (10000 Mbit)
#
# CONFIG_IXGB is not set
# CONFIG_S2IO is not set
#
# Token Ring devices
#
# CONFIG_TR is not set
#
# Wireless LAN (non-hamradio)
#
# CONFIG_NET_RADIO is not set
#
# Wan interfaces
#
# CONFIG_WAN is not set
# CONFIG_FDDI is not set
# CONFIG_HIPPI is not set
CONFIG_PLIP=y
CONFIG_PPP=y
# CONFIG_PPP_MULTILINK is not set
# CONFIG_PPP_FILTER is not set
CONFIG_PPP_ASYNC=y
# CONFIG_PPP_SYNC_TTY is not set
CONFIG_PPP_DEFLATE=y
CONFIG_PPP_BSDCOMP=y
# CONFIG_PPPOE is not set
# CONFIG_SLIP is not set
# CONFIG_NET_FC is not set
# CONFIG_SHAPER is not set
# CONFIG_NETCONSOLE 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 is not set
# CONFIG_KEYBOARD_LKKBD is not set
# CONFIG_KEYBOARD_XTKBD is not set
# CONFIG_KEYBOARD_NEWTON is not set
CONFIG_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=y
# CONFIG_MOUSE_SERIAL is not set
# CONFIG_MOUSE_INPORT is not set
# CONFIG_MOUSE_LOGIBM is not set
# CONFIG_MOUSE_PC110PAD is not set
# CONFIG_MOUSE_VSXXXAA is not set
# CONFIG_INPUT_JOYSTICK is not set
# CONFIG_INPUT_TOUCHSCREEN is not set
# CONFIG_INPUT_MISC is not set
#
# Hardware I/O ports
#
CONFIG_SERIO=y
CONFIG_SERIO_I8042=y
# CONFIG_SERIO_SERPORT is not set
# CONFIG_SERIO_CT82C710 is not set
# CONFIG_SERIO_PARKBD is not set
# CONFIG_SERIO_PCIPS2 is not set
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 is not set
CONFIG_SERIAL_8250_NR_UARTS=4
# CONFIG_SERIAL_8250_EXTENDED is not set
#
# Non-8250 serial port support
#
CONFIG_SERIAL_CORE=y
# CONFIG_SERIAL_JSM is not set
CONFIG_UNIX98_PTYS=y
CONFIG_LEGACY_PTYS=y
CONFIG_LEGACY_PTY_COUNT=256
CONFIG_PRINTER=y
# CONFIG_LP_CONSOLE is not set
# CONFIG_PPDEV is not set
# CONFIG_TIPAR is not set
#
# IPMI
#
# CONFIG_IPMI_HANDLER is not set
#
# Watchdog Cards
#
# CONFIG_WATCHDOG is not set
CONFIG_HW_RANDOM=y
CONFIG_NVRAM=y
CONFIG_RTC=y
# CONFIG_DTLK is not set
# CONFIG_R3964 is not set
# CONFIG_APPLICOM is not set
# CONFIG_SONYPI is not set
#
# Ftape, the floppy tape device driver
#
# CONFIG_FTAPE is not set
CONFIG_AGP=y
# CONFIG_AGP_ALI is not set
# CONFIG_AGP_ATI is not set
# CONFIG_AGP_AMD is not set
# CONFIG_AGP_AMD64 is not set
CONFIG_AGP_INTEL=y
# CONFIG_AGP_NVIDIA is not set
# CONFIG_AGP_SIS is not set
# CONFIG_AGP_SWORKS is not set
# CONFIG_AGP_VIA is not set
# CONFIG_AGP_EFFICEON is not set
CONFIG_DRM=y
# CONFIG_DRM_TDFX is not set
# CONFIG_DRM_R128 is not set
# CONFIG_DRM_RADEON is not set
CONFIG_DRM_I810=y
# CONFIG_DRM_I830 is not set
# CONFIG_DRM_I915 is not set
# CONFIG_DRM_MGA is not set
# CONFIG_DRM_SIS is not set
# CONFIG_MWAVE is not set
# CONFIG_RAW_DRIVER is not set
# CONFIG_HANGCHECK_TIMER is not set
#
# TPM devices
#
# CONFIG_TCG_TPM is not set
#
# I2C support
#
# CONFIG_I2C is not set
#
# Dallas's 1-wire bus
#
CONFIG_W1=m
# CONFIG_W1_MATROX is not set
CONFIG_W1_DS9490=m
CONFIG_W1_DS9490_BRIDGE=m
# CONFIG_W1_THERM is not set
# CONFIG_W1_SMEM is not set
#
# Misc devices
#
# CONFIG_IBM_ASM is not set
#
# Multimedia devices
#
# CONFIG_VIDEO_DEV is not set
#
# Digital Video Broadcasting Devices
#
# CONFIG_DVB is not set
#
# Graphics support
#
# CONFIG_FB is not set
# CONFIG_VIDEO_SELECT is not set
#
# Console display driver support
#
CONFIG_VGA_CONSOLE=y
# CONFIG_MDA_CONSOLE is not set
CONFIG_DUMMY_CONSOLE=y
#
# Speakup console speech
#
# CONFIG_SPEAKUP is not set
CONFIG_SPEAKUP_DEFAULT="none"
#
# Sound
#
CONFIG_SOUND=y
#
# Advanced Linux Sound Architecture
#
CONFIG_SND=y
CONFIG_SND_TIMER=y
CONFIG_SND_PCM=y
CONFIG_SND_HWDEP=y
CONFIG_SND_RAWMIDI=y
CONFIG_SND_SEQUENCER=y
# CONFIG_SND_SEQ_DUMMY is not set
CONFIG_SND_OSSEMUL=y
CONFIG_SND_MIXER_OSS=y
CONFIG_SND_PCM_OSS=y
CONFIG_SND_SEQUENCER_OSS=y
CONFIG_SND_RTCTIMER=y
# CONFIG_SND_VERBOSE_PRINTK is not set
# CONFIG_SND_DEBUG is not set
#
# Generic devices
#
CONFIG_SND_MPU401_UART=y
CONFIG_SND_OPL3_LIB=y
# CONFIG_SND_DUMMY is not set
# CONFIG_SND_VIRMIDI is not set
# CONFIG_SND_MTPAV is not set
# CONFIG_SND_SERIAL_U16550 is not set
# CONFIG_SND_MPU401 is not set
#
# ISA devices
#
# CONFIG_SND_AD1848 is not set
# CONFIG_SND_CS4231 is not set
# CONFIG_SND_CS4232 is not set
# CONFIG_SND_CS4236 is not set
# CONFIG_SND_ES1688 is not set
# CONFIG_SND_ES18XX is not set
# CONFIG_SND_GUSCLASSIC is not set
# CONFIG_SND_GUSEXTREME is not set
# CONFIG_SND_GUSMAX is not set
# CONFIG_SND_INTERWAVE is not set
# CONFIG_SND_INTERWAVE_STB is not set
# CONFIG_SND_OPTI92X_AD1848 is not set
# CONFIG_SND_OPTI92X_CS4231 is not set
# CONFIG_SND_OPTI93X is not set
# CONFIG_SND_SB8 is not set
# CONFIG_SND_SB16 is not set
# CONFIG_SND_SBAWE is not set
# CONFIG_SND_WAVEFRONT is not set
# CONFIG_SND_CMI8330 is not set
# CONFIG_SND_OPL3SA2 is not set
# CONFIG_SND_SGALAXY is not set
# CONFIG_SND_SSCAPE is not set
#
# PCI devices
#
# CONFIG_SND_ALI5451 is not set
# CONFIG_SND_ATIIXP is not set
# 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_TRIDENT is not set
# CONFIG_SND_YMFPCI is not set
# CONFIG_SND_ALS4000 is not set
CONFIG_SND_CMIPCI=y
# 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 is not set
# 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
#
# 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=y
# 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_OTG is not set
#
# USB Host Controller Drivers
#
# CONFIG_USB_EHCI_HCD is not set
# CONFIG_USB_OHCI_HCD is not set
CONFIG_USB_UHCI_HCD=y
# CONFIG_USB_SL811_HCD is not set
#
# USB Device Class drivers
#
# CONFIG_USB_AUDIO is not set
# CONFIG_USB_BLUETOOTH_TTY is not set
# CONFIG_USB_MIDI is not set
# CONFIG_USB_ACM is not set
CONFIG_USB_PRINTER=y
#
# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' may also be needed; see USB_STORAGE Help for more information
#
CONFIG_USB_STORAGE=y
# CONFIG_USB_STORAGE_DEBUG is not set
# CONFIG_USB_STORAGE_DATAFAB is not set
# CONFIG_USB_STORAGE_FREECOM is not set
# CONFIG_USB_STORAGE_ISD200 is not set
# CONFIG_USB_STORAGE_DPCM is not set
# CONFIG_USB_STORAGE_USBAT is not set
# CONFIG_USB_STORAGE_SDDR09 is not set
# CONFIG_USB_STORAGE_SDDR55 is not set
# CONFIG_USB_STORAGE_JUMPSHOT is not set
#
# USB Input Devices
#
# CONFIG_USB_HID is not set
#
# USB HID Boot Protocol drivers
#
# CONFIG_USB_KBD is not set
# CONFIG_USB_MOUSE is not set
# CONFIG_USB_AIPTEK is not set
# CONFIG_USB_WACOM is not set
# CONFIG_USB_KBTAB is not set
# CONFIG_USB_POWERMATE is not set
# CONFIG_USB_MTOUCH is not set
# CONFIG_USB_EGALAX is not set
# CONFIG_USB_XPAD is not set
# CONFIG_USB_ATI_REMOTE 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
#
# Video4Linux support is needed for USB Multimedia device support
#
#
# USB Network Adapters
#
# CONFIG_USB_CATC is not set
# CONFIG_USB_KAWETH is not set
# CONFIG_USB_PEGASUS is not set
# CONFIG_USB_RTL8150 is not set
# CONFIG_USB_USBNET is not set
# CONFIG_USB_MON is not set
#
# USB port drivers
#
# CONFIG_USB_USS720 is not set
#
# USB Serial Converter support
#
# CONFIG_USB_SERIAL is not set
#
# USB Miscellaneous drivers
#
# CONFIG_USB_EMI62 is not set
# CONFIG_USB_EMI26 is not set
# CONFIG_USB_AUERSWALD is not set
# 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_TEST is not set
#
# USB ATM/DSL drivers
#
#
# USB Gadget Support
#
# CONFIG_USB_GADGET is not set
#
# MMC/SD Card support
#
# CONFIG_MMC is not set
#
# InfiniBand support
#
# CONFIG_INFINIBAND is not set
#
# File systems
#
CONFIG_EXT2_FS=y
# CONFIG_EXT2_FS_XATTR is not set
CONFIG_EXT3_FS=y
CONFIG_EXT3_FS_XATTR=y
# CONFIG_EXT3_FS_POSIX_ACL is not set
# CONFIG_EXT3_FS_SECURITY is not set
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 is not set
# CONFIG_JFS_FS is not set
#
# XFS support
#
# CONFIG_XFS_FS is not set
CONFIG_MINIX_FS=y
# CONFIG_ROMFS_FS is not set
CONFIG_INOTIFY=y
# CONFIG_QUOTA is not set
CONFIG_DNOTIFY=y
# CONFIG_AUTOFS_FS is not set
CONFIG_AUTOFS4_FS=y
#
# CD-ROM/DVD Filesystems
#
CONFIG_ISO9660_FS=y
CONFIG_JOLIET=y
# CONFIG_ZISOFS is not set
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 is not set
#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
CONFIG_PROC_KCORE=y
CONFIG_SYSFS=y
# CONFIG_DEVFS_FS is not set
# CONFIG_DEVPTS_FS_XATTR is not set
CONFIG_TMPFS=y
# CONFIG_TMPFS_XATTR is not set
# CONFIG_HUGETLBFS is not set
# CONFIG_HUGETLB_PAGE is not set
CONFIG_RAMFS=y
#
# Miscellaneous filesystems
#
# CONFIG_ADFS_FS is not set
CONFIG_AFFS_FS=y
# 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=y
# CONFIG_UFS_FS_WRITE is not set
#
# Network File Systems
#
CONFIG_NFS_FS=y
CONFIG_NFS_V3=y
# CONFIG_NFS_V4 is not set
# CONFIG_NFS_DIRECTIO is not set
CONFIG_NFSD=y
CONFIG_NFSD_V3=y
# CONFIG_NFSD_V4 is not set
CONFIG_NFSD_TCP=y
CONFIG_LOCKD=y
CONFIG_LOCKD_V4=y
CONFIG_EXPORTFS=y
CONFIG_SUNRPC=y
# CONFIG_RPCSEC_GSS_KRB5 is not set
# CONFIG_RPCSEC_GSS_SPKM3 is not set
CONFIG_SMB_FS=y
# CONFIG_SMB_NLS_DEFAULT is not set
# CONFIG_CIFS is not set
# CONFIG_NCP_FS is not set
# CONFIG_CODA_FS is not set
# CONFIG_AFS_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=y
# CONFIG_ATARI_PARTITION is not set
# CONFIG_MAC_PARTITION is not set
CONFIG_MSDOS_PARTITION=y
CONFIG_BSD_DISKLABEL=y
# CONFIG_MINIX_SUBPARTITION is not set
# CONFIG_SOLARIS_X86_PARTITION is not set
# CONFIG_UNIXWARE_DISKLABEL is not set
# CONFIG_LDM_PARTITION 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="iso8859-1"
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 is not set
# 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 is not set
# 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 is not set
# CONFIG_NLS_KOI8_U is not set
# CONFIG_NLS_UTF8 is not set
#
# Profiling support
#
# CONFIG_PROFILING is not set
#
# Kernel hacking
#
# CONFIG_PRINTK_TIME is not set
# CONFIG_DEBUG_KERNEL is not set
CONFIG_LOG_BUF_SHIFT=14
CONFIG_DEBUG_BUGVERBOSE=y
CONFIG_EARLY_PRINTK=y
#
# Security options
#
# CONFIG_KEYS is not set
# CONFIG_SECURITY is not set
#
# Cryptographic options
#
# CONFIG_CRYPTO is not set
#
# Hardware crypto devices
#
#
# Library routines
#
CONFIG_CRC_CCITT=y
CONFIG_CRC32=y
CONFIG_LIBCRC32C=m
CONFIG_ZLIB_INFLATE=y
CONFIG_ZLIB_DEFLATE=y
CONFIG_GENERIC_HARDIRQS=y
CONFIG_GENERIC_IRQ_PROBE=y
CONFIG_X86_BIOS_REBOOT=y
CONFIG_PC=y
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 8
model name : Celeron (Coppermine)
stepping : 3
cpu MHz : 568.014
cache size : 128 KB
fdiv_bug : no
hlt_bug : no
f00f_bug : no
coma_bug : no
fpu : yes
fpu_exception : yes
cpuid level : 2
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 sep mtrr pge mca cmov pat pse36 mmx fxsr sse
bogomips : 1118.20
^ permalink raw reply
* Re: request_8xxirq
From: Alex Zeffertt @ 2005-08-01 13:04 UTC (permalink / raw)
To: Tiago Dall'Agnol; +Cc: linuxppc-embedded
In-Reply-To: <42EA60E1.7040804@parks.com.br>
On Fri, 29 Jul 2005 14:01:21 -0300
"Tiago Dall'Agnol" <tdallagnol@parks.com.br> wrote:
> But this code doesn't help to find request_8xxirq. It just do the
> opposite. This code defines request_irq to be request_8xxirq when
> CONFIG_8xx is defined. But where is located the implementation of
> request_8xxirq?
>
See the code snippet in my last email. The C preprocessor replaces 'int request_irq(...' with 'int
request_8xxirq(...' prior to compilation.
> Alex Zeffertt wrote:
>
> >Maybe you're using a really old kernel. In linux-2.4.4 it's in
> >arch/ppc/kernel/irq.c:
> >
> >-- snip --
> >#if (defined(CONFIG_8xx) || defined(CONFIG_8260))
> >/* Name change so we can catch standard drivers that potentially mess up
> > * the internal interrupt controller on 8xx and 8260. Just bear with me,
> > * I don't like this either and I am searching a better solution. For
> > * now, this is what I need. -- Dan
> > */
> >#define request_irq request_8xxirq
> >
> >...
> >...
> >...
> >
> >int request_irq(unsigned int irq, void (*handler)(int, void *, struct pt_regs *),
> > unsigned long irqflags, const char * devname, void *dev_id)
> >{
> >--/snip --
> >
> >
> >I don't know why it was done like this....
> >
> >Alex
> >
> >
> >On Fri, 29 Jul 2005 10:52:33 -0300
> >"Tiago Dall'Agnol" <tdallagnol@parks.com.br> wrote:
> >
> >
> >
> >>Thank you Alex.
> >>
> >>But in my linux, this is different.
> >>What I have in that file is just
> >>
> >>extern int request_8xxirq(unsigned int irq,
> >> void (*handler)(int, void *, struct pt_regs *),
> >> unsigned long flags,
> >> const char *device,
> >> void *dev_id);
> >>
> >>And the request_8xxirq is declared as a
> >>
> >>EXPORT_SYMBOL(request_8xxirq);
> >>
> >>in arch/ppc/kernel/ppc_ksyms.c.
> >>
> >>I already tried to find out where the code that implements the function
> >>is located, but it seems that it doesn't exist in my distribuction.
> >>Maybe is it a "binary version"?
> >>
> >>Any other information will be apreciated ;-)
> >>
> >>Best Regards,
> >>Tiago
> >>
> >>Alex Zeffertt wrote:
> >>
> >>
> >>
> >>>In linux-2.4 it's in
> >>>
> >>> include/asm-ppc/mpc8xx.h
> >>>
> >>>-- snip --
> >>>#define request_8xxirq request_irq
> >>>--/snip --
> >>>
> >>>And request_irq is in arch/ppc/kernel/irq.c
> >>>
> >>>Alex
> >>>
> >>>On Fri, 29 Jul 2005 10:07:58 -0300
> >>>"Tiago Dall'Agnol" <tdallagnol@parks.com.br> wrote:
> >>>
> >>>
> >>>
> >>>
> >>>
> >>>>Hi,
> >>>>
> >>>>I had some problems with irq in my embedded system. I'm interested in
> >>>>this function source code, but I didn't find it in my linux distribuction?
> >>>>
> >>>>Does anyone know where I can find it?
> >>>>
> >>>>Thanks a lot
> >>>>Tiago
> >>>>
> >>>>Manish Joshi wrote:
> >>>>
> >>>>
> >>>>
> >>>>
> >>>>
> >>>>>Hi,
> >>>>>
> >>>>>I am working on an old code which uses request_8xxirq() call which I
> >>>>>can't find in latest kernel.
> >>>>>Has this been replaced by something else ?
> >>>>>
> >>>>>I see the references on net about replacing request_8xxirq() with
> >>>>>request_irq(). Can I do it ?
> >>>>>
> >>>>>TIA,
> >>>>>Manish
> >>>>>
> >>>>>
> >>>>>------------------------------------------------------------------------
> >>>>>Start your day with Yahoo! - make it your home page
> >>>>><http://us.rd.yahoo.com/evt=34442/*http://www.yahoo.com/r/hs>
> >>>>>
> >>>>>------------------------------------------------------------------------
> >>>>>
> >>>>>_______________________________________________
> >>>>>Linuxppc-embedded mailing list
> >>>>>Linuxppc-embedded@ozlabs.org
> >>>>>https://ozlabs.org/mailman/listinfo/linuxppc-embedded
> >>>>>
> >>>>>
> >>>>>
> >>>>>
> >>>>>
> >>>>--
> >>>>Tiago Dall'Agnol
> >>>>Pesquisa e Desenvolvimento
> >>>>Tel.: +55.51.470.05.64
> >>>>Fax.: +55.51.470.05.70
> >>>>e-mail: tdallagnol@parks.com.br
> >>>>www.parks.com.br
> >>>>
> >>>>_______________________________________________
> >>>>Linuxppc-embedded mailing list
> >>>>Linuxppc-embedded@ozlabs.org
> >>>>https://ozlabs.org/mailman/listinfo/linuxppc-embedded
> >>>>
> >>>>
> >>>>
> >>>>
> >>>
> >>>
> >>>
> >>>
> >>--
> >>
> >>
> >
> >
> >
>
> --
> Tiago Dall'Agnol
> Pesquisa e Desenvolvimento
> Tel.: +55.51.470.05.64
> Fax.: +55.51.470.05.70
> e-mail: tdallagnol@parks.com.br
> www.parks.com.br
^ permalink raw reply
* Re: Newly-erased Block...
From: Calò Massimo @ 2005-08-01 13:03 UTC (permalink / raw)
To: ucLinux-Mtd@Lists. Infradead. Org
In-Reply-To: <1122899802.8317.106.camel@baythorne.infradead.org>
> You lie -- it didn't say that. It would never say 'xxxx', and
> the numbers it _did_ print will often give some clue as to
> what went wrong. Why do you ask for help but not actually
> give us all the available information?
David,
the complete messages after "/>mount -t jffs2 /dev/mtdblock5 /mnt"
are :
/>Newly-erased block contained word 0x4c004c at offest 0x00040000
Newly-erased block contained word 0x4c004c at offest 0x00030000
And this is my flash configuration:
snds100map flash device: 200000 at 1000000
Search for id:(01 2249) interleave(1) type(2)
Found: AMD AM29LV160DB
Physically mapped flash of SNDS100: Found 1 x16 devices at 0x0 in 16-bit
mode
number of JEDEC chips: 1
Creating 6 MTD partitions on "Physically mapped flash of SNDS100":
0x00000000-0x00010000 : "boot loader (64K)"
0x00010000-0x00020000 : "boot data (64K)"
0x00020000-0x000e0000 : "kernel (768K)"
0x000e0000-0x00100000 : "user data 00 (128K)"
0x00100000-0x001a0000 : "root fs (512K)"
0x001a0000-0x00200000 : "user Jffs2 (512K)"
Thanks,
Massimo.
^ permalink raw reply
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.