* [parisc-linux] Odd kernel error
@ 2002-01-30 5:00 Tom
2002-01-30 12:10 ` Carlos O'Donell Jr.
2002-01-30 21:19 ` Thomas Bogendoerfer
0 siblings, 2 replies; 7+ messages in thread
From: Tom @ 2002-01-30 5:00 UTC (permalink / raw)
To: PA-RISC Linux List
Compiling the latest from CVS (-pa16, I think) and at the final make, when
gcc is actually doing the '-o vmlinux' I'm getting:
drivers/video/video.o: In function 'L1260':
drivers/video/video.o(.init.text+0x2554): undefined reference to
'fbcon_sti'
drivers/video/video.o(.init.text+0x255c): undefined reference to
'fbcon_sti'
make: *** [vmlinux] Error 1
This happened with -pa15 also. I downloaded the pre-built -pa15 kernel and
it boots fine, though. Checking, I realized I had disabled PCI in my
config (it's a 715/100, no PCI in it), and remembered some discussion
about PCI being a 'depends-on' item for some things... Is it possible this
is a 'needs PCI' issue?
I have a new kernel compile going on now, with PCI enabled, so we'll see
what happens, but figured I'd toss it out in case someone else is seeing
this.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [parisc-linux] Odd kernel error
2002-01-30 5:00 [parisc-linux] Odd kernel error Tom
@ 2002-01-30 12:10 ` Carlos O'Donell Jr.
2002-01-30 16:02 ` Tom
2002-01-30 21:19 ` Thomas Bogendoerfer
1 sibling, 1 reply; 7+ messages in thread
From: Carlos O'Donell Jr. @ 2002-01-30 12:10 UTC (permalink / raw)
To: Tom; +Cc: parisc-linux
> Compiling the latest from CVS (-pa16, I think) and at the final make, when
> gcc is actually doing the '-o vmlinux' I'm getting:
>
> drivers/video/video.o: In function 'L1260':
> drivers/video/video.o(.init.text+0x2554): undefined reference to
> 'fbcon_sti'
> drivers/video/video.o(.init.text+0x255c): undefined reference to
> 'fbcon_sti'
> make: *** [vmlinux] Error 1
>
> This happened with -pa15 also. I downloaded the pre-built -pa15 kernel and
> it boots fine, though. Checking, I realized I had disabled PCI in my
> config (it's a 715/100, no PCI in it), and remembered some discussion
> about PCI being a 'depends-on' item for some things... Is it possible this
> is a 'needs PCI' issue?
>
> I have a new kernel compile going on now, with PCI enabled, so we'll see
> what happens, but figured I'd toss it out in case someone else is seeing
> this.
>
>
Yes, without PCI you couldn't (until recently) compile
the STI Console.
Matthew believed that some subsequent changes had possibly
fixed this error, but I haven't checked yet.
It might be that STI Console depends on FB to be compiled.
Which can break since STI can still be compiled with FB
config turned off.
And thus you see the error that you have.
c.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [parisc-linux] Odd kernel error
2002-01-30 12:10 ` Carlos O'Donell Jr.
@ 2002-01-30 16:02 ` Tom
0 siblings, 0 replies; 7+ messages in thread
From: Tom @ 2002-01-30 16:02 UTC (permalink / raw)
To: Carlos O'Donell Jr.; +Cc: parisc-linux
> > Tom:
> > Compiling the latest from CVS (-pa16, I think) and at the final make, when
> > gcc is actually doing the '-o vmlinux' I'm getting:
> >
> > drivers/video/video.o: In function 'L1260':
> > drivers/video/video.o(.init.text+0x2554): undefined reference to
> > 'fbcon_sti'
> > drivers/video/video.o(.init.text+0x255c): undefined reference to
> > 'fbcon_sti'
> > make: *** [vmlinux] Error 1
> >
> > This happened with -pa15 also. I downloaded the pre-built -pa15 kernel and
> > it boots fine, though. Checking, I realized I had disabled PCI in my
> > config (it's a 715/100, no PCI in it), and remembered some discussion
> > about PCI being a 'depends-on' item for some things... Is it possible this
> > is a 'needs PCI' issue?
> >
> > I have a new kernel compile going on now, with PCI enabled, so we'll see
> > what happens, but figured I'd toss it out in case someone else is seeing
> > this.
>
> On Wed, 30 Jan 2002, Carlos O'Donell Jr. wrote:
> Yes, without PCI you couldn't (until recently) compile
> the STI Console.
>
> Matthew believed that some subsequent changes had possibly
> fixed this error, but I haven't checked yet.
>
> It might be that STI Console depends on FB to be compiled.
> Which can break since STI can still be compiled with FB
> config turned off.
>
> And thus you see the error that you have.
The recompile with PCI enabled has the same error, except it shows as
'0x2590' and '0x2598' instead of the '0x2554' and '0x255c' from last time.
Repeated the same addresses twice...
Not quite sure where to go from here, although I may download the
'linux-latest.tar.gz' copy from CVS and see if perhaps I've got a bad
snippet of code someplace...
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [parisc-linux] Odd kernel error
2002-01-30 5:00 [parisc-linux] Odd kernel error Tom
2002-01-30 12:10 ` Carlos O'Donell Jr.
@ 2002-01-30 21:19 ` Thomas Bogendoerfer
2002-01-31 17:55 ` Tom
2002-02-01 5:57 ` Jbit of Plasma
1 sibling, 2 replies; 7+ messages in thread
From: Thomas Bogendoerfer @ 2002-01-30 21:19 UTC (permalink / raw)
To: Tom; +Cc: PA-RISC Linux List
On Tue, Jan 29, 2002 at 08:00:21PM -0900, Tom wrote:
> Compiling the latest from CVS (-pa16, I think) and at the final make, when
> gcc is actually doing the '-o vmlinux' I'm getting:
>
> drivers/video/video.o: In function 'L1260':
> drivers/video/video.o(.init.text+0x2554): undefined reference to
> 'fbcon_sti'
> drivers/video/video.o(.init.text+0x255c): undefined reference to
> 'fbcon_sti'
> make: *** [vmlinux] Error 1
are you using " Advanced low level driver options" ? If yes, there is
a bug in driver/video/Config.in, which doesn't let you select fbcon sti
for advanced config. Turn off the Advanced low level thing and the link
error should go away.
Thomas.
--
Crap can work. Given enough thrust pigs will fly, but it's not necessary a
good idea. [ Alexander Viro on linux-kernel ]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [parisc-linux] Odd kernel error
2002-01-30 21:19 ` Thomas Bogendoerfer
@ 2002-01-31 17:55 ` Tom
2002-02-01 5:57 ` Jbit of Plasma
1 sibling, 0 replies; 7+ messages in thread
From: Tom @ 2002-01-31 17:55 UTC (permalink / raw)
To: Thomas Bogendoerfer; +Cc: PA-RISC Linux List
> On Tue, Jan 29, 2002 at 08:00:21PM -0900, Tom wrote:
> > Compiling the latest from CVS (-pa16, I think) and at the final make, when
> > gcc is actually doing the '-o vmlinux' I'm getting:
> >
> > drivers/video/video.o: In function 'L1260':
> > drivers/video/video.o(.init.text+0x2554): undefined reference to
> > 'fbcon_sti'
> > drivers/video/video.o(.init.text+0x255c): undefined reference to
> > 'fbcon_sti'
> > make: *** [vmlinux] Error 1
>
> On Wed, 30 Jan 2002, Thomas Bogendoerfer wrote:
> are you using " Advanced low level driver options" ? If yes, there is
> a bug in driver/video/Config.in, which doesn't let you select fbcon sti
> for advanced config. Turn off the Advanced low level thing and the link
> error should go away.
Okay - FTR, enabling PCI and disabling the 'advanced low-level driver
options' allows a clean compile, which happily boots a 715/100 and runs
KDE using the aforementioned XF86Config-4 file.Thanks to all who chipped
in - this gives me hope to get X running on the C180, now that I've got
space to set it up! :-)
BTW, anyone have any feedback on some of the places selling PA-RISC
machines on eBay? Southwest Computer Solutions seems to have a lot of them
at reasonable prices, ditto a few other places, but some seem to have no
idea what these things are and tend to say 'untested-as-is' with a minimum
$200+sh on a C110...
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [parisc-linux] Odd kernel error
2002-01-30 21:19 ` Thomas Bogendoerfer
2002-01-31 17:55 ` Tom
@ 2002-02-01 5:57 ` Jbit of Plasma
2002-02-01 7:38 ` Grant Grundler
1 sibling, 1 reply; 7+ messages in thread
From: Jbit of Plasma @ 2002-02-01 5:57 UTC (permalink / raw)
To: parisc-linux
Hi,
If you change the drivers/video/sti/Makefile to ...
obj-$(CONFIG_STI_CONSOLE) += sticore.o sticon.o ../fbcon-sti.o
and somehow get ../fbcon-sti.o to compile, it works perfect...
Theres proberly a better way to get it compiled and linked in, but this way seems to work (even with the Advanced driver stuff enabled)
BTW: is it possible to get a 712 to display more then 8bpp? If so, is any work being done on it?
--jbit
_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2002-02-01 7:38 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-01-30 5:00 [parisc-linux] Odd kernel error Tom
2002-01-30 12:10 ` Carlos O'Donell Jr.
2002-01-30 16:02 ` Tom
2002-01-30 21:19 ` Thomas Bogendoerfer
2002-01-31 17:55 ` Tom
2002-02-01 5:57 ` Jbit of Plasma
2002-02-01 7:38 ` Grant Grundler
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.