Gentoo Forums
Gentoo Forums
Quick Search: in
2.6.12-nitro2 [__DEPRECATED__]
View unanswered posts
View posts from last 24 hours

rackathon
Goto page Previous  1, 2, 3, 4, 5, 6  Next  
Reply to topic    Gentoo Forums Forum Index Unsupported Software
View previous topic :: View next topic  
Author Message
Tiger683
Veteran
Veteran


Joined: 08 Jan 2005
Posts: 1347
Location: Heffner's House

PostPosted: Sat Jul 02, 2005 7:19 am    Post subject: Reply with quote

bisco: try using vanilla 2.6.12 with git4 or higher, no sign of devfs in there... So it looks like you gonna be stuck with vanilla 2.6.12 forever :lol:

Gentree: OMFG, i have alrady said more than once: ALSA IN THIS NITRO IS NEWER THAN ALL STUFF IN PORTAGE!!!!!
and it has been adapted to nitro in nearly every driver, alsa as well as oss.
I have an impression that you and Robin79 just ignore my posts...oh well, whatever..... ;)

jiangtao so :?:

TheAlamo will do in nitro3

jannis:
oh boy, this will be long:
so, these functions are changing for 2.6.13, they already have in 2.6.12-git4 ( or even earlier snaps :?: ).
so, you have to manually edit the code, as i dont have internet at home for next 2 weeks,
which means i cant do a patched ebuild.

What you have to do is following changes:

Code:

class_simple_destroy(x)

CHANGED INTO
Code:

class_destroy(x)

=======================
Code:

class_simple_create(x,y)

CHANGED INTO
Code:

class_create(x,y)

=======================
Code:

class_simple_device_add(x, y, z, xx, yy)

CHANGED INTO
Code:

class_device_create(x, y, z, xx, yy)

=======================
:!: And the tricky one:
Code:

class_simple_device_remove(y)

CHANGED INTO
Code:

class_device_destroy(x,y)

:idea: Trick in the last one is, that it now also needs the device class passed as first argument,
solution: take the same class as in class_(simple_)create.
I hope it is clear enough, take a look at this patch for lirc 0.7.1 that i made, it shows how it goes:
lirc-0.7.1-class_simple-patch1-from_nitro.diff

cheers,
:arrow: and keep in mind im only rarely on the inet now...

T
_________________
Retired gentoo user


Last edited by Tiger683 on Sat Jul 02, 2005 11:04 am; edited 2 times in total
Back to top
View user's profile Send private message
jannis
Apprentice
Apprentice


Joined: 05 Dec 2004
Posts: 293
Location: Germany / Bavaria / Aschaffenburg

PostPosted: Sat Jul 02, 2005 7:58 am    Post subject: Reply with quote

devfs is removed by the "mm-patch". there is a function-renaming-issue with this which makes module fail such as "kqemu" or "kfusd". I'm trying to fix kfusd right now.

@Tiger683: exactly this is how much I found out until now, but thank you very much for the more detailed information!
Back to top
View user's profile Send private message
Tiger683
Veteran
Veteran


Joined: 08 Jan 2005
Posts: 1347
Location: Heffner's House

PostPosted: Sat Jul 02, 2005 8:07 am    Post subject: Reply with quote

devfs is removed by patches from GregKH, though the Kconfig option for devfs got removed in one of the first two gits or so...
naming issues were already in git(4?)

cheers

T
_________________
Retired gentoo user
Back to top
View user's profile Send private message
silverter
Guru
Guru


Joined: 10 Apr 2002
Posts: 491
Location: Ulm, DE

PostPosted: Sat Jul 02, 2005 8:45 am    Post subject: Reply with quote

NiLuJe wrote:
Madwifi (CVS, BSD branch) working fine here with a PCI card (D-Link DWL G520) ;)

