Forums

Skip to content

Advanced search
  • Quick links
    • Unanswered topics
    • Active topics
    • Search
  • FAQ
  • Login
  • Register
  • Board index Assistance Unsupported Software
  • Search

2.6.9-nitro4 "Less is more"

This forum covers all Gentoo-related software not officially supported by Gentoo. Ebuilds/software posted here might harm the health and stability of your system(s), and are not supported by Gentoo developers. Bugs/errors caused by ebuilds from overlays.gentoo.org are covered by this forum, too.
Post Reply
Advanced search
208 posts
  • Page 4 of 9
    • Jump to page:
  • Previous
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • …
  • 9
  • Next
Author
Message
miseiler
Tux's lil' helper
Tux's lil' helper
Posts: 118
Joined: Mon Mar 17, 2003 6:40 pm

  • Quote

Post by miseiler » Fri Nov 19, 2004 8:20 pm

Nevermind, I can answer that one: No.

Applying the patch and then attempting compilation gives the following error:

Code: Select all

fs/built-in.o(.text+0x771af): In function `mask_ok_common':
: undefined reference to `generic_permission'
A little bit of searching turned up this post.

So I called ld fs/built-in.o, and got about a half a meg's worth of errors I won't reprint here. The patch provided changes fs/reiser4/plugin/security/perm.c, and that's where the mask_ok_common function is, so we can safely assume the problem lies there. Further research follows:

Code: Select all

static int
mask_ok_common(struct inode *inode, int mask)
{
 return generic_permission(inode, mask, NULL);
}
Note how the method used to solve the problem posted in the link above is now the problem itself. Curious now, I go back to the patch and see if the line has been added:

Code: Select all

$ cat reiser4-from-2.6.9-cko3-to-2.6.9-nitro4.patch |grep generic
+       return generic_permission(inode, mask, NULL);
Ah. Yes, the patch has definitely caused the problem there, and indeed the line "return vfs_permission(inode, mask);" was removed, which was of course the problem in linux-2.6.9-rc1-mm5 again as indicated by the link above. Curious, I went back to undo that specific instance in the patched nitro4 and tried to compile it again.

Aaaand it compiles. No debug output besides all the warnings everyone's used to. Unfortunately, I can't test the kernel right now since I have class, but if anyone's curious...just apply the cko3 to nitro4 patch Pepek gave us, then undo the change on L16 of fs/reiser4/plugin/security/perm.c and it should compile.
Cthulhu for president.
Top
lenk
Apprentice
Apprentice
User avatar
Posts: 211
Joined: Mon Mar 08, 2004 8:32 pm

  • Quote

Post by lenk » Fri Nov 19, 2004 11:53 pm

I can't access the addons directory, getting 403 forbidden. http://sepi.be/nitro/2.6.9-nitro4/addons/
E6300 Gigabyte GA-965P-DS3 2GB Corsair 320GB Seagate 7200.10 XFX 7600GT Gentoo
Dell M1330 T7500 2GB 160GB 13.3" WXGA Gentoo
Sharp Zaurus SL-C760 Cacko ROM 1.21b / pdaXrom 1.10rc5 512MB CF + 512MB SD
Sun Ultra5 Gentoo
Top
Enderson
Retired Dev
Retired Dev
User avatar
Posts: 141
Joined: Wed Nov 12, 2003 2:40 pm
Location: Arapiraca/Maceió, AL, Brazil
Contact:
Contact Enderson
Website

  • Quote

Post by Enderson » Fri Nov 19, 2004 11:55 pm

Aplied the patches against development-sources-2.6.9 OK?

I can't find the reisr4 in menu? Is that supposed to be there? or just selecting reiserfs suppor it will compile support for reiser4 ?

[EDIT]
OK I found!

Unselected the 4k stack at kernel hack.
[EDIT}
Last edited by Enderson on Sat Nov 20, 2004 12:19 am, edited 1 time in total.
--
Nothing to say here!
Top
miseiler
Tux's lil' helper
Tux's lil' helper
Posts: 118
Joined: Mon Mar 17, 2003 6:40 pm

  • Quote

