From: Boris B. <bo...@ki...> - 2002-06-29 21:54:07
|
Hi all. During compile i get this error. I choosed AT keyb as module.. Anyone else got this or is it just me ? BUILD_BASENAME=atkbd -c -o atkbd.o atkbd.c atkbd.c:123: field `tq' has incomplete type atkbd.c: In function `atkbd_interrupt': atkbd.c:164: warning: implicit declaration of function `queue_task' atkbd.c:164: `tq_immediate_R0da0dcd1' undeclared (first use in this function) atkbd.c:164: (Each undeclared identifier is reported only once atkbd.c:164: for each function it appears in.) make[3]: *** [atkbd.o] Error 1 -- With best regards, Boris B. |
From: Svetoslav S. <ga...@st...> - 2002-06-30 18:39:00
|
Quoting Boris Bezlaj <bo...@ki...>: > Hi all. > > During compile i get this error. I choosed AT keyb as module.. > Anyone else got this or is it just me ? > Hi i'm running it curruntly with a custom 2.4, ( only under X with the patched X server wich supports event interface, thanks to Miguel Freitas http://cambuca.ldhs.cetuc.puc-rio.br/multiuser) but due to keyboard interface ( which AFAIK can not be compiled ) under console or normal X i have no keyboard may be it is a problem from 2.5.24 , you probbably should try the patches from linuxHQ or may be to adopt ruby to the -dj tree and i think it is a good idea to compile it in, not as module, cause until the kernel loads it ( if it loads it ) you don't have a keyboard > BUILD_BASENAME=atkbd -c -o atkbd.o atkbd.c > atkbd.c:123: field `tq' has incomplete type > atkbd.c: In function `atkbd_interrupt': > atkbd.c:164: warning: implicit declaration of function `queue_task' > atkbd.c:164: `tq_immediate_R0da0dcd1' undeclared (first use in this > function) > atkbd.c:164: (Each undeclared identifier is reported only once > atkbd.c:164: for each function it appears in.) > make[3]: *** [atkbd.o] Error 1 > > -- > With best regards, > > Boris B. > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > No, I will not fix your computer. > http://thinkgeek.com/sf > _______________________________________________ > Linuxconsole-dev mailing list > Lin...@li... > https://lists.sourceforge.net/lists/listinfo/linuxconsole-dev > |
From: Boris B. <bo...@ki...> - 2002-06-30 20:34:25
|
On Sun, Jun 30, 2002 at 08:35:41PM +0200, Svetoslav Slavtchev wrote: > Quoting Boris Bezlaj <bo...@ki...>: > > > Hi all. > > > > During compile i get this error. I choosed AT keyb as module.. > > Anyone else got this or is it just me ? > > > Hi > i'm running it curruntly with a custom 2.4, > ( only under X with the patched X server wich supports event interface, > thanks to Miguel Freitas http://cambuca.ldhs.cetuc.puc-rio.br/multiuser) > but due to keyboard interface ( which AFAIK can not be compiled ) > under console or normal X i have no keyboard > may be it is a problem from 2.5.24 , you probbably should try the patches from > linuxHQ or may be to adopt ruby to the -dj tree you mean linuxhq.com ? i will look in the -dj tree for changes.. > > and i think it is a good idea to compile it in, not as module, > cause until the kernel loads it ( if it loads it ) you don't have a keyboard i thought of that..i insmod it early in rc scripts OTOH, you are right.. > > > BUILD_BASENAME=atkbd -c -o atkbd.o atkbd.c > > atkbd.c:123: field `tq' has incomplete type > > atkbd.c: In function `atkbd_interrupt': > > atkbd.c:164: warning: implicit declaration of function `queue_task' > > atkbd.c:164: `tq_immediate_R0da0dcd1' undeclared (first use in this > > function) > > atkbd.c:164: (Each undeclared identifier is reported only once > > atkbd.c:164: for each function it appears in.) > > make[3]: *** [atkbd.o] Error 1 > > -- With best regards, Boris B. |
From: Svetoslav S. <ga...@st...> - 2002-06-30 21:37:49
|
Quoting Boris Bezlaj <bo...@ki...>: > On Sun, Jun 30, 2002 at 08:35:41PM +0200, Svetoslav Slavtchev wrote: > > Quoting Boris Bezlaj <bo...@ki...>: > > > > > Hi all. > > > > > > During compile i get this error. I choosed AT keyb as module.. > > > Anyone else got this or is it just me ? > > > > > Hi > > i'm running it curruntly with a custom 2.4, > > ( only under X with the patched X server wich supports event > interface, > > thanks to Miguel Freitas > http://cambuca.ldhs.cetuc.puc-rio.br/multiuser) > > but due to keyboard interface ( which AFAIK can not be compiled ) > > under console or normal X i have no keyboard > > may be it is a problem from 2.5.24 , you probbably should try the > patches from > > linuxHQ or may be to adopt ruby to the -dj tree > > you mean linuxhq.com ? right :) http://www.linuxhq.com/kernel/v2.5/unofficial/v2.5.24/ > i will look in the -dj tree for changes.. > > > > > and i think it is a good idea to compile it in, not as module, > > cause until the kernel loads it ( if it loads it ) you don't have a > keyboard > > i thought of that..i insmod it early in rc scripts > OTOH, you are right.. how did you compiled keyboard interface, handle_scancode and kbd_ledfunc are still in drivers/input/keybdev.c, but they are removed from drivers/char/keyboard.c where they used to be exported, -->> unresolved symbols in keybdev.o -->> the kernel doesn't support keyboards any ideas |
From: Boris B. <bo...@ki...> - 2002-06-30 21:48:24
|
On Sun, Jun 30, 2002 at 11:34:12PM +0200, Svetoslav Slavtchev wrote: ---- snip snap ---- > how did you compiled keyboard interface, > handle_scancode and kbd_ledfunc are still in drivers/input/keybdev.c, but they > are removed from drivers/char/keyboard.c where they used to be exported, > -->> unresolved symbols in keybdev.o -->> the kernel doesn't support keyboards > > any ideas You mentioned you run ruby code on 2.4? maybe there's your problem with unresolved symbols.. i applied ruby on top of vanilla 2.5.24 and the first problem i got was keyboard/built_in.o..there was no such file, apparently Makefiles don't match.. So i linked it to keybdev.o? (which was wrong) and got till atkbd.o module. The kernel image compiled/linked fine tho, but i didn't try it :) -- With best regards, Boris B. |
From: Boris B. <bo...@ki...> - 2002-07-01 16:39:35
|
On Mon, Jul 01, 2002 at 12:12:31AM +0200, Svetoslav Slavtchev wrote: > Quoting Boris Bezlaj <bo...@ki...>: > > > On Sun, Jun 30, 2002 at 11:34:12PM +0200, Svetoslav Slavtchev wrote: > > > > ---- snip snap ---- > > > > > how did you compiled keyboard interface, > > > handle_scancode and kbd_ledfunc are still in drivers/input/keybdev.c, > > but they > > > are removed from drivers/char/keyboard.c where they used to be > > exported, > > > -->> unresolved symbols in keybdev.o -->> the kernel doesn't support > > keyboards > > > > > > any ideas > > > > You mentioned you run ruby code on 2.4? maybe there's your problem with > > unresolved symbols.. > > > > i applied ruby on top of vanilla 2.5.24 and the first problem i got was > > keyboard/built_in.o..there was no such file, apparently Makefiles don't > > match.. > > So i linked it to keybdev.o? (which was wrong) and got till atkbd.o > > module. > > The kernel image compiled/linked fine tho, but i didn't try it :) > > i've tried 2.5 as well, but with the same result, > have you compiled keybdev in the kernel, or as modules, > if as modules , what said depmod -a System.map at make modules_install > the both functions are in keybdev.c and in normal 2.5 they are exported as > symbols from drivers/char/keyboard.c but are missing in ruby > in ruby they are not defined > i nevere got to modules_install as i have atkbd.c as module (which failed to build) looks like current CVS version is "in between" ..better to wait some time -- With best regards, Boris B. |