Can you puleeze provide me with your .config file ?
[EDIT]
Well forget it, I'm having problems with the pcmcia card version. I think it's more a pcmcia (yenta-socket) issue, than the madwifi issue itself or a combination of both !!! Still trying to figure this out.
[/EDIT]
tnx n regards
_________________
-- A Guru was once a Beginner --
Back to top
View user's profile Send private message
jannis
Apprentice
Apprentice


Joined: 05 Dec 2004
Posts: 293
Location: Germany / Bavaria / Aschaffenburg

PostPosted: Sat Jul 02, 2005 9:12 am    Post subject: Reply with quote

Tiger I just wanted to say that it works:
http://bugs.gentoo.org/96449
Back to top
View user's profile Send private message
Tiger683
Veteran
Veteran


Joined: 08 Jan 2005
Posts: 1347
Location: Heffner's House

PostPosted: Sat Jul 02, 2005 9:29 am    Post subject: Reply with quote

Good work jannis ;)

T
_________________
Retired gentoo user
Back to top
View user's profile Send private message
acdispatcher
n00b
n00b


Joined: 26 Feb 2004
Posts: 42

PostPosted: Sat Jul 02, 2005 10:25 am    Post subject: Reply with quote

Tiger683 -

A great kernel-source !!!

vmware - nvidia - all works great.

I compile all alsa stuff into the kernel - no modules and it works fine here.

Nitro has always seemed to be at a level of its own 8)
_________________
Budget PC -
DFI NF3 250Gb Socket 754
AMD Sempron 3100+
1.5 GB Crucial DDR 400(PC 3200)
SAMSUNG 160GB SATA
NVIDIA 6600
Back to top
View user's profile Send private message
Robin79
l33t
l33t


Joined: 18 Oct 2003
Posts: 632
Location: /home/valdemarsvik

PostPosted: Sat Jul 02, 2005 11:10 am    Post subject: Reply with quote

Tiger683 wrote:
bisco: try using vanilla 2.6.12 with git4 or higher, no sign of devfs in there... So it looks like you gonna be stuck with vanilla 2.6.12 forever :lol:

Gentree: OMFG, i have alrady said more than once: ALSA IN THIS NITRO IS NEWER THAN ALL STUFF IN PORTAGE!!!!!
and it has been adapted to nitro in nearly every driver, alsa as well as oss.
I have an impression that you and Robin79 just ignore my posts...oh well, whatever..... ;)

jiangtao so :?:

TheAlamo will do in nitro3

jannis:
oh boy, this will be long:
so, these functions are changing for 2.6.13, they already have in 2.6.12-git4 ( or even earlier snaps :?: ).
so, you have to manually edit the code, as i dont have internet at home for next 2 weeks,
which means i cant do a patched ebuild.

What you have to do is following changes:

Code:

class_simple_destroy(x)

CHANGED INTO
Code:

class_destroy(x)

=======================
Code:

class_simple_create(x,y)

CHANGED INTO
Code:

class_create(x,y)

=======================
Code:

class_simple_device_add(x, y, z, xx, yy)

CHANGED INTO
Code:

class_device_create(x, y, z, xx, yy)

=======================
:!: And the tricky one:
Code:

class_simple_device_remove(y)

CHANGED INTO
Code:

class_device_destroy(x,y)

:idea: Trick in the last one is, that it now also needs the device class passed as first argument,
solution: take the same class as in class_(simple_)create.
I hope it is clear enough, take a look at this patch for lirc 0.7.1 that i made, it shows how it goes:
lirc-0.7.1-class_simple-patch1-from_nitro.diff

cheers,
:arrow: and keep in mind im only rarely on the inet now...

T



I saw it i will try it out now and use the alsa in the kernel i really hope it works :)

EDIT i get some warnings but i will try to reboot and check out if souncds work EDIT.
EDIT2 IT FREAKING WORKS THANXALOT EDIT2
_________________
Gentoo 2005.0
ASUS P5AD2 Deluxe MB
Intel P4 3.2GHz
PCI-E Nvidia Geforce PCX 5750
--------------------