Post by miseiler » Sat Nov 20, 2004 12:11 am

Enderson wrote:Aplied the patches against development-sources-2.6.9 OK?
No, not okay. This is applied against vanilla 2.6.9 sources. Just use the ebuild provided in the first post. If your patch applied cleanly, I'd be pretty surprised.
Enderson wrote:I can't find the reisr4 in menu? Is that supposed to be there? or just selecting reiserfs suppor it will compile support for reiser4 ?
I guess they didn't apply cleanly, since reiser4 support IS in the menu for the nitro4 kernel. It is not in the development-sources kernel. My guess is you're just trying to compile development-sources.
Cthulhu for president.
Top
IainCE
Tux's lil' helper
Tux's lil' helper
Posts: 129
Joined: Tue Mar 23, 2004 8:11 pm

  • Quote

Post by IainCE » Sat Nov 20, 2004 12:11 am

Enderson wrote:I can't find the reisr4 in menu? Is that supposed to be there? or just selecting reiserfs suppor it will compile support for reiser4 ?
Disable 4k stacks
Top
Pepek
Guru
Guru
User avatar
Posts: 313
Joined: Sun Apr 25, 2004 1:27 am
Location: Tarnowskie Góry - Poland - Europe

  • Quote

Post by Pepek » Sat Nov 20, 2004 1:00 am

miseiler wrote:Nevermind, I can answer that one: No.

Applying the patch and then attempting compilation gives the following error:

Code: Select all

fs/built-in.o(.text+0x771af): In function `mask_ok_common':
: undefined reference to `generic_permission'
A little bit of searching turned up this post.

So I called ld fs/built-in.o, and got about a half a meg's worth of errors I won't reprint here. The patch provided changes fs/reiser4/plugin/security/perm.c, and that's where the mask_ok_common function is, so we can safely assume the problem lies there. Further research follows:

Code: Select all

static int
mask_ok_common(struct inode *inode, int mask)
{
 return generic_permission(inode, mask, NULL);
}
Note how the method used to solve the problem posted in the link above is now the problem itself. Curious now, I go back to the patch and see if the line has been added:

Code: Select all

$ cat reiser4-from-2.6.9-cko3-to-2.6.9-nitro4.patch |grep generic
+       return generic_permission(inode, mask, NULL);
Ah. Yes, the patch has definitely caused the problem there, and indeed the line "return vfs_permission(inode, mask);" was removed, which was of course the problem in linux-2.6.9-rc1-mm5 again as indicated by the link above. Curious, I went back to undo that specific instance in the patched nitro4 and tried to compile it again.

Aaaand it compiles. No debug output besides all the warnings everyone's used to. Unfortunately, I can't test the kernel right now since I have class, but if anyone's curious...just apply the cko3 to nitro4 patch Pepek gave us, then undo the change on L16 of fs/reiser4/plugin/security/perm.c and it should compile.
Sorry about that stupid mistake. generic_permission should be vfs_permission (only since kernel 2.6.10-rc1 this should be generic_permission). I fix that and now my patch for reiser4 should be good.

Cheers. 8)
For Polish users :
$ man mas
Nie ma strony manuala dla mas
For Other users :
Sorry for my english, I know it's bad, but I think it's at least understandable ;)
Top
MrApples
Guru
Guru
Posts: 511
Joined: Fri Dec 13, 2002 5:52 pm
Contact:
Contact MrApples
Website

  • Quote

Post by MrApples » Sat Nov 20, 2004 1:36 am

lenk wrote:I can't access the addons directory, getting 403 forbidden. http://sepi.be/nitro/2.6.9-nitro4/addons/
its working fine for me
http://www.whatsinyourbox.org -- Technology discussion, news, and more.
Top
Pepek
Guru
Guru
User avatar
Posts: 313
Joined: Sun Apr 25, 2004 1:27 am
Location: Tarnowskie Góry - Poland - Europe

  • Quote

