View previous topic :: View next topic |
Author |
Message |
Zviratko Tux's lil' helper
Joined: 21 Feb 2004 Posts: 106 Location: Prague, Czech Republic
|
Posted: Sat Feb 28, 2004 12:56 am Post subject: |
|
|
Compiles fine on my laptop, on the other machine it does not
Code: |
CC fs/binfmt_aout.o
fs/binfmt_aout.c: In function `load_aout_binary':
fs/binfmt_aout.c:533: warning: ISO C90 forbids mixed declarations and code
fs/binfmt_aout.c:545: error: initializer element is not constant
fs/binfmt_aout.c:546: error: initializer element is not constant
fs/binfmt_aout.c:546: warning: ISO C90 forbids mixed declarations and code
fs/binfmt_aout.c:547: error: syntax error at end of input
fs/binfmt_aout.c:34: warning: `load_aout_library' used but never defined
make[1]: *** [fs/binfmt_aout.o] Error 1
make: *** [fs] Error 2
|
UPDATE: PaX broke AOUT compatibility...[/b] |
|
Back to top |
|
|
Gandalf the White Guru
Joined: 17 Dec 2003 Posts: 320 Location: Verdun, Canada
|
Posted: Sat Feb 28, 2004 1:57 am Post subject: |
|
|
Excellent job on this one. I had the messed up kernel panic under love5, but this one works great! Another great release! Thanks! |
|
Back to top |
|
|
Nebvin Tux's lil' helper
Joined: 10 Oct 2002 Posts: 83 Location: Alberta, Canada
|
Posted: Sat Feb 28, 2004 2:22 am Post subject: |
|
|
Has anyone got the dxr3 drivers working? I have a bt865 based card and the modules seem to load fine, but I don't get any devices. I tried manually creating the devices to see if it was a udev problem, but that doesn't work either. _________________ Nebbie
"There are 10 types of people in the world, those that understand binary and those that don't." |
|
Back to top |
|
|
PaulGMiller n00b
Joined: 26 Feb 2004 Posts: 2
|
Posted: Sat Feb 28, 2004 2:30 am Post subject: ck and love overlap |
|
|
Hey steel I've been playing around with the <a href="http://members.optusnet.com.au/ckolivas/kernel/">ck-sources</a> and the love/mm sources. I was just curious are any or all of the ck-sources scheduler policies or hyperthreading optimizations in mm or love. If not are some of them and which? Thanls for the hyper release schedule
Miller |
|
Back to top |
|
|
steel300 Veteran
Joined: 10 Jul 2003 Posts: 1155
|
Posted: Sat Feb 28, 2004 2:55 am Post subject: Re: ck and love overlap |
|
|
PaulGMiller wrote: | Hey steel I've been playing around with the [url=http://members.optusnet.com.au/ckolivas/kernel/>ck-sources[/url] and the love/mm sources. I was just curious are any or all of the ck-sources scheduler policies or hyperthreading optimizations in mm or love. If not are some of them and which? Thanls for the hyper release schedule
Miller |
Love-sources does implement it's own scheduler. It is the work of Nick Piggin. There are similarities between ck-sources and love-sources. Many of Con's scheduling polices are included in mm, and are thus included in love-sources. IIRC, almost everything except his nice aware HT support policies are in love-sources. I have added Nick's sources because they are better written and more efficient (I have found). _________________ Rationality is the recognition of the fact that nothing can alter the truth and nothing can take precedence over that act of perceiving it. |
|
Back to top |
|
|
steel300 Veteran
Joined: 10 Jul 2003 Posts: 1155
|
Posted: Sat Feb 28, 2004 2:56 am Post subject: |
|
|
Zviratko wrote: | Compiles fine on my laptop, on the other machine it does not
Code: |
CC fs/binfmt_aout.o
fs/binfmt_aout.c: In function `load_aout_binary':
fs/binfmt_aout.c:533: warning: ISO C90 forbids mixed declarations and code
fs/binfmt_aout.c:545: error: initializer element is not constant
fs/binfmt_aout.c:546: error: initializer element is not constant
fs/binfmt_aout.c:546: warning: ISO C90 forbids mixed declarations and code
fs/binfmt_aout.c:547: error: syntax error at end of input
fs/binfmt_aout.c:34: warning: `load_aout_library' used but never defined
make[1]: *** [fs/binfmt_aout.o] Error 1
make: *** [fs] Error 2
|
UPDATE: PaX broke AOUT compatibility...[/b] |
Disable "Use legacy ELF header marking" and "Use ELF program header marking" under PaX Control. _________________ Rationality is the recognition of the fact that nothing can alter the truth and nothing can take precedence over that act of perceiving it. |
|
Back to top |
|
|
CheshireCat Guru
Joined: 25 Aug 2002 Posts: 572
|
Posted: Sat Feb 28, 2004 3:25 am Post subject: |
|
|
Thanks for the great work, steel300... now that PaX is back, I'll be feeling the love again soon |
|
Back to top |
|
|
iDrainoi n00b
Joined: 06 Jan 2003 Posts: 24
|
Posted: Sat Feb 28, 2004 4:10 am Post subject: |
|
|
Can someone explain something to me?.. I understand that the kernel now has PCMCIA support.. so is the pcmcia service still needed?. I ask because I am desperately trying to get my orinoco classic gold card to work in promiscuous mode. From what I understand love6 has the orinoco/hermes monitor mode patch, but it doesn't seem to work for me so I was wondering if when I pop it in is the pcmcia service using a different set of drivers? I'm lost.. on another note, great patching steel!
-Josh |
|
Back to top |
|
|
Bague Apprentice
Joined: 09 Feb 2004 Posts: 292
|
Posted: Sat Feb 28, 2004 6:01 am Post subject: |
|
|
Few questions...
A) Is there a way to get supermount in love?
B) How do you upgrade the love version without completely reconfiguring the kernel? |
|
Back to top |
|
|
CheshireCat Guru
Joined: 25 Aug 2002 Posts: 572
|
Posted: Sat Feb 28, 2004 6:06 am Post subject: |
|
|
Bague wrote: | Few questions...
A) Is there a way to get supermount in love?
B) How do you upgrade the love version without completely reconfiguring the kernel? |
A) D'oh! See previous love-sources threads, you owe steel300 a pizza. Supermount is bad/broken by design.
B) unpack/cp a fresh copy of 2.6.3 source, apply the love patch, or use the ebuilds. Then copy your .config and run "make oldconfig" in your love-sources directory. It will only prompt you for new options. |
|
Back to top |
|
|
m0sia Tux's lil' helper
Joined: 07 Jul 2003 Posts: 113
|
Posted: Sat Feb 28, 2004 7:06 am Post subject: |
|
|
Bague wrote: | Few questions...
A) Is there a way to get supermount in love?
B) How do you upgrade the love version without completely reconfiguring the kernel? |
supermount 2.0.4 for 2.6.2 kernel works great for me using love-sources 2.6.3-love4. i applyed some rejects by hands and thats all.
ps Respect to Steel300 |
|
Back to top |
|
|
MG-Cloud Apprentice
Joined: 28 Oct 2003 Posts: 200
|
Posted: Sat Feb 28, 2004 7:36 am Post subject: |
|
|
Hiya, tried to get this working.
The keyboard works fine in console mode, but as soon as X starts, neither the keyboard nor mouse work. I know it's not completely frozen because the cursor is blinking, but no input is accepted (not control alt bksp nor ctrl alt f1 work).
Any suggestions? I'm pretty sure I configured the kernel the way I always do, and the keyboard *does* work on the console. Of course, there could jsut be something I'm missing.
Thanks!
EDIT: would it help if I posted my config?
http://www3.telus.net/mguzman/gentoo/.config
I'm a bit of a newbie so any corrections at all (even if they don't solve my problem) would be appreciated.
EDIT2: I use an ms usb optical mouse and an ms natural keybaord.
Last edited by MG-Cloud on Sat Feb 28, 2004 8:34 am; edited 2 times in total |
|
Back to top |
|
|
frekiR n00b
Joined: 15 Dec 2003 Posts: 42 Location: Sweden
|
Posted: Sat Feb 28, 2004 7:40 am Post subject: |
|
|
Works great, thanks! _________________
Code: | $ whatis life
life: nothing appropriate |
|
|
Back to top |
|
|
superjaded l33t
Joined: 05 Jul 2002 Posts: 802
|
Posted: Sat Feb 28, 2004 7:56 am Post subject: |
|
|
Just thought I'd chime in and say that love6 works perfectly.
Nice to have my bootsplash goodness back.
Question though, what do I have to do to to get the love logo to show up?
And a question for the supermount people -- what does supermount do that automount can't? That's what I've been using for a while now and it works fine. |
|
Back to top |
|
|
Zviratko Tux's lil' helper
Joined: 21 Feb 2004 Posts: 106 Location: Prague, Czech Republic
|
Posted: Sat Feb 28, 2004 8:24 am Post subject: |
|
|
steel300 wrote: | Zviratko wrote: | Compiles fine on my laptop, on the other machine it does not
Code: |
CC fs/binfmt_aout.o
fs/binfmt_aout.c: In function `load_aout_binary':
fs/binfmt_aout.c:533: warning: ISO C90 forbids mixed declarations and code
fs/binfmt_aout.c:545: error: initializer element is not constant
fs/binfmt_aout.c:546: error: initializer element is not constant
fs/binfmt_aout.c:546: warning: ISO C90 forbids mixed declarations and code
fs/binfmt_aout.c:547: error: syntax error at end of input
fs/binfmt_aout.c:34: warning: `load_aout_library' used but never defined
make[1]: *** [fs/binfmt_aout.o] Error 1
make: *** [fs] Error 2
|
UPDATE: PaX broke AOUT compatibility...[/b] |
Disable "Use legacy ELF header marking" and "Use ELF program header marking" under PaX Control. |
That doesn't sound like a nice fix to me That machine would be utterly useles without those as it's needed to override these options on some applications...
Staying with -love1, please try to fix it in -love7 |
|
Back to top |
|
|
petrjanda Veteran
Joined: 05 Sep 2003 Posts: 1557 Location: Brno, Czech Republic
|
Posted: Sat Feb 28, 2004 8:35 am Post subject: |
|
|
Zviratko wrote: | steel300 wrote: | Zviratko wrote: | Compiles fine on my laptop, on the other machine it does not
Code: |
CC fs/binfmt_aout.o
fs/binfmt_aout.c: In function `load_aout_binary':
fs/binfmt_aout.c:533: warning: ISO C90 forbids mixed declarations and code
fs/binfmt_aout.c:545: error: initializer element is not constant
fs/binfmt_aout.c:546: error: initializer element is not constant
fs/binfmt_aout.c:546: warning: ISO C90 forbids mixed declarations and code
fs/binfmt_aout.c:547: error: syntax error at end of input
fs/binfmt_aout.c:34: warning: `load_aout_library' used but never defined
make[1]: *** [fs/binfmt_aout.o] Error 1
make: *** [fs] Error 2
|
UPDATE: PaX broke AOUT compatibility...[/b] |
Disable "Use legacy ELF header marking" and "Use ELF program header marking" under PaX Control. |
That doesn't sound like a nice fix to me That machine would be utterly useles without those as it's needed to override these options on some applications...
Staying with -love1, please try to fix it in -love7 |
Cau, jak se mas? |
|
Back to top |
|
|
Zviratko Tux's lil' helper
Joined: 21 Feb 2004 Posts: 106 Location: Prague, Czech Republic
|
Posted: Sat Feb 28, 2004 8:51 am Post subject: |
|
|
petrjanda: zname se?
Steel300: looks like you forgot Aureal Vortex patch can you post it on web pls? I have this card in my machne thx a million |
|
Back to top |
|
|
petrjanda Veteran
Joined: 05 Sep 2003 Posts: 1557 Location: Brno, Czech Republic
|
Posted: Sat Feb 28, 2004 9:31 am Post subject: |
|
|
Zviratko wrote: | petrjanda: zname se?
|
Ne, ale uvidel jsem cecha (Ja sem z Brna) a myslel jsem si, ze bych mohl promluvit |
|
Back to top |
|
|
acasto Apprentice
Joined: 06 Feb 2004 Posts: 236 Location: Durka-Durka-Stan
|
Posted: Sat Feb 28, 2004 9:34 am Post subject: |
|
|
Works wonderful here on my laptop. I was so glad when I woke up at midnight and saw there was another release. Made waking up all worth the while
Thanks bunches
- Adam |
|
Back to top |
|
|
Pink Veteran
Joined: 24 Jul 2003 Posts: 1062
|
Posted: Sat Feb 28, 2004 9:58 am Post subject: |
|
|
LOL, 2.6.4-rc1 is out.
I'm beginning to think that anyone with an uptime of over 24 hours is a girl! |
|
Back to top |
|
|
ed0n l33t
Joined: 23 Apr 2003 Posts: 638 Location: Prishtine/Kosove
|
Posted: Sat Feb 28, 2004 10:04 am Post subject: |
|
|
PickledOnion wrote: | LOL, 2.6.4-rc1 is out.
I'm beginning to think that anyone with an uptime of over 24 hours is a girl! |
I just updated to love6 . |
|
Back to top |
|
|
_Nomad_ Guru
Joined: 11 Apr 2003 Posts: 571
|
Posted: Sat Feb 28, 2004 11:55 am Post subject: |
|
|
PickledOnion wrote: | LOL, 2.6.4-rc1 is out.
I'm beginning to think that anyone with an uptime of over 24 hours is a girl! |
So we just need to wait a few hours and there'll be an mm version |
|
Back to top |
|
|
pestilence Apprentice
Joined: 05 Feb 2004 Posts: 213 Location: Athens / Greece
|
Posted: Sat Feb 28, 2004 11:59 am Post subject: |
|
|
Kernel versioning parade _________________ Gentoo the rising hope |
|
Back to top |
|
|
Soviet Bread Line n00b
Joined: 25 Dec 2003 Posts: 65
|
Posted: Sat Feb 28, 2004 12:30 pm Post subject: |
|
|
Bang-up job. Works great here. _________________ Should masochists practice the Golden Rule? |
|
Back to top |
|
|
gringo Advocate
Joined: 27 Apr 2003 Posts: 3793
|
Posted: Sat Feb 28, 2004 2:49 pm Post subject: |
|
|
thanks steel, works nice here! |
|
Back to top |
|
|
|