Registered Linux User Nr # 319050 http://counter.li.org
Back to top
View user's profile Send private message
b3cks
Veteran
Veteran


Joined: 23 Mar 2004
Posts: 1393
Location: Bremen (GER)

PostPosted: Sat Jul 02, 2005 1:02 pm    Post subject: Re: Patches for ATI Driver with DRM Acceleration Reply with quote

JF_Cron0 wrote:
For those that have ATI 3D Cards and want to make them work with 2.6.12 kernels.

I've found this on [url]rage3d.com[/url] boards.
I then modified the ati-drivers ebuild and commented all the "epatch" lines and I added 4 for each patch there is on there.

Linky: http://www.rage3d.com/board/showthread.php?t=33819631

They work flawlesly and I've been playing UT2004 for hours without any crash.

Good luck! :D

cron0


Can you upload your modified eBuild, please?
Following this thread there are also patches (may the same?) here:
http://lenny.v-brne.net/fglrx/
_________________
I am /root and if you see me laughing you better have a backup.
Back to top
View user's profile Send private message
TRx
Tux's lil' helper
Tux's lil' helper


Joined: 27 Jul 2003
Posts: 126
Location: Madrid, Spain

PostPosted: Sat Jul 02, 2005 2:27 pm    Post subject: Reply with quote