Post by Pepek » Sat Nov 20, 2004 2:58 am

jdkbx wrote:
Pepek wrote: Sure I can, but first I need to know : with this my patch software suspend with fbsplash works fine or not ?
how is it suposed to work? any settings in hibernate.conf needed? on which vt's have to be splash screens? do you need to boot in silent mode?
when i compile it in the kernel, with or without textmode support, nothing happens.
I don't know exactly how is it supposed to work, because I don't use swsusp, but I think it is supposed to work like bootsplash + swsusp. About settings in hibernate.conf - if in this file are any settings for bootsplash, than that settings are needed for fbsplash too, I think. About on which vt's have to be splash screens - on any you want, because this module check this. About boot in the silent mode - this should work on any mode of fbsplash (both silent and verbose).
You can check is it works, because with this and fbslash enabled (splash is on any vt) swsusp should can suspend machine and then resume it. If hibernate get some errors with suspend/resume about the splash, that means this not work. If hibernate first suspend and than resume w/o any errors and splash is still on that vt's on which one was enabled, that means this work (and than I will be vary happy :D ).

Cheers. 8)
For Polish users :
$ man mas
Nie ma strony manuala dla mas
For Other users :
Sorry for my english, I know it's bad, but I think it's at least understandable ;)
Top
lenk
Apprentice
Apprentice
User avatar
Posts: 211
Joined: Mon Mar 08, 2004 8:32 pm

  • Quote

Post by lenk » Sat Nov 20, 2004 5:01 am

I can access http://sepi.be/nitro/2.6.9-nitro4/addon ... 2-bk2.diff , but I can't download the files.
E6300 Gigabyte GA-965P-DS3 2GB Corsair 320GB Seagate 7200.10 XFX 7600GT Gentoo
Dell M1330 T7500 2GB 160GB 13.3" WXGA Gentoo
Sharp Zaurus SL-C760 Cacko ROM 1.21b / pdaXrom 1.10rc5 512MB CF + 512MB SD
Sun Ultra5 Gentoo
Top
seppe
Guru
Guru
User avatar
Posts: 431
Joined: Mon Sep 01, 2003 1:13 pm
Location: Hove, Antwerp, Belgium
Contact:
Contact seppe
Website

  • Quote

Post by seppe » Sat Nov 20, 2004 11:48 am

Pepek, I tried your gensplash patch for Swsusp, but it doesn't work. Well, I see the gensplash when I boot normally, but I don't see it when I hibernate or resume from a hibernate. But maybe I have to change something in my hibernate.conf?
nitro-sources, because between stable and experimental there exists only speed

Latest release I made: 2.6.13.2-nitro1
Top
cybe
n00b
n00b
User avatar
Posts: 67
Joined: Tue Jul 22, 2003 11:56 am
Location: Finland
Contact:
Contact cybe
Website

  • Quote

Post by cybe » Sat Nov 20, 2004 1:59 pm

seppe wrote:
cybe wrote:no LUFS? =(
No, because you can do "emerge lufs" as well to get it :)
Well, first of all, one needs the lufs kernel module

Code: Select all

(~:$)->mount /mnt/landoFTP
mount failed: No such device
you don't have kernel lufs support (check whether the lufs module is available/loaded)
and I believe the lufs ebuild is still so old that it only has 2.4 kernel support...I've been using the CVS version..
_________________________________
The MOST important book on the planet?
http://thewayhomeorfacethefire.info/
Top
jdkbx
n00b
n00b
Posts: 40
Joined: Mon May 03, 2004 9:25 pm

  • Quote

Post by jdkbx » Sat Nov 20, 2004 2:56 pm

Pepek wrote: I don't know exactly how is it supposed to work, because I don't use swsusp, but I think it is supposed to work like bootsplash + swsusp. About settings in hibernate.conf - if in this file are any settings for bootsplash, than that settings are needed for fbsplash too, I think. About on which vt's have to be splash screens - on any you want, because this module check this. About boot in the silent mode - this should work on any mode of fbsplash (both silent and verbose).
You can check is it works, because with this and fbslash enabled (splash is on any vt) swsusp should can suspend machine and then resume it. If hibernate get some errors with suspend/resume about the splash, that means this not work. If hibernate first suspend and than resume w/o any errors and splash is still on that vt's on which one was enabled, that means this work (and than I will be vary happy :D ).

Cheers. 8)
right now i'm using fbsplash with the image inside initramfs.cpio.gz, so you can say its compiled in the kernel. i only use verbose mode. when i boot i see the image on vt0. when i shutdown it's still on vt0. as long as i don't start the spalsh service all other terminals are normal. when i suspend, it suspends in text mode. on resume i see the splash image until it the kernel is copied back and it starts to say "reading caches". in that moment the textmode acts like its on a non-fbsplash terminal and puts its output just over the splash image with a black background where it draws. so fbsplash works (like you described it) without your patch. with it, there wasn't any change.

im gonna try with bootsplash support in hibernate.conf now. with and w/o your patch. gonna post results later.

as far as i understand it, bootsplash support means that swsusp2 manipulates the progress bar of a splash image while resuming. if u turn on bootsplash support in hibernate.conf then /usr/local/share/hibernate/scriplets.d/bootsplash will be called. this wants to set things in /proc/splash, that isn't there of course. maybe just adapting it to /proc/fbsplash could help (just guessing).
as far as your patch is concerned, i doesn't do anything on my system. with or without nothing changes. i don't know if bootsplash would work either.
Top
iBormuth
n00b
n00b
User avatar
Posts: 59
Joined: Tue Jan 13, 2004 9:16 pm

  • Quote

Post by iBormuth » Sat Nov 20, 2004 8:11 pm

Thanks !!!

Nitro is the best if you want reiser4 *and* a stable kernel.

8) Love it.
Top
jblechert
n00b
n00b
Posts: 8
Joined: Sun Apr 25, 2004 3:34 pm
Location: Germany

xorg + fbcon (vesa-tng) gives trouble

  • Quote

Post by jblechert » Sat Nov 20, 2004 10:48 pm

luckily not much trouble, just a minor problem, fbcon runs smooth aslong as X hasn't been started, however, after X was started every time I change the console (not just from X to console but under the several consoles aswell), the screen seems to re-adjust itself and the sound is skipped for about 1/10th second. This also happens when X is closed but has been started before (after a reboot everything works fine again)
Top
Pepek
Guru
Guru
User avatar
Posts: 313
Joined: Sun Apr 25, 2004 1:27 am
Location: Tarnowskie Góry - Poland - Europe

  • Quote

Post by Pepek » Sat Nov 20, 2004 10:49 pm

jdkbx wrote:
Pepek wrote: I don't know exactly how is it supposed to work, because I don't use swsusp, but I think it is supposed to work like bootsplash + swsusp. About settings in hibernate.conf - if in this file are any settings for bootsplash, than that settings are needed for fbsplash too, I think. About on which vt's have to be splash screens - on any you want, because this module check this. About boot in the silent mode - this should work on any mode of fbsplash (both silent and verbose).
You can check is it works, because with this and fbslash enabled (splash is on any vt) swsusp should can suspend machine and then resume it. If hibernate get some errors with suspend/resume about the splash, that means this not work. If hibernate first suspend and than resume w/o any errors and splash is still on that vt's on which one was enabled, that means this work (and than I will be vary happy :D ).

Cheers. 8)
right now i'm using fbsplash with the image inside initramfs.cpio.gz, so you can say its compiled in the kernel. i only use verbose mode. when i boot i see the image on vt0. when i shutdown it's still on vt0. as long as i don't start the spalsh service all other terminals are normal. when i suspend, it suspends in text mode. on resume i see the splash image until it the kernel is copied back and it starts to say "reading caches". in that moment the textmode acts like its on a non-fbsplash terminal and puts its output just over the splash image with a black background where it draws. so fbsplash works (like you described it) without your patch. with it, there wasn't any change.

im gonna try with bootsplash support in hibernate.conf now. with and w/o your patch. gonna post results later.

as far as i understand it, bootsplash support means that swsusp2 manipulates the progress bar of a splash image while resuming. if u turn on bootsplash support in hibernate.conf then /usr/local/share/hibernate/scriplets.d/bootsplash will be called. this wants to set things in /proc/splash, that isn't there of course. maybe just adapting it to /proc/fbsplash could help (just guessing).
as far as your patch is concerned, i doesn't do anything on my system. with or without nothing changes. i don't know if bootsplash would work either.
I was adapted this in my module from /proc/splash to the /proc/fbsplash, but if the hibernate wants to set things in the /proc/splash, than I have to look to the code of hibernate, but in this week I will be very busy, so I don't know when I did it.

Cheers. 8)
For Polish users :
$ man mas
Nie ma strony manuala dla mas
For Other users :
Sorry for my english, I know it's bad, but I think it's at least understandable ;)
Top
Pepek
Guru
Guru
User avatar
Posts: 313
Joined: Sun Apr 25, 2004 1:27 am
Location: Tarnowskie Góry - Poland - Europe

Re: xorg + fbcon (vesa-tng) gives trouble

  • Quote

Post by Pepek » Sat Nov 20, 2004 10:51 pm

jblechert wrote:luckily not much trouble, just a minor problem, fbcon runs smooth aslong as X hasn't been started, however, after X was started every time I change the console (not just from X to console but under the several consoles aswell), the screen seems to re-adjust itself and the sound is skipped for about 1/10th second. This also happens when X is closed but has been started before (after a reboot everything works fine again)
If you use vesa-tng try w/o vesa-tng, but with vesa.

Cheers. 8)
For Polish users :
$ man mas
Nie ma strony manuala dla mas
For Other users :
Sorry for my english, I know it's bad, but I think it's at least understandable ;)
Top
HecHacker1
Apprentice
Apprentice
User avatar
Posts: 213
Joined: Thu Jun 26, 2003 5:39 am
Location: UCSD
Contact:
Contact HecHacker1
Website

  • Quote

Post by HecHacker1 » Sun Nov 21, 2004 10:04 am

I am having a major problem with this kernel... Once i reach a certain number of open windows with Firefox, Thunderbird, and Gxine my computer begins to freeze up. When I look at the RAM and Swap disk monitor that XFCE4 has, I see my RAM shoot up from the normal 100MB usage all the way to fill up my ram! Thats 1GB's worth. Also, after the RAM fills it begins to fill the SWAP disk which is also 1GB. Once the swap disk fills, then both of them fall to normal levels for a split second, only to shoot right back up and start the cycle again...

Once I do a ctrl+alt+backspace to force quit X then everything goes back to normal.

The only new things since the last Nitro kernel is a new build of firefox and the new Folding@Home 5.02 client. I think that something is wrong with the kernel once I reach a certain amount of MB's.

Help.
Top
infirit
l33t
l33t
User avatar
Posts: 778
Joined: Sat Jan 11, 2003 1:43 pm
Location: Hoofddorp / The Netherlands

  • Quote

Post by infirit » Sun Nov 21, 2004 1:52 pm

For the people asking for the lufs kernel module patch!
Download this and apply with

Code: Select all

cd /usr/src/linux-2.6.9-nitro4
bzcat lufs-for-2.6.9-nitro4.patch.bz2 | patch -p1 --dry-run
If you do not see any rejects remove the "--dry-run" part.

[edit]DO NOT TRY THIS PATCH WITH ANY 2.6.10 KERNEL, it is broken because of a change in 2.6.10[/edit]
EASY TO INSTALL = Difficult to install, but instruction manual has pictures.
Join the adopt an unanswered post initiative today
Top
jblechert
n00b
n00b
Posts: 8
Joined: Sun Apr 25, 2004 3:34 pm
Location: Germany

Re: xorg + fbcon (vesa-tng) gives trouble

  • Quote

Post by jblechert » Sun Nov 21, 2004 3:46 pm

Pepek wrote:If you use vesa-tng try w/o vesa-tng, but with vesa.

Cheers. 8)
I use splash so I don't think this is an option, anyways, I wasn't asking for help, I can live with this bug, I just wanted to point out that it is there, but thanks anyway :)
Top
Pepek
Guru
Guru
User avatar
Posts: 313
Joined: Sun Apr 25, 2004 1:27 am
Location: Tarnowskie Góry - Poland - Europe

Re: xorg + fbcon (vesa-tng) gives trouble

  • Quote

Post by Pepek » Sun Nov 21, 2004 4:54 pm

jblechert wrote:
Pepek wrote:If you use vesa-tng try w/o vesa-tng, but with vesa.

Cheers. 8)
I use splash so I don't think this is an option, anyways, I wasn't asking for help, I can live with this bug, I just wanted to point out that it is there, but thanks anyway :)
Fbsplash works fine with vesafb and with vesafb-tng, so you can try this w/o vesafb-tng.

Cheers. 8)
For Polish users :
$ man mas
Nie ma strony manuala dla mas
For Other users :
Sorry for my english, I know it's bad, but I think it's at least understandable ;)
Top
redshift
Tux's lil' helper
Tux's lil' helper
Posts: 98
Joined: Wed Nov 26, 2003 8:23 pm
Contact:
Contact redshift
Website

  • Quote

Post by redshift » Sun Nov 21, 2004 9:37 pm

I'd like to see the BadRam patch back in, though it seemingly hasn't been updated at the official site since 2.6.5. If no one has created a new patch, I'll post a patch for the next version. I hacked it into nitro4 today and it works fine.
Tom
Top
Francis85
n00b
n00b
Posts: 35
Joined: Mon Jan 27, 2003 1:40 am

  • Quote

Post by Francis85 » Sun Nov 21, 2004 10:12 pm

I was wondering if it could be possible to add the device-mapper patches

http://sources.redhat.com/dm/patches.html

ftp://sources.redhat.com/pub/dm/patches ... m1.tar.bz2

This patch is needed to use dmraid properly (see http://people.redhat.com/~heinzm/sw/dmraid/readme )
Top
Nate_S
Guru
Guru
User avatar
Posts: 414
Joined: Thu Mar 18, 2004 9:05 pm

  • Quote

Post by Nate_S » Mon Nov 22, 2004 8:27 am

This new nitro is feelin great so far; first time I've gotten vesafb-tng to work.
Pepek wrote:
EmmEff wrote:Compiles and boots fine, but I cannot install the ivtv drivers on it...

Code: Select all

/var/tmp/portage/ivtv-0.2.0_rc2/work/ivtv-0.2.0-rc2f/driver/ivtv-driver.c:427:59: macro "create_workqueue" requires 2 arguments, but only 1 given
/var/tmp/portage/ivtv-0.2.0_rc2/work/ivtv-0.2.0-rc2f/driver/ivtv-driver.c: In function `ivtv_init_struct':
/var/tmp/portage/ivtv-0.2.0_rc2/work/ivtv-0.2.0-rc2f/driver/ivtv-driver.c:427: error: `create_workqueue' undeclared (first use in this function)
/var/tmp/portage/ivtv-0.2.0_rc2/work/ivtv-0.2.0-rc2f/driver/ivtv-driver.c:427: error: (Each undeclared identifier is reported only once
/var/tmp/portage/ivtv-0.2.0_rc2/work/ivtv-0.2.0-rc2f/driver/ivtv-driver.c:427: error: for each function it appears in.)
/var/tmp/portage/ivtv-0.2.0_rc2/work/ivtv-0.2.0-rc2f/driver/ivtv-driver.c:432:57: macro "create_workqueue" requires 2 arguments, but only 1 given
Go to the /var/tmp/portage/ivtv-0.2.0_rc2/work/ivtv-0.2.0-rc2f/driver directory, than open that file (ivtv-driver.c) and change line number 427 from this :

Code: Select all

	itv->vbi_work_queues = create_workqueue("ivtv_vbi");
to this :

Code: Select all

	itv->vbi_work_queues = create_workqueue("ivtv_vbi", PF_SYNCTHREAD);
, than change line 432 too from this :

Code: Select all

	itv->fw_work_queues = create_workqueue("ivtv_fw");
to this :

Code: Select all

	itv->fw_work_queues = create_workqueue("ivtv_fw", PF_SYNCTHREAD);
and than try to compile (now you can't do emerge ..., but you have to use `ebuild /path/to/that/ebuild merge`).

Cheers. 8)
Thanks a lot. I was having the same problem and this fixed it such that it would compile.

however, if you don't mind, I'm having one more problem. When compiling, it gives this:

Code: Select all

  CC [M] /usr/local/src/ivtv-0.1.10-pre2-ck100z/driver/ivtv-firmware.o
/usr/local/src/ivtv-0.1.10-pre2-ck100z/driver/ivtv-firmware.c: In function `load_fw_direct':
/usr/local/src/ivtv-0.1.10-pre2-ck100z/driver/ivtv-firmware.c:106: warning: implicit declaration of function `open'
/usr/local/src/ivtv-0.1.10-pre2-ck100z/driver/ivtv-firmware.c:112: warning: implicit declaration of function `lseek'
/usr/local/src/ivtv-0.1.10-pre2-ck100z/driver/ivtv-firmware.c:123: warning: implicit declaration of function `read'
/usr/local/src/ivtv-0.1.10-pre2-ck100z/driver/ivtv-firmware.c:129: warning: implicit declaration of function `close'


and later this...


  LD [M]  /usr/local/src/ivtv-0.1.10-pre2-ck100z/driver/ivtv-fb.o
  Building modules, stage 2.
  MODPOST
*** Warning: "close" [/usr/local/src/ivtv-0.1.10-pre2-ck100z/driver/ivtv.ko] undefined!
*** Warning: "open" [/usr/local/src/ivtv-0.1.10-pre2-ck100z/driver/ivtv.ko] undefined!
*** Warning: "read" [/usr/local/src/ivtv-0.1.10-pre2-ck100z/driver/ivtv.ko] undefined!
*** Warning: "lseek" [/usr/local/src/ivtv-0.1.10-pre2-ck100z/driver/ivtv.ko] undefined!
when I try to modprobe it, it fails and gives this in dmesg:

Code: Select all

ivtv: Unknown symbol lseek
ivtv: Unknown symbol read
ivtv: Unknown symbol open
ivtv: Unknown symbol close
Thanks in advance for any help

-Nate
Top
Phlogiston
Veteran
Veteran
User avatar
Posts: 1925
Joined: Tue Jan 27, 2004 12:05 pm
Location: Europe, Swizerland

  • Quote

Post by Phlogiston » Mon Nov 22, 2004 1:04 pm

For LIRC problems look here:

http://forums.gentoo.org/viewtopic.php? ... highlight=

Greets
Workstation: 5.1 SurroundSound, LIRC remote control; Laptop [IBM-T43]: patched sources, s2disk/ram, fingerprint sensor
Top
kos
n00b
n00b
Posts: 74
Joined: Wed May 28, 2003 2:16 pm
Location: Mountain View, CA

2.6.9-nitroX feedback

  • Quote

Post by kos » Mon Nov 22, 2004 1:28 pm

I'm having two problems with 2.6.9-nitroX kernels (tried 2.6.9-nitro1 and now -nitro4):

1. it traps on startkde, somewhere in artsd. Here's what screen of death says: (sorry, had to hand-write it)

Code: Select all

unable to handle paging request at virtual address ...
pde = 0000000
Oops: 0002 [#1]
Modules linked in: .. (my usual modules)
..
EIP is at enqueue_task+0x2b/0x40
..
process artsd (...)
Stack ...
Call Trace:
    scheduker_tick+0x2cb/0x320
    do_timer+0x29/0xd0
    timer_interrupt+0x53/0x140
    handle_IRQ_event+0x34/0x60
    do_IRQ+0x90/0x140
    common_interrupt+0x18/0x20
Code: ....
<0> Kernel panic - not syncing! Fatal exception in interrupt
I don't have this problem on 2.6.8.1-nitro6. I also tried to play with pci=noacpi, noapic, disableapic -- no difference.

2. I have problems with mounts. I have two binds in my fstab:

Code: Select all

/wd/ftp  /home/ftp      reiser4         bind                    0 0
/home/ftp  /home/kos/depot/ftproot      reiser4         rbind                   0 0
They work perfectly in 2.6.8.1-ntro6, but 2.6.9-nitro(1,4) forgets to mount them on boot. When I say "mount -a", only first one (/home/ftp) gets mounted. To mount the second one I have to explicitly say "mount /home/kos/depot/ftproot".

PS I see you are discussing fbsplash+swsusp2, I've changed (hacked, better to say) bootsplash scriplet to use fbsplash: http://www.livotov.org/pub/bootsplash
hibernate.conf settings will look like this:

Code: Select all

Bootsplash on
BootsplashConfig ThinkLinux
Where ThinkLinux is my fbsplash theme.
You can use it as a starting point to implement a clean fbsplash scriplet.
/KoS
Top
Post Reply

208 posts
  • Page 4 of 9
    • Jump to page:
  • Previous
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • …
  • 9
  • Next

Return to “Unsupported Software”

Jump to
  • Assistance
  • ↳   News & Announcements
  • ↳   Frequently Asked Questions
  • ↳   Installing Gentoo
  • ↳   Multimedia
  • ↳   Desktop Environments
  • ↳   Networking & Security
  • ↳   Kernel & Hardware
  • ↳   Portage & Programming
  • ↳   Gamers & Players
  • ↳   Other Things Gentoo
  • ↳   Unsupported Software
  • Discussion & Documentation
  • ↳   Documentation, Tips & Tricks
  • ↳   Gentoo Chat
  • ↳   Gentoo Forums Feedback
  • ↳   Duplicate Threads
  • International Gentoo Users
  • ↳   中文 (Chinese)
  • ↳   Dutch
  • ↳   Finnish
  • ↳   French
  • ↳   Deutsches Forum (German)
  • ↳   Diskussionsforum
  • ↳   Deutsche Dokumentation
  • ↳   Greek
  • ↳   Forum italiano (Italian)
  • ↳   Forum di discussione italiano
  • ↳   Risorse italiane (documentazione e tools)
  • ↳   Polskie forum (Polish)
  • ↳   Instalacja i sprzęt
  • ↳   Polish OTW
  • ↳   Portuguese
  • ↳   Documentação, Ferramentas e Dicas
  • ↳   Russian
  • ↳   Scandinavian
  • ↳   Spanish
  • ↳   Other Languages
  • Architectures & Platforms
  • ↳   Gentoo on ARM
  • ↳   Gentoo on PPC
  • ↳   Gentoo on Sparc
  • ↳   Gentoo on Alternative Architectures
  • ↳   Gentoo on AMD64
  • ↳   Gentoo for Mac OS X (Portage for Mac OS X)
  • Board index
  • All times are UTC
  • Delete cookies

© 2001–2026 Gentoo Foundation, Inc.

Powered by phpBB® Forum Software © phpBB Limited

Privacy Policy

 

 

magic