Re: Symbol unresolved problems..

2003-06-13 Thread Mark Vojkovich
   It's in the libvbe.a module.  We'll probably need to see the
/var/log/XFree86.0.log to say more about why that's not resolved.
It's usually because the driver didn't request that it be loaded,
or if it crashes before then for some reason you often see messages
about unresolved symbols when the server is aborting.


Mark.

On Thu, 12 Jun 2003, Jason Kim wrote:

> Thank you ...
> 
> No I didn't modify this symbol..  This symbol is "vbeFree".
> 
> I didn't touch anything about Savage device driver, but savage_driver.o module can't 
> resolve the vbeFree symbol anymore... T.T
> 
> jason
> 
> - Original Message - 
> From: "Mark Vojkovich" <[EMAIL PROTECTED]>
> To: "Jason Kim" <[EMAIL PROTECTED]>
> Cc: <[EMAIL PROTECTED]>
> Sent: Thursday, June 12, 2003 9:34 PM
> Subject: Re: Symbol unresolved problems..
> 
> 
> >Do you have a specific example?
> > 
> >Are these symbols in your modifications?  You can't call
> > anything you like from within an XFree86 module.  They don't,
> > for instance, link against libc.  There are only specific
> > functions you can call - ones exported by the core server.
> > 
> > Mark.
> > 
> > On Thu, 12 Jun 2003, Jason Kim wrote:
> > 
> > > Hi...
> > > I modified xfree 4.3.? and successfuly compiled and installed it.  When I start 
> > > X, I got some messages like "Symbol x in module x is not resolved".
> > > 
> > > What is the main reason of these problems?  What cause it?
> > > 
> > > thank you..
> > > 
> > 
> > ___
> > Devel mailing list
> > [EMAIL PROTECTED]
> > http://XFree86.Org/mailman/listinfo/devel
> ___
> Devel mailing list
> [EMAIL PROTECTED]
> http://XFree86.Org/mailman/listinfo/devel
> 

___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Re: Symbol unresolved problems..

2003-06-13 Thread Egbert Eich
Can you check if the vbe module is loaded (and not unloaded) at this point?
Better yet, post your log file.

Egbert.


Alex Deucher writes:
 > I had this problem as well at one point when I was messing with the
 > savage driver.  What was weird was I hadn't messed with any of the vbe
 > stuff.  I think it ended up being a bad pointer reference or something
 > like that.  also, if you are attempting to mess with programming
 > dualhead, you need to turn off the "usebios" mode stuff or it will muck
 > up the crtc's.
 > 
 > Alex
 > 
 > --- Jason Kim <[EMAIL PROTECTED]> wrote:
 > > Thank you ...
 > > 
 > > No I didn't modify this symbol..  This symbol is "vbeFree".
 > > 
 > > I didn't touch anything about Savage device driver, but
 > > savage_driver.o module can't resolve the vbeFree symbol anymore...
 > > T.T
 > > 
 > > jason
 > > 
 > 
 > 
 > __
 > Do you Yahoo!?
 > Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
 > http://calendar.yahoo.com
 > ___
 > Devel mailing list
 > [EMAIL PROTECTED]
 > http://XFree86.Org/mailman/listinfo/devel
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Re: Symbol unresolved problems..

2003-06-13 Thread Alex Deucher
I had this problem as well at one point when I was messing with the
savage driver.  What was weird was I hadn't messed with any of the vbe
stuff.  I think it ended up being a bad pointer reference or something
like that.  also, if you are attempting to mess with programming
dualhead, you need to turn off the "usebios" mode stuff or it will muck
up the crtc's.

Alex

--- Jason Kim <[EMAIL PROTECTED]> wrote:
> Thank you ...
> 
> No I didn't modify this symbol..  This symbol is "vbeFree".
> 
> I didn't touch anything about Savage device driver, but
> savage_driver.o module can't resolve the vbeFree symbol anymore...
> T.T
> 
> jason
> 


__
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Re: Symbol unresolved problems..

2003-06-12 Thread Jason Kim
Thank you ...

No I didn't modify this symbol..  This symbol is "vbeFree".

I didn't touch anything about Savage device driver, but savage_driver.o module can't 
resolve the vbeFree symbol anymore... T.T

jason

- Original Message - 
From: "Mark Vojkovich" <[EMAIL PROTECTED]>
To: "Jason Kim" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Thursday, June 12, 2003 9:34 PM
Subject: Re: Symbol unresolved problems..


>Do you have a specific example?
> 
>Are these symbols in your modifications?  You can't call
> anything you like from within an XFree86 module.  They don't,
> for instance, link against libc.  There are only specific
> functions you can call - ones exported by the core server.
> 
> Mark.
> 
> On Thu, 12 Jun 2003, Jason Kim wrote:
> 
> > Hi...
> > I modified xfree 4.3.? and successfuly compiled and installed it.  When I start X, 
> > I got some messages like "Symbol x in module x is not resolved".
> > 
> > What is the main reason of these problems?  What cause it?
> > 
> > thank you..
> > 
> 
> ___
> Devel mailing list
> [EMAIL PROTECTED]
> http://XFree86.Org/mailman/listinfo/devel
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Re: Symbol unresolved problems..

2003-06-12 Thread Mark Vojkovich
   Do you have a specific example?

   Are these symbols in your modifications?  You can't call
anything you like from within an XFree86 module.  They don't,
for instance, link against libc.  There are only specific
functions you can call - ones exported by the core server.

Mark.

On Thu, 12 Jun 2003, Jason Kim wrote:

> Hi...
> I modified xfree 4.3.? and successfuly compiled and installed it.  When I start X, I 
> got some messages like "Symbol x in module x is not resolved".
> 
> What is the main reason of these problems?  What cause it?
> 
> thank you..
> 

___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Symbol unresolved problems..

2003-06-12 Thread Jason Kim



Hi...
I modified xfree 4.3.? and successfuly 
compiled and installed it.  When I start X, I got some messages 
like "Symbol x in module x is not resolved".
 
What is the main reason of these problems?  What cause 
it?
 
thank you..