Everything works like a charm except nvidia module, which refuses to load :( (it loads properly with 2.6.11-nitro though :?)

I get this when startx :

Code:
Fatal server error:
Module load failure.


nvidia kernel version is 1.0.7664.

It seems i´m the only one having problems with nvidia :( *sigh*

Any idea on this?


Thanks in advance.
_________________
GNU/Linux registered user #333828
Back to top
View user's profile Send private message
Kensai
Guru
Guru


Joined: 08 Mar 2004
Posts: 568
Location: Puerto Rico

PostPosted: Sat Jul 02, 2005 7:06 pm    Post subject: Reply with quote

TRx wrote:

It seems i´m the only one having problems with nvidia :( *sigh*

Any idea on this?


Thanks in advance.

Very very strange indeed I use nvidia and I'm having better FPS with this release of kernel than with any other.
_________________
Gentoo: Gigabyte: nFORCE 2: nVIDIA GeForce 6600: AMD Athlon XP 3200+
Perspective of a Thinking Human Being
Back to top
View user's profile Send private message
JF_Cron0
Tux's lil' helper
Tux's lil' helper


Joined: 05 Jan 2004
Posts: 131
Location: Montreal, Quebec

PostPosted: Sat Jul 02, 2005 8:28 pm    Post subject: Re: Patches for ATI Driver with DRM Acceleration Reply with quote

b3cks wrote:

Can you upload your modified eBuild, please?
Following this thread there are also patches (may the same?) here:
http://lenny.v-brne.net/fglrx/


Sure!
Ebuild for ati-drivers-8.14.13-r1 modified to work with patches from [url]rage3d.com[/url] forums:
http://cron0.net/linux/ati-drivers-8.14.13-r1.tar.gz

Extract this in your ${PORTDIR_OVERLAY}/media-video/
Crappy ebuild hack but it works for me! ;-)

Enjoy ATI with Acceleration :-)

cron0
Back to top
View user's profile Send private message
Fleta
n00b
n00b


Joined: 12 Dec 2004
Posts: 68

PostPosted: Sat Jul 02, 2005 8:33 pm    Post subject: Reply with quote

hmm, ipw2200 doesn't seem to work either.:( Anyone got this to work?
Back to top
View user's profile Send private message
jiangtao
n00b
n00b


Joined: 16 Mar 2004
Posts: 60
Location: The People's Republic of China

PostPosted: Sun Jul 03, 2005 1:04 am    Post subject: Reply with quote

Tiger683 wrote:

jiangtao so :?:

Like that :
Code:
  CC      kernel/intermodule.o
  kernel/intermodule.c:179: warning: `inter_module_register' is deprecated (declared at kernel/intermodule.c:38)
  kernel/intermodule.c:180: warning: `inter_module_unregister' is deprecated (declared at kernel/intermodule.c:79)
  kernel/intermodule.c:182: warning: `inter_module_put' is deprecated (declared at kernel/intermodule.c:160)

Code:
    CC      kernel/power/console.o
    CC      kernel/power/pm.o
  kernel/power/pm.c:259: warning: `pm_register' is deprecated (declared at kernel/power/pm.c:62)
  kernel/power/pm.c:260: warning: `pm_unregister' is deprecated (declared at kernel/power/pm.c:86)
  kernel/power/pm.c:261: warning: `pm_unregister_all' is deprecated (declared at kernel/power/pm.c:115)
  kernel/power/pm.c:262: warning: `pm_send_all' is deprecated (declared at kernel/power/pm.c:234)
    CC      kernel/power/suspend2_core/io.o
    CC      kernel/power/suspend2_core/pagedir.o

Code:
    CC [M]  drivers/block/cpqarray.o
  drivers/block/cpqarray.c: In function `getgeometry':
  drivers/block/cpqarray.c:1740: warning: unused variable `disk'
    CC [M]  drivers/block/cciss.o

Code:
    CC      drivers/char/agp/efficeon-agp.o
  drivers/char/agp/efficeon-agp.c: In function `efficeon_create_gatt_table':
  drivers/char/agp/efficeon-agp.c:222: warning: passing arg 1 of `virt_to_phys' makes pointer from integer without a cast
    CC      drivers/char/agp/intel-agp.o
 

:wink:
_________________
CHOST="pentium4-pc-linux-gnu"

Oh...Can I Speak in Chinese ?
http://www.magiclinux.org/people/jiangtao9999/
Back to top
View user's profile Send private message
b3cks
Veteran
Veteran


Joined: 23 Mar 2004
Posts: 1393
Location: Bremen (GER)

PostPosted: Sun Jul 03, 2005 3:45 am    Post subject: Re: Patches for ATI Driver with DRM Acceleration Reply with quote

JF_Cron0 wrote:
b3cks wrote:

Can you upload your modified eBuild, please?
Following this thread there are also patches (may the same?) here:
http://lenny.v-brne.net/fglrx/


Sure!
Ebuild for ati-drivers-8.14.13-r1 modified to work with patches from [url]rage3d.com[/url] forums:
http://cron0.net/linux/ati-drivers-8.14.13-r1.tar.gz

Extract this in your ${PORTDIR_OVERLAY}/media-video/
Crappy ebuild hack but it works for me! ;-)

Enjoy ATI with Acceleration :-)

cron0


Yeah baby, it works!
The performance is not the best but it works. :) Thx!
_________________
I am /root and if you see me laughing you better have a backup.
Back to top
View user's profile Send private message
Hayl
Guru
Guru


Joined: 27 Jan 2003
Posts: 442
Location: Calgary, Alberta, Canada

PostPosted: Sun Jul 03, 2005 8:58 am    Post subject: Reply with quote

this latest version of nitro-sources doesn't work with swsusp2. even if you upgrade to the newest hibernate-script, all you get is a "syntax error" after it tries to unload modules.
_________________
"I do not fear computers. I fear lack of them." - Isaac Asimov
Back to top
View user's profile Send private message
Illissius
Guru
Guru


Joined: 31 Jul 2004
Posts: 395
Location: Hungary

PostPosted: Sun Jul 03, 2005 9:32 am    Post subject: Reply with quote

Is there anyone with an nForce4 for who this *does* fix the resource conflict problems? iirc, the few people who reported back all reported negative...
_________________
Work is punishment for failing to procrastinate effectively.
last.fm
Back to top
View user's profile Send private message
Hoek
n00b
n00b


Joined: 16 Apr 2003
Posts: 30
Location: Bayreuth, Germany

PostPosted: Sun Jul 03, 2005 3:58 pm    Post subject: Reply with quote

Hmmm..
Everything works well, as usual, although i discover this one in my dmesg output:


Code:

...
ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
ACPI: PCI Interrupt 0000:00:1f.6[B] -> Link [LNKB] -> GSI 11 (level, low) -> IRQ 11
Unable to handle kernel paging request at virtual address 30303130
 printing eip:
c01a26b5
*pde = 00000000
Oops: 0002 [#1]
PREEMPT
Modules linked in: 8250_pci 8250 serial_core cpufreq_powersave cpufreq_performance uhci_hcd evdev thermal usbhid snd_usb_audio snd_usb_lib button snd_intel8x0 ipw2100 ehci_hcd processor usb_storage ide_cd snd_rawmidi usbcore intel_agp firmware_class battery sg snd_ac97_codec radeon sd_mod fan ac scsi_mod drm snd_rtctimer snd_pcm_oss snd_seq_device agpgart snd_pcm cdrom ieee80211 cpufreq_ondemand psmouse snd_mixer_oss uinput snd_hwdep snd_timer rtc snd snd_page_alloc soundcore ieee80211_crypt unix
CPU:    0
EIP:    0060:[<c01a26b5>]    Not tainted VLI
EFLAGS: 00010202   (2.6.12-nitro2)
EIP is at sysfs_release+0x45/0xa0
eax: 00000000   ebx: ce2e6000   ecx: cfab13c0   edx: 00000000
esi: 30303030   edi: ce845940   ebp: cffe4200   esp: ce2e7f54
ds: 007b   es: 007b   ss: 0068
Process hald (pid: 15945, threadinfo=ce2e6000 task=cf100a40)
Stack: cff318a4 00000010 cfab13c0 ce2c46dc c0169daa ce2c46dc cfab13c0 00000000
       00000000 ce5588d4 cfab13c0 00000000 cf13b740 ce2e6000 c01681a2 cfab13c0
       cf13b740 cf13b740 cfab13c0 0000000e c0168248 cfab13c0 cf13b740 0000000e
Call Trace:
 [<c0169daa>] __fput+0x15a/0x1a0
 [<c01681a2>] filp_close+0x52/0xa0
 [<c0168248>] sys_close+0x58/0xa0
 [<c010314b>] sysenter_past_esp+0x54/0x75
Code: 42 0c 8b 40 48 8b 58 14 8b 42 48 85 db 8b 40 14 8b 70 04 74 08 89 1c 24 e8 89 70 03 00 85 f6 74 1f bb 00 e0 ff ff 21 e3 ff 43 14 <ff> 8e 00 01 00 00 83 3e 02 74 40 ff 4b 14 8b 43 08 a8 08 75 2f
 <6>note: hald[15945] exited with preempt_count 1
8139too Fast Ethernet driver 0.9.27
ACPI: PCI Interrupt 0000:02:01.0[A] -> Link [LNKD] -> GSI 11 (level, low) -> IRQ 11
...


So it seems to have problems with preemption I guess?
Anyoune having an idea?
Note that the boot process goes on normally after that, and i don't notice any other problems when running the machine, just wanted to report this one..
Back to top
View user's profile Send private message
m0p
Apprentice
Apprentice


Joined: 20 Jun 2005
Posts: 164
Location: en_GB

PostPosted: Sun Jul 03, 2005 7:43 pm    Post subject: Reply with quote

Yeah!! Tried that ATi patch, and now I'm flying! In fact, with that ATi patch, this kernel performs better in 3D mode than with 2.6.11 kernel, with unmodified ATi module. But when ATi release a proper driver I think I will use that since the kernel agpgart is always faster. Great kernel! Genetic scheduler is damn good! I also got ALSA working, and VMWare Workstation 5. No stability problems so far. Great stuff :) I think I've found myself a new favorite patchset.
Back to top
View user's profile Send private message
Tiger683
Veteran
Veteran


Joined: 08 Jan 2005
Posts: 1347
Location: Heffner's House

PostPosted: Mon Jul 04, 2005 2:41 am    Post subject: Reply with quote

jiangtao wrote:
Tiger683 wrote:

jiangtao so :?:

Like that :
Code:
  CC      kernel/intermodule.o
  kernel/intermodule.c:179: warning: `inter_module_register' is deprecated (declared at kernel/intermodule.c:38)
  kernel/intermodule.c:180: warning: `inter_module_unregister' is deprecated (declared at kernel/intermodule.c:79)
  kernel/intermodule.c:182: warning: `inter_module_put' is deprecated (declared at kernel/intermodule.c:160)

Code:
    CC      kernel/power/console.o
    CC      kernel/power/pm.o
  kernel/power/pm.c:259: warning: `pm_register' is deprecated (declared at kernel/power/pm.c:62)
  kernel/power/pm.c:260: warning: `pm_unregister' is deprecated (declared at kernel/power/pm.c:86)
  kernel/power/pm.c:261: warning: `pm_unregister_all' is deprecated (declared at kernel/power/pm.c:115)
  kernel/power/pm.c:262: warning: `pm_send_all' is deprecated (declared at kernel/power/pm.c:234)
    CC      kernel/power/suspend2_core/io.o
    CC      kernel/power/suspend2_core/pagedir.o

Code:
    CC [M]  drivers/block/cpqarray.o
  drivers/block/cpqarray.c: In function `getgeometry':
  drivers/block/cpqarray.c:1740: warning: unused variable `disk'
    CC [M]  drivers/block/cciss.o

Code:
    CC      drivers/char/agp/efficeon-agp.o
  drivers/char/agp/efficeon-agp.c: In function `efficeon_create_gatt_table':
  drivers/char/agp/efficeon-agp.c:222: warning: passing arg 1 of `virt_to_phys' makes pointer from integer without a cast
    CC      drivers/char/agp/intel-agp.o
 

:wink:


And you think this is bad? well, tell the devs not to deprecate stuff and leave it in there for over a year.
BTW, there are not less warnings while compiling a vanilla kernel, if you know any better,
go on, i dont hold you back.......

About NF4 problem: i said "lets hope it solves it".... apparently the problem is somewhere else.
If i only had internet at home now, i'd sift through lkml a little closer, but sorry, next 3 weeks nogo......
and then either nitro3 arrives , or, if rc4 or higher gets released, we will get a nitro1 ;)
_________________
Retired gentoo user
Back to top
View user's profile Send private message
jiangtao
n00b
n00b


Joined: 16 Mar 2004
Posts: 60
Location: The People's Republic of China

PostPosted: Mon Jul 04, 2005 5:52 am    Post subject: Reply with quote

Tiger683 wrote:
jiangtao wrote:
Tiger683 wrote:

jiangtao so :?:

Like that :
Code:
  CC      kernel/intermodule.o
  kernel/intermodule.c:179: warning: `inter_module_register' is deprecated (declared at kernel/intermodule.c:38)
  kernel/intermodule.c:180: warning: `inter_module_unregister' is deprecated (declared at kernel/intermodule.c:79)
  kernel/intermodule.c:182: warning: `inter_module_put' is deprecated (declared at kernel/intermodule.c:160)

Code:
    CC      kernel/power/console.o
    CC      kernel/power/pm.o
  kernel/power/pm.c:259: warning: `pm_register' is deprecated (declared at kernel/power/pm.c:62)
  kernel/power/pm.c:260: warning: `pm_unregister' is deprecated (declared at kernel/power/pm.c:86)
  kernel/power/pm.c:261: warning: `pm_unregister_all' is deprecated (declared at kernel/power/pm.c:115)
  kernel/power/pm.c:262: warning: `pm_send_all' is deprecated (declared at kernel/power/pm.c:234)
    CC      kernel/power/suspend2_core/io.o
    CC      kernel/power/suspend2_core/pagedir.o

Code:
    CC [M]  drivers/block/cpqarray.o
  drivers/block/cpqarray.c: In function `getgeometry':
  drivers/block/cpqarray.c:1740: warning: unused variable `disk'
    CC [M]  drivers/block/cciss.o

Code:
    CC      drivers/char/agp/efficeon-agp.o
  drivers/char/agp/efficeon-agp.c: In function `efficeon_create_gatt_table':
  drivers/char/agp/efficeon-agp.c:222: warning: passing arg 1 of `virt_to_phys' makes pointer from integer without a cast
    CC      drivers/char/agp/intel-agp.o
 

:wink:


And you think this is bad? well, tell the devs not to deprecate stuff and leave it in there for over a year.
BTW, there are not less warnings while compiling a vanilla kernel, if you know any better,
go on, i dont hold you back.......

:?
I don't think it is bad .......
It works fine.
_________________
CHOST="pentium4-pc-linux-gnu"

Oh...Can I Speak in Chinese ?
http://www.magiclinux.org/people/jiangtao9999/
Back to top
View user's profile Send private message
bollucks
Guru
Guru


Joined: 27 Oct 2004
Posts: 582

PostPosted: Mon Jul 04, 2005 6:33 am    Post subject: Reply with quote

Hoek wrote:
Hmmm..
Everything works well, as usual, although i discover this one in my dmesg output:
Code:

Oops: 0002 [#1]
PREEMPT

So it seems to have problems with preemption I guess?

The presence of the codeword PREEMPT is just there to aid debugging of the oops so the devs know it is a preempt kernel. It does not mean the problem is due to preempt. This appears to be a sysfs bug.
Back to top
View user's profile Send private message
b3cks
Veteran
Veteran


Joined: 23 Mar 2004
Posts: 1393
Location: Bremen (GER)

PostPosted: Mon Jul 04, 2005 7:02 am    Post subject: Reply with quote

bollucks wrote:
Hoek wrote:
Hmmm..
Everything works well, as usual, although i discover this one in my dmesg output:
Code:

Oops: 0002 [#1]
PREEMPT

So it seems to have problems with preemption I guess?

The presence of the codeword PREEMPT is just there to aid debugging of the oops so the devs know it is a preempt kernel. It does not mean the problem is due to preempt. This appears to be a sysfs bug.


I've the problem that this message is displayed on tty1 after booting. :?
_________________
I am /root and if you see me laughing you better have a backup.
Back to top
View user's profile Send private message
Tiger683
Veteran
Veteran


Joined: 08 Jan 2005
Posts: 1347
Location: Heffner's House

PostPosted: Mon Jul 04, 2005 12:57 pm    Post subject: Reply with quote

hehe, this oops is probably genetic-as related....
i also discovered 2 minor memleaks in genetic-lib.... so
guys: its your decision: either genetics or a clean kernel...

PS: chances are good i will have internet@home again really soon ;)

cheers

T
_________________
Retired gentoo user
Back to top
View user's profile Send private message
lamekain
Guru
Guru


Joined: 25 Nov 2003
Posts: 331
Location: Helsinki, Finland

PostPosted: Mon Jul 04, 2005 1:06 pm    Post subject: Reply with quote

Hayl wrote:
this latest version of nitro-sources doesn't work with swsusp2. even if you upgrade to the newest hibernate-script, all you get is a "syntax error" after it tries to unload modules.


Same here. Swsusp2 doesn't seem to work. Suspending works ok, but resuming hangs right after copying the old kernel back (no errors in log, because log writing doesn't start before it locks up). Shame.. it looked so promising at first..:(
_________________
"Only when the last tree has died, the last river been poisoned,
and the last fish been caught, will we realize we cannot eat money"

-Global Terrorism.org
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Unsupported Software All times are GMT - 5 Hours
Goto page Previous  1, 2, 3, 4, 5, 6  Next
Page 3 of 6

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum