* (no subject)
@ 2005-04-28 19:15 ` Bryan Althouse
0 siblings, 0 replies; 17+ messages in thread
From: Bryan Althouse @ 2005-04-28 19:15 UTC (permalink / raw)
To: linux-mips; +Cc: TheNop
Hello,
I would like to use a 2.6.x kernel with my Yosemite/HalfDome board.
Somehow, I am unable to compile the kernel. I have tried the 2.6.10 kernel
trees from ftp.pmc-sierra.com and also the latest 2.6.12 snapshot from
linux-mips. I am using the 3.3.x cross compile tools from
ftp.pmc-sierra.com . The 2.4.x kernels from PMC compile fine.
In the case of 2.6.10 from ftp.pmc-sierra.com, my error looks like:
Make[3]: *** [drivers/char/agp/backend.o] Error 1
In the case of 2.6.12 from linux-mips, my error looks like:
drivers/net/titan_ge.c1950: error: 'titan_device_remove" undeclared
here (not in a function)
My compile process is like so:
make mrproper
make xconfig
make oldconfig
make ARCH=mips CROSS_COMPILE=/<tool_path>/mips64-linux-gnu- vmlinux
Could someone share their .config with me, or make some suggestions?
Thank you,
Bryan
^ permalink raw reply [flat|nested] 17+ messages in thread
* (no subject)
@ 2005-04-28 19:15 ` Bryan Althouse
0 siblings, 0 replies; 17+ messages in thread
From: Bryan Althouse @ 2005-04-28 19:15 UTC (permalink / raw)
To: linux-mips; +Cc: TheNop
Hello,
I would like to use a 2.6.x kernel with my Yosemite/HalfDome board.
Somehow, I am unable to compile the kernel. I have tried the 2.6.10 kernel
trees from ftp.pmc-sierra.com and also the latest 2.6.12 snapshot from
linux-mips. I am using the 3.3.x cross compile tools from
ftp.pmc-sierra.com . The 2.4.x kernels from PMC compile fine.
In the case of 2.6.10 from ftp.pmc-sierra.com, my error looks like:
Make[3]: *** [drivers/char/agp/backend.o] Error 1
In the case of 2.6.12 from linux-mips, my error looks like:
drivers/net/titan_ge.c1950: error: 'titan_device_remove" undeclared
here (not in a function)
My compile process is like so:
make mrproper
make xconfig
make oldconfig
make ARCH=mips CROSS_COMPILE=/<tool_path>/mips64-linux-gnu- vmlinux
Could someone share their .config with me, or make some suggestions?
Thank you,
Bryan
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: your mail
2005-04-28 19:15 ` Bryan Althouse
(?)
@ 2005-04-29 11:02 ` Ralf Baechle
2005-04-29 13:52 ` Bryan Althouse
-1 siblings, 1 reply; 17+ messages in thread
From: Ralf Baechle @ 2005-04-29 11:02 UTC (permalink / raw)
To: Bryan Althouse; +Cc: linux-mips, TheNop
On Thu, Apr 28, 2005 at 03:15:49PM -0400, Bryan Althouse wrote:
> I would like to use a 2.6.x kernel with my Yosemite/HalfDome board.
> Somehow, I am unable to compile the kernel. I have tried the 2.6.10 kernel
> trees from ftp.pmc-sierra.com and also the latest 2.6.12 snapshot from
> linux-mips. I am using the 3.3.x cross compile tools from
> ftp.pmc-sierra.com . The 2.4.x kernels from PMC compile fine.
>
> In the case of 2.6.10 from ftp.pmc-sierra.com, my error looks like:
> Make[3]: *** [drivers/char/agp/backend.o] Error 1
Configuring AGP support for a MIPS kernel is obviously nonsense. Disable
CONFIG_AGP.
> In the case of 2.6.12 from linux-mips, my error looks like:
> drivers/net/titan_ge.c1950: error: 'titan_device_remove" undeclared
> here (not in a function)
Whoops, a bug. The function indeed doesn't exist even though it should,
will fix that. You will hit this bug only if compiling the titan driver
as a module, so workaround set CONFIG_TITAN_GE=y. Which for the typical
titan-based device seems to be the preferable choice anyway.
Ralf
^ permalink raw reply [flat|nested] 17+ messages in thread
* RE: your mail (yosemite + 2.6.x issues)
@ 2005-04-29 13:52 ` Bryan Althouse
0 siblings, 0 replies; 17+ messages in thread
From: Bryan Althouse @ 2005-04-29 13:52 UTC (permalink / raw)
To: 'Ralf Baechle'; +Cc: linux-mips
Thanks Ralf, now I can compile the kernel. But, I don't get any serial
console output when I try to boot it. Actually, I get a single line that
looks like this:
Loading file: tftp://192.168.2.39/vmlinux (elf)
0x80100000/2288188 + 0x8032ea3c/111372(z) + 4125 syms|
I have found PMC's "yosemite_defconfig" file and I am using it as the
".config". I have tried using CONFIG_PMC_INTERNAL_UART=y and I have also
tried commenting it out. Either way, I get no console output.
Thanks for the help!
Bryan
-----Original Message-----
From: Ralf Baechle [mailto:ralf@linux-mips.org]
Sent: Friday, April 29, 2005 7:03 AM
To: Bryan Althouse
Cc: linux-mips@linux-mips.org; TheNop@gmx.net
Subject: Re: your mail
On Thu, Apr 28, 2005 at 03:15:49PM -0400, Bryan Althouse wrote:
> I would like to use a 2.6.x kernel with my Yosemite/HalfDome board.
> Somehow, I am unable to compile the kernel. I have tried the 2.6.10
kernel
> trees from ftp.pmc-sierra.com and also the latest 2.6.12 snapshot from
> linux-mips. I am using the 3.3.x cross compile tools from
> ftp.pmc-sierra.com . The 2.4.x kernels from PMC compile fine.
>
> In the case of 2.6.10 from ftp.pmc-sierra.com, my error looks like:
> Make[3]: *** [drivers/char/agp/backend.o] Error 1
Configuring AGP support for a MIPS kernel is obviously nonsense. Disable
CONFIG_AGP.
> In the case of 2.6.12 from linux-mips, my error looks like:
> drivers/net/titan_ge.c1950: error: 'titan_device_remove" undeclared
> here (not in a function)
Whoops, a bug. The function indeed doesn't exist even though it should,
will fix that. You will hit this bug only if compiling the titan driver
as a module, so workaround set CONFIG_TITAN_GE=y. Which for the typical
titan-based device seems to be the preferable choice anyway.
Ralf
^ permalink raw reply [flat|nested] 17+ messages in thread
* RE: your mail (yosemite + 2.6.x issues)
@ 2005-04-29 13:52 ` Bryan Althouse
0 siblings, 0 replies; 17+ messages in thread
From: Bryan Althouse @ 2005-04-29 13:52 UTC (permalink / raw)
To: 'Ralf Baechle'; +Cc: linux-mips
Thanks Ralf, now I can compile the kernel. But, I don't get any serial
console output when I try to boot it. Actually, I get a single line that
looks like this:
Loading file: tftp://192.168.2.39/vmlinux (elf)
0x80100000/2288188 + 0x8032ea3c/111372(z) + 4125 syms|
I have found PMC's "yosemite_defconfig" file and I am using it as the
".config". I have tried using CONFIG_PMC_INTERNAL_UART=y and I have also
tried commenting it out. Either way, I get no console output.
Thanks for the help!
Bryan
-----Original Message-----
From: Ralf Baechle [mailto:ralf@linux-mips.org]
Sent: Friday, April 29, 2005 7:03 AM
To: Bryan Althouse
Cc: linux-mips@linux-mips.org; TheNop@gmx.net
Subject: Re: your mail
On Thu, Apr 28, 2005 at 03:15:49PM -0400, Bryan Althouse wrote:
> I would like to use a 2.6.x kernel with my Yosemite/HalfDome board.
> Somehow, I am unable to compile the kernel. I have tried the 2.6.10
kernel
> trees from ftp.pmc-sierra.com and also the latest 2.6.12 snapshot from
> linux-mips. I am using the 3.3.x cross compile tools from
> ftp.pmc-sierra.com . The 2.4.x kernels from PMC compile fine.
>
> In the case of 2.6.10 from ftp.pmc-sierra.com, my error looks like:
> Make[3]: *** [drivers/char/agp/backend.o] Error 1
Configuring AGP support for a MIPS kernel is obviously nonsense. Disable
CONFIG_AGP.
> In the case of 2.6.12 from linux-mips, my error looks like:
> drivers/net/titan_ge.c1950: error: 'titan_device_remove" undeclared
> here (not in a function)
Whoops, a bug. The function indeed doesn't exist even though it should,
will fix that. You will hit this bug only if compiling the titan driver
as a module, so workaround set CONFIG_TITAN_GE=y. Which for the typical
titan-based device seems to be the preferable choice anyway.
Ralf
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: your mail (yosemite + 2.6.x issues)
2005-04-29 13:52 ` Bryan Althouse
(?)
@ 2005-04-29 16:08 ` Manish Lachwani
2005-05-04 14:05 ` Alex Gonzalez
-1 siblings, 1 reply; 17+ messages in thread
From: Manish Lachwani @ 2005-04-29 16:08 UTC (permalink / raw)
To: Bryan Althouse; +Cc: 'Ralf Baechle', linux-mips
Do you load the kernel first and then do a "go"? If you load the kernel
first using the "load" command, then you should come back to the PMON
prompt where you can type a "go". I was not clear about it from your
email below.
Thanks
Manish Lachwani
Bryan Althouse wrote:
>Thanks Ralf, now I can compile the kernel. But, I don't get any serial
>console output when I try to boot it. Actually, I get a single line that
>looks like this:
>
>Loading file: tftp://192.168.2.39/vmlinux (elf)
>0x80100000/2288188 + 0x8032ea3c/111372(z) + 4125 syms|
>
>I have found PMC's "yosemite_defconfig" file and I am using it as the
>".config". I have tried using CONFIG_PMC_INTERNAL_UART=y and I have also
>tried commenting it out. Either way, I get no console output.
>
>Thanks for the help!
>Bryan
>
>-----Original Message-----
>From: Ralf Baechle [mailto:ralf@linux-mips.org]
>Sent: Friday, April 29, 2005 7:03 AM
>To: Bryan Althouse
>Cc: linux-mips@linux-mips.org; TheNop@gmx.net
>Subject: Re: your mail
>
>On Thu, Apr 28, 2005 at 03:15:49PM -0400, Bryan Althouse wrote:
>
>
>
>>I would like to use a 2.6.x kernel with my Yosemite/HalfDome board.
>>Somehow, I am unable to compile the kernel. I have tried the 2.6.10
>>
>>
>kernel
>
>
>>trees from ftp.pmc-sierra.com and also the latest 2.6.12 snapshot from
>>linux-mips. I am using the 3.3.x cross compile tools from
>>ftp.pmc-sierra.com . The 2.4.x kernels from PMC compile fine.
>>
>>In the case of 2.6.10 from ftp.pmc-sierra.com, my error looks like:
>> Make[3]: *** [drivers/char/agp/backend.o] Error 1
>>
>>
>
>Configuring AGP support for a MIPS kernel is obviously nonsense. Disable
>CONFIG_AGP.
>
>
>
>>In the case of 2.6.12 from linux-mips, my error looks like:
>> drivers/net/titan_ge.c1950: error: 'titan_device_remove" undeclared
>>here (not in a function)
>>
>>
>
>Whoops, a bug. The function indeed doesn't exist even though it should,
>will fix that. You will hit this bug only if compiling the titan driver
>as a module, so workaround set CONFIG_TITAN_GE=y. Which for the typical
>titan-based device seems to be the preferable choice anyway.
>
> Ralf
>
>
>
>
>
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re:
2005-04-28 19:15 ` Bryan Althouse
(?)
(?)
@ 2005-05-04 13:55 ` Alex Gonzalez
2005-05-04 14:22 ` RE: Bryan Althouse
2005-05-05 14:55 ` Re: Ralf Baechle
-1 siblings, 2 replies; 17+ messages in thread
From: Alex Gonzalez @ 2005-05-04 13:55 UTC (permalink / raw)
To: Bryan Althouse; +Cc: linux-mips, TheNop
I had no problems compiling the linux-2.6.10 kernel from pmc-sierra's
ftp.
> Make[3]: *** [drivers/char/agp/backend.o] Error 1
Do you need AGP support? My kernel is configured without it.
Alex
On Thu, 2005-04-28 at 20:15, Bryan Althouse wrote:
> Hello,
>
> I would like to use a 2.6.x kernel with my Yosemite/HalfDome board.
> Somehow, I am unable to compile the kernel. I have tried the 2.6.10 kernel
> trees from ftp.pmc-sierra.com and also the latest 2.6.12 snapshot from
> linux-mips. I am using the 3.3.x cross compile tools from
> ftp.pmc-sierra.com . The 2.4.x kernels from PMC compile fine.
>
> In the case of 2.6.10 from ftp.pmc-sierra.com, my error looks like:
> Make[3]: *** [drivers/char/agp/backend.o] Error 1
>
>
> In the case of 2.6.12 from linux-mips, my error looks like:
> drivers/net/titan_ge.c1950: error: 'titan_device_remove" undeclared
> here (not in a function)
>
> My compile process is like so:
> make mrproper
> make xconfig
> make oldconfig
> make ARCH=mips CROSS_COMPILE=/<tool_path>/mips64-linux-gnu- vmlinux
>
> Could someone share their .config with me, or make some suggestions?
>
> Thank you,
> Bryan
>
>
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: your mail (yosemite + 2.6.x issues)
2005-04-29 16:08 ` Manish Lachwani
@ 2005-05-04 14:05 ` Alex Gonzalez
0 siblings, 0 replies; 17+ messages in thread
From: Alex Gonzalez @ 2005-05-04 14:05 UTC (permalink / raw)
To: Manish Lachwani; +Cc: Bryan Althouse, 'Ralf Baechle', linux-mips
I remember having some problem with the serial driver for the rm9000.
pmc-sierra had to supply a fix.
Their 2.6.10-rc3-20041208 kernel had the fix applied. Sorry not to
remember more details.
Alex
On Fri, 2005-04-29 at 17:08, Manish Lachwani wrote:
> Do you load the kernel first and then do a "go"? If you load the kernel
> first using the "load" command, then you should come back to the PMON
> prompt where you can type a "go". I was not clear about it from your
> email below.
>
> Thanks
> Manish Lachwani
>
> Bryan Althouse wrote:
>
> >Thanks Ralf, now I can compile the kernel. But, I don't get any serial
> >console output when I try to boot it. Actually, I get a single line that
> >looks like this:
> >
> >Loading file: tftp://192.168.2.39/vmlinux (elf)
> >0x80100000/2288188 + 0x8032ea3c/111372(z) + 4125 syms|
> >
> >I have found PMC's "yosemite_defconfig" file and I am using it as the
> >".config". I have tried using CONFIG_PMC_INTERNAL_UART=y and I have also
> >tried commenting it out. Either way, I get no console output.
> >
> >Thanks for the help!
> >Bryan
> >
> >-----Original Message-----
> >From: Ralf Baechle [mailto:ralf@linux-mips.org]
> >Sent: Friday, April 29, 2005 7:03 AM
> >To: Bryan Althouse
> >Cc: linux-mips@linux-mips.org; TheNop@gmx.net
> >Subject: Re: your mail
> >
> >On Thu, Apr 28, 2005 at 03:15:49PM -0400, Bryan Althouse wrote:
> >
> >
> >
> >>I would like to use a 2.6.x kernel with my Yosemite/HalfDome board.
> >>Somehow, I am unable to compile the kernel. I have tried the 2.6.10
> >>
> >>
> >kernel
> >
> >
> >>trees from ftp.pmc-sierra.com and also the latest 2.6.12 snapshot from
> >>linux-mips. I am using the 3.3.x cross compile tools from
> >>ftp.pmc-sierra.com . The 2.4.x kernels from PMC compile fine.
> >>
> >>In the case of 2.6.10 from ftp.pmc-sierra.com, my error looks like:
> >> Make[3]: *** [drivers/char/agp/backend.o] Error 1
> >>
> >>
> >
> >Configuring AGP support for a MIPS kernel is obviously nonsense. Disable
> >CONFIG_AGP.
> >
> >
> >
> >>In the case of 2.6.12 from linux-mips, my error looks like:
> >> drivers/net/titan_ge.c1950: error: 'titan_device_remove" undeclared
> >>here (not in a function)
> >>
> >>
> >
> >Whoops, a bug. The function indeed doesn't exist even though it should,
> >will fix that. You will hit this bug only if compiling the titan driver
> >as a module, so workaround set CONFIG_TITAN_GE=y. Which for the typical
> >titan-based device seems to be the preferable choice anyway.
> >
> > Ralf
> >
> >
> >
> >
> >
>
>
^ permalink raw reply [flat|nested] 17+ messages in thread
* RE:
@ 2005-05-04 14:22 ` Bryan Althouse
0 siblings, 0 replies; 17+ messages in thread
From: Bryan Althouse @ 2005-05-04 14:22 UTC (permalink / raw)
To: 'Alex Gonzalez'; +Cc: linux-mips
Thanks for your help. Yes I do need SMP. Jason Liu of PMC did a check on
my serial number, and found that I have rev 1.1 silicon. He says I need rev
1.2 in order to use a 2.6.x kernel. I have shipped my hardware back to them
for an upgrade. Hopefully, I'll be back in business in a week or two.
Bryan
-----Original Message-----
From: Alex Gonzalez [mailto:linux-mips@packetvision.com]
Sent: Wednesday, May 04, 2005 9:56 AM
To: Bryan Althouse
Cc: linux-mips@linux-mips.org; TheNop@gmx.net
Subject: Re:
I had no problems compiling the linux-2.6.10 kernel from pmc-sierra's
ftp.
> Make[3]: *** [drivers/char/agp/backend.o] Error 1
Do you need AGP support? My kernel is configured without it.
Alex
On Thu, 2005-04-28 at 20:15, Bryan Althouse wrote:
> Hello,
>
> I would like to use a 2.6.x kernel with my Yosemite/HalfDome board.
> Somehow, I am unable to compile the kernel. I have tried the 2.6.10
kernel
> trees from ftp.pmc-sierra.com and also the latest 2.6.12 snapshot from
> linux-mips. I am using the 3.3.x cross compile tools from
> ftp.pmc-sierra.com . The 2.4.x kernels from PMC compile fine.
>
> In the case of 2.6.10 from ftp.pmc-sierra.com, my error looks like:
> Make[3]: *** [drivers/char/agp/backend.o] Error 1
>
>
> In the case of 2.6.12 from linux-mips, my error looks like:
> drivers/net/titan_ge.c1950: error: 'titan_device_remove" undeclared
> here (not in a function)
>
> My compile process is like so:
> make mrproper
> make xconfig
> make oldconfig
> make ARCH=mips CROSS_COMPILE=/<tool_path>/mips64-linux-gnu- vmlinux
>
> Could someone share their .config with me, or make some suggestions?
>
> Thank you,
> Bryan
>
>
^ permalink raw reply [flat|nested] 17+ messages in thread
* RE:
@ 2005-05-04 14:22 ` Bryan Althouse
0 siblings, 0 replies; 17+ messages in thread
From: Bryan Althouse @ 2005-05-04 14:22 UTC (permalink / raw)
To: 'Alex Gonzalez'; +Cc: linux-mips
Thanks for your help. Yes I do need SMP. Jason Liu of PMC did a check on
my serial number, and found that I have rev 1.1 silicon. He says I need rev
1.2 in order to use a 2.6.x kernel. I have shipped my hardware back to them
for an upgrade. Hopefully, I'll be back in business in a week or two.
Bryan
-----Original Message-----
From: Alex Gonzalez [mailto:linux-mips@packetvision.com]
Sent: Wednesday, May 04, 2005 9:56 AM
To: Bryan Althouse
Cc: linux-mips@linux-mips.org; TheNop@gmx.net
Subject: Re:
I had no problems compiling the linux-2.6.10 kernel from pmc-sierra's
ftp.
> Make[3]: *** [drivers/char/agp/backend.o] Error 1
Do you need AGP support? My kernel is configured without it.
Alex
On Thu, 2005-04-28 at 20:15, Bryan Althouse wrote:
> Hello,
>
> I would like to use a 2.6.x kernel with my Yosemite/HalfDome board.
> Somehow, I am unable to compile the kernel. I have tried the 2.6.10
kernel
> trees from ftp.pmc-sierra.com and also the latest 2.6.12 snapshot from
> linux-mips. I am using the 3.3.x cross compile tools from
> ftp.pmc-sierra.com . The 2.4.x kernels from PMC compile fine.
>
> In the case of 2.6.10 from ftp.pmc-sierra.com, my error looks like:
> Make[3]: *** [drivers/char/agp/backend.o] Error 1
>
>
> In the case of 2.6.12 from linux-mips, my error looks like:
> drivers/net/titan_ge.c1950: error: 'titan_device_remove" undeclared
> here (not in a function)
>
> My compile process is like so:
> make mrproper
> make xconfig
> make oldconfig
> make ARCH=mips CROSS_COMPILE=/<tool_path>/mips64-linux-gnu- vmlinux
>
> Could someone share their .config with me, or make some suggestions?
>
> Thank you,
> Bryan
>
>
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re:
2005-05-04 14:22 ` RE: Bryan Althouse
(?)
@ 2005-05-04 16:42 ` Ralf Baechle
-1 siblings, 0 replies; 17+ messages in thread
From: Ralf Baechle @ 2005-05-04 16:42 UTC (permalink / raw)
To: Bryan Althouse; +Cc: 'Alex Gonzalez', linux-mips
On Wed, May 04, 2005 at 10:22:08AM -0400, Bryan Althouse wrote:
> Thanks for your help. Yes I do need SMP. Jason Liu of PMC did a check on
> my serial number, and found that I have rev 1.1 silicon. He says I need rev
> 1.2 in order to use a 2.6.x kernel. I have shipped my hardware back to them
> for an upgrade. Hopefully, I'll be back in business in a week or two.
That is correct. Earlier revisions didn't implement some functionality
that is crucial to SMP. Since only PMC and a small number outside parties
have pre-1.2 silicon I agreed with PMC to not try to support earlier
revisions.
Ralf
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re:
2005-05-04 13:55 ` Alex Gonzalez
2005-05-04 14:22 ` RE: Bryan Althouse
@ 2005-05-05 14:55 ` Ralf Baechle
2005-05-05 15:08 ` RE: Bryan Althouse
` (2 more replies)
1 sibling, 3 replies; 17+ messages in thread
From: Ralf Baechle @ 2005-05-05 14:55 UTC (permalink / raw)
To: Alex Gonzalez; +Cc: Bryan Althouse, linux-mips, TheNop
On Wed, May 04, 2005 at 02:55:49PM +0100, Alex Gonzalez wrote:
> Do you need AGP support? My kernel is configured without it.
I'm not aware of any AGP bridge for MIPS systems.
Ralf
^ permalink raw reply [flat|nested] 17+ messages in thread
* RE:
@ 2005-05-05 15:08 ` Bryan Althouse
0 siblings, 0 replies; 17+ messages in thread
From: Bryan Althouse @ 2005-05-05 15:08 UTC (permalink / raw)
To: 'Ralf Baechle'; +Cc: linux-mips
Ralf,
Right, there is no AGP. At first, I was unable to locate the
yosemite_defconfig, so I was running xconfig without a properly defaulted
.config. I inadvertently left the AGP support enabled. Now that I am
starting with yosemite_defcofig as a base-line, I have no problems compiling
the kernel.
Thanks,
Bryan
-----Original Message-----
From: Ralf Baechle [mailto:ralf@linux-mips.org]
Sent: Thursday, May 05, 2005 10:55 AM
To: Alex Gonzalez
Cc: Bryan Althouse; linux-mips@linux-mips.org; TheNop@gmx.net
Subject: Re:
On Wed, May 04, 2005 at 02:55:49PM +0100, Alex Gonzalez wrote:
> Do you need AGP support? My kernel is configured without it.
I'm not aware of any AGP bridge for MIPS systems.
Ralf
^ permalink raw reply [flat|nested] 17+ messages in thread
* RE:
@ 2005-05-05 15:08 ` Bryan Althouse
0 siblings, 0 replies; 17+ messages in thread
From: Bryan Althouse @ 2005-05-05 15:08 UTC (permalink / raw)
To: 'Ralf Baechle'; +Cc: linux-mips
Ralf,
Right, there is no AGP. At first, I was unable to locate the
yosemite_defconfig, so I was running xconfig without a properly defaulted
.config. I inadvertently left the AGP support enabled. Now that I am
starting with yosemite_defcofig as a base-line, I have no problems compiling
the kernel.
Thanks,
Bryan
-----Original Message-----
From: Ralf Baechle [mailto:ralf@linux-mips.org]
Sent: Thursday, May 05, 2005 10:55 AM
To: Alex Gonzalez
Cc: Bryan Althouse; linux-mips@linux-mips.org; TheNop@gmx.net
Subject: Re:
On Wed, May 04, 2005 at 02:55:49PM +0100, Alex Gonzalez wrote:
> Do you need AGP support? My kernel is configured without it.
I'm not aware of any AGP bridge for MIPS systems.
Ralf
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re:
2005-05-05 15:08 ` RE: Bryan Althouse
(?)
@ 2005-05-05 15:11 ` Ralf Baechle
-1 siblings, 0 replies; 17+ messages in thread
From: Ralf Baechle @ 2005-05-05 15:11 UTC (permalink / raw)
To: Bryan Althouse; +Cc: linux-mips
On Thu, May 05, 2005 at 11:08:39AM -0400, Bryan Althouse wrote:
> Right, there is no AGP. At first, I was unable to locate the
> yosemite_defconfig, so I was running xconfig without a properly defaulted
> .config. I inadvertently left the AGP support enabled. Now that I am
> starting with yosemite_defcofig as a base-line, I have no problems compiling
> the kernel.
Oh, I was pretty sure you'd not have AGP. However there are a few systems
which need high graphics performance and that's where AGP would make sense,
so while it's not very likely I could see some need for AGP for such
systems and did my posting in the hope somebody would raise his hand in
case there's AGP for MIPS after all ...
Ralf
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re:
2005-05-05 14:55 ` Re: Ralf Baechle
2005-05-05 15:08 ` RE: Bryan Althouse
@ 2005-05-05 15:57 ` Geert Uytterhoeven
2005-05-05 17:13 ` Re: Christoph Hellwig
2 siblings, 0 replies; 17+ messages in thread
From: Geert Uytterhoeven @ 2005-05-05 15:57 UTC (permalink / raw)
To: Ralf Baechle
Cc: Alex Gonzalez, Bryan Althouse, Linux/MIPS Development, TheNop
On Thu, 5 May 2005, Ralf Baechle wrote:
> On Wed, May 04, 2005 at 02:55:49PM +0100, Alex Gonzalez wrote:
>
> > Do you need AGP support? My kernel is configured without it.
>
> I'm not aware of any AGP bridge for MIPS systems.
And you cannot even select it, since it depends on ALPHA || IA64 || PPC || X86.
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re:
2005-05-05 14:55 ` Re: Ralf Baechle
2005-05-05 15:08 ` RE: Bryan Althouse
2005-05-05 15:57 ` Re: Geert Uytterhoeven
@ 2005-05-05 17:13 ` Christoph Hellwig
2 siblings, 0 replies; 17+ messages in thread
From: Christoph Hellwig @ 2005-05-05 17:13 UTC (permalink / raw)
To: Ralf Baechle; +Cc: Alex Gonzalez, Bryan Althouse, linux-mips, TheNop
On Thu, May 05, 2005 at 03:55:09PM +0100, Ralf Baechle wrote:
> On Wed, May 04, 2005 at 02:55:49PM +0100, Alex Gonzalez wrote:
>
> > Do you need AGP support? My kernel is configured without it.
>
> I'm not aware of any AGP bridge for MIPS systems.
The SGI Onyx 4 and Tezro systems have AGP slots, but they a really
running as PCI-X with an odd form factor and there's no AGP GART
(which isn't needed as the systems have a real iommu)
^ permalink raw reply [flat|nested] 17+ messages in thread
end of thread, other threads:[~2005-05-05 17:14 UTC | newest]
Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-04-28 19:15 Bryan Althouse
2005-04-28 19:15 ` Bryan Althouse
2005-04-29 11:02 ` your mail Ralf Baechle
2005-04-29 13:52 ` your mail (yosemite + 2.6.x issues) Bryan Althouse
2005-04-29 13:52 ` Bryan Althouse
2005-04-29 16:08 ` Manish Lachwani
2005-05-04 14:05 ` Alex Gonzalez
2005-05-04 13:55 ` Alex Gonzalez
2005-05-04 14:22 ` Bryan Althouse
2005-05-04 14:22 ` RE: Bryan Althouse
2005-05-04 16:42 ` Ralf Baechle
2005-05-05 14:55 ` Re: Ralf Baechle
2005-05-05 15:08 ` Bryan Althouse
2005-05-05 15:08 ` RE: Bryan Althouse
2005-05-05 15:11 ` Ralf Baechle
2005-05-05 15:57 ` Re: Geert Uytterhoeven
2005-05-05 17:13 ` Re: Christoph Hellwig
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.