Forums

Skip to content

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

Official thread: "zen-sources" - Part IV

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
424 posts
  • Page 1 of 17
    • Jump to page:
  • 1
  • 2
  • 3
  • 4
  • 5
  • …
  • 17
  • Next
Author
Message
kernelOfTruth
Watchman
Watchman
User avatar
Posts: 6111
Joined: Tue Dec 20, 2005 10:34 pm
Location: Vienna, Austria; Germany; hello world :)
Contact:
Contact kernelOfTruth
Website

Official thread: "zen-sources" - Part IV

  • Quote

Post by kernelOfTruth » Fri Jun 13, 2008 10:08 pm

checking the sources out
First Time
Code:
cd /usr/src
git clone git://zen-sources.org/zen/kernel.git zen-sources
cd zen-sources
make menuconfig
creating a patch
example:

Code: Select all

git diff v2.6.24 v2.6.24-zen1 > 2.6.24-zen1.patch 
update sources (inside the directory)

Code: Select all

Update
Code:

cd /usr/src/zen-sources
git pull 
you are in the middle of a conflicted merge:
git pull
Auto-merged .gitignore
Auto-merged MAINTAINERS
Auto-merged Makefile
CONFLICT (content): Merge conflict in Makefile
Removed arch/mips/lasat/sysctl.h
Auto-merged drivers/ata/libata-scsi.c
Auto-merged drivers/char/Kconfig
Auto-merged drivers/char/drm/ati_pcigart.c
Auto-merged drivers/char/drm/drm.h
Auto-merged drivers/char/drm/drm_drv.c
CONFLICT (content): Merge conflict in drivers/char/drm/drm_drv.c
...
Automatic merge failed; fix conflicts and then commit the result.
rmh3093 wrote: This usually happens when the branch you are trying to update has been rebased. The easiest way to get around this is to checkout a new copy of the branch. For example, if you are currently on the master branch you would do something like the following:
first try:

Code: Select all

git checkout -f && git pull
if that doesn't help, then:

Code: Select all

git reset --hard; git branch -M master master-old; git checkout -b master origin/master; git branch -D master-old; git checkout -f 
you need to change to another branch ?
example:

Code: Select all

# git checkout master-devel
if the branch doesn't exist in your directory (

Code: Select all

git branch
)
e.g. master-light, then enter

Code: Select all

git branch master-light origin/master-light && git checkout master-light

you want to check out a specific version?

Code: Select all

git checkout v2.6.25-rc5-zen0
speeding up merge (download) of zen-sources (during first time)
1) checkout the linux-2.6 branch of linus (git.eu.kernel.org or git.kernel.org)
2) then merge both (e.g. it's in /usr/src/sources/linux-2.6)
3)

Code: Select all

 git clone --reference /usr/src/sources/linux-2.6/ git://zen-sources.org/zen/kernel.git
what branches are there?
currently (june 2008), there is 1 branch ( heads ):

- master (git checkout master) (e.g. v2.6.24-zen3)

the other "head"s are branches which are added to the main tree

the project's site can be reached over at:
www.zen-sources.org

the repo is reachable via:
http://zen-sources.org/cgi-bin/gitweb.c ... ;a=summary

edit (June 13th 2008) :

updated to newer zen-sources server + webpage-address
Last edited by kernelOfTruth on Thu Jun 26, 2008 10:34 am, edited 5 times in total.
https://github.com/kernelOfTruth/ZFS-fo ... scCD-4.9.0
https://github.com/kernelOfTruth/pulsea ... zer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Top
cheater1034
Veteran
Veteran
User avatar
Posts: 1558
Joined: Thu Sep 09, 2004 7:38 pm
Contact:
Contact cheater1034
Website

  • Quote

Post by cheater1034 » Fri Jun 13, 2008 11:49 pm

Zen-sources gets a thumbs up from me 8)

I'll be using it in my stage1 on 72 guide :D

I've made many patchsets, and on top of that i've made my own patches. If i made another patchset, i would want it to be exactly like zen defeating the purpose of making one ;)

Good work :wink:
IRC!: #zen-sources on irc.rizon.net
zen-kernel.org
--
Lost in android development land.
Top
r2dtu
Tux's lil' helper
Tux's lil' helper
Posts: 87
Joined: Fri Aug 23, 2002 6:53 am

  • Quote

Post by r2dtu » Sat Jun 14, 2008 9:32 am

Code: Select all

make[3]: *** No rule to make target `drivers/char/drm/i915_suspend.o', needed by `drivers/char/drm/i915.o'.  Stop.
...or have I just broke my git repo?
Top
IvanMajhen
Guru
Guru
User avatar
Posts: 392
Joined: Sat Jun 10, 2006 11:38 am
Location: Croatia

  • Quote

Post by IvanMajhen » Sat Jun 14, 2008 10:43 am

Same for me. I had to download it manualy. Intelfb doesn't work.
Top
dodo1122
Guru
Guru
User avatar
Posts: 347
Joined: Sat Sep 02, 2006 7:33 pm
Location: York, England

  • Quote

Post by dodo1122 » Sat Jun 14, 2008 10:52 am

which zen version? 2.6.26-rc6-zen1?

KernelOfTruth: we only have master in the new repo, no -rt, no -devel :P. We rebase branches to newest upstream version, so if another -rc comes out, we rebase every branch to that, remake master, pull all the branches in again, test-compile and run, fix stuff which breaks for us, tag and release. If other people find some shit not working, we make a hotfix.
#zen-sources on irc.rizon.net
Top
kernelOfTruth
Watchman
Watchman
User avatar
Posts: 6111
Joined: Tue Dec 20, 2005 10:34 pm
Location: Vienna, Austria; Germany; hello world :)
Contact:
Contact kernelOfTruth
Website

  • Quote

Post by kernelOfTruth » Sat Jun 14, 2008 11:16 am

dodo1122 wrote:which zen version? 2.6.26-rc6-zen1?

KernelOfTruth: we only have master in the new repo, no -rt, no -devel :P. We rebase branches to newest upstream version, so if another -rc comes out, we rebase every branch to that, remake master, pull all the branches in again, test-compile and run, fix stuff which breaks for us, tag and release. If other people find some shit not working, we make a hotfix.
fixed :P

will there be any new branches in the new repo in the near future such as -rt, -devel or -master-new ?

I see you've added lockless pagecache, just take your time & thanks :P
.26 final still isn't there - it seemingly still produces issues ? some of which Nick needs to know of ?

thanks :)
https://github.com/kernelOfTruth/ZFS-fo ... scCD-4.9.0
https://github.com/kernelOfTruth/pulsea ... zer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Top
IvanMajhen
Guru
Guru
User avatar
Posts: 392
Joined: Sat Jun 10, 2006 11:38 am
Location: Croatia

  • Quote

Post by IvanMajhen » Sat Jun 14, 2008 11:26 am

RC5-zen2. Will try rc6.

Edit:
Still the same.

Code: Select all

make[3]: *** No rule to make target `drivers/char/drm/i915_suspend.o', needed by `drivers/char/drm/drm.o'.  Stop.
Top
dodo1122
Guru
Guru
User avatar
Posts: 347
Joined: Sat Sep 02, 2006 7:33 pm
Location: York, England

  • Quote

Post by dodo1122 » Sat Jun 14, 2008 12:05 pm

IvanMajhen wrote:RC5-zen2. Will try rc6.

Edit:
Still the same.

Code: Select all

make[3]: *** No rule to make target `drivers/char/drm/i915_suspend.o', needed by `drivers/char/drm/drm.o'.  Stop.
I see, i forgot to git add a file :/ Hotfix coming soon :P

EDIT: hotfix1 out. You can patch it manually, or use zen-hotfix to patch your kernel tree, or just git pull if you use git :P

fixed a small bug in madwifi, and added missing i915_suspend.c

EDIT2: KernelOfTruth, lockless is not yet in master, as it caused a very early kernel panic, but we're working on it :P

dodo
#zen-sources on irc.rizon.net
Top
IvanMajhen
Guru
Guru
User avatar
Posts: 392
Joined: Sat Jun 10, 2006 11:38 am
Location: Croatia

  • Quote

Post by IvanMajhen » Sat Jun 14, 2008 12:55 pm

I already did that. Intelfb doesn't work if i915 is compiled in kernel.
Top
r2dtu
Tux's lil' helper
Tux's lil' helper
Posts: 87
Joined: Fri Aug 23, 2002 6:53 am

  • Quote

Post by r2dtu » Sat Jun 14, 2008 2:48 pm

Is there any benefit from drm from mesa git?
All I get is trouble...my screen gets a strange 'shake' every couple of minutes. Eventually X goes dark and I have to reboot.
I don't mind reverting the drm branch. Just wonder what people get from it?
Top
IvanMajhen
Guru
Guru
User avatar
Posts: 392
Joined: Sat Jun 10, 2006 11:38 am
Location: Croatia

  • Quote

Post by IvanMajhen » Sat Jun 14, 2008 3:25 pm

Mine too. Disable framebuffer compression. I don't see any benefits.
Speed is the same. We still dont have TTM compatible X/libdrm/....
Top
rmh3093
Advocate
Advocate
User avatar
Posts: 2138
Joined: Wed Aug 06, 2003 10:36 pm
Location: Albany, NY

Re: Official thread: "zen-sources" - Part IV

  • Quote

Post by rmh3093 » Sat Jun 14, 2008 3:54 pm

kernelOfTruth wrote:git clone git://zen-sources.org/zen/kernel.git
this should be:
git clone git://zen-sources.org/zen/kernel.git zen-sources

the way you had it would create the dir kernel.git
kernelOfTruth wrote:the SourceForge.net site at:
http://sourceforge.net/projects/zen-sources/ (thanks guys, for hosting :D )
we dont use them any more
Do not meddle in the affairs of wizards, for they are subtle and quick to anger.
Top
dodo1122
Guru
Guru
User avatar
Posts: 347
Joined: Sat Sep 02, 2006 7:33 pm
Location: York, England

  • Quote

Post by dodo1122 » Sat Jun 14, 2008 9:24 pm

Ask rmh about the drm branch :P Apparently the point is that it allows people to get 3d acceleration with r5xx ati cards.


dodo
#zen-sources on irc.rizon.net
Top
kernelOfTruth
Watchman
Watchman
User avatar
Posts: 6111
Joined: Tue Dec 20, 2005 10:34 pm
Location: Vienna, Austria; Germany; hello world :)
Contact:
Contact kernelOfTruth
Website

Re: Official thread: "zen-sources" - Part IV

  • Quote

Post by kernelOfTruth » Sat Jun 14, 2008 10:18 pm

rmh3093 wrote:
kernelOfTruth wrote:git clone git://zen-sources.org/zen/kernel.git
this should be:
git clone git://zen-sources.org/zen/kernel.git zen-sources

the way you had it would create the dir kernel.git
kernelOfTruth wrote:the SourceForge.net site at:
http://sourceforge.net/projects/zen-sources/ (thanks guys, for hosting :D )
we dont use them any more
fixed :P
https://github.com/kernelOfTruth/ZFS-fo ... scCD-4.9.0
https://github.com/kernelOfTruth/pulsea ... zer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Top
soundcheck
n00b
n00b
User avatar
Posts: 54
Joined: Thu Oct 25, 2007 7:00 pm
Location: D-Dorf

  • Quote

Post by soundcheck » Sun Jun 15, 2008 10:25 am

Hi folks.

Havn't been around for a while. I just downloaded the latest 2.6.26-rc6-zen1 kernel-sources to realize that
the special zen-kernel scheduler tuning-section i s gone!?

Any reason for that?

KLS
Top
tranquilcool
Veteran
Veteran
Posts: 1246
Joined: Fri Mar 25, 2005 1:16 pm

  • Quote

Post by tranquilcool » Sun Jun 15, 2008 10:38 am

i have these in dmesg (26-rc6-zen1) and i can't figure it out.


mousepoll_interval .5.77 Unknown sysctl binary path
Pid: 1, comm: swapper Not tainted 2.6.26-rc6-zen1 #20
[<80139007>] set_fail+0x45/0x47
[<80139363>] sysctl_check_table+0x35a/0x697
[<801291f2>] sysctl_head_finish+0x11/0x37
[<8013937f>] sysctl_check_table+0x376/0x697
[<8059f170>] sysctl_init+0x22/0x25
[<8058e27a>] kernel_init+0x184/0x291
[<8017c4cc>] do_coredump+0x78c/0x89d
[<8059f14e>] sysctl_init+0x0/0x25
[<8011e942>] finish_task_switch+0x1f/0x7a
[<8011fc64>] schedule_tail+0x17/0x45
[<80102f56>] ret_from_fork+0x6/0x1c
[<8058e0f6>] kernel_init+0x0/0x291
[<8058e0f6>] kernel_init+0x0/0x291
[<80103c73>] kernel_thread_helper+0x7/0x14

also one PCI:Bridge disabled

PCI: Bridge: 0000:00:01.0
IO window: disabled.
MEM window: 0xfc900000-0xfe9fffff
PREFETCH window: 0x00000000d7e00000-0x00000000f7dfffff
PCI: Bridge: 0000:00:1e.0
IO window: b000-bfff
MEM window: 0xfea00000-0xfeafffff
PREFETCH window: 0x00000000f7e00000-0x00000000f7efffff


help.
this is a strange strange world.
Top
kernelOfTruth
Watchman
Watchman
User avatar
Posts: 6111
Joined: Tue Dec 20, 2005 10:34 pm
Location: Vienna, Austria; Germany; hello world :)
Contact:
Contact kernelOfTruth
Website

  • Quote

Post by kernelOfTruth » Sun Jun 15, 2008 11:06 am

tranquilcool wrote:i have these in dmesg (26-rc6-zen1) and i can't figure it out.


mousepoll_interval .5.77 Unknown sysctl binary path
Pid: 1, comm: swapper Not tainted 2.6.26-rc6-zen1 #20
[<80139007>] set_fail+0x45/0x47
[<80139363>] sysctl_check_table+0x35a/0x697
[<801291f2>] sysctl_head_finish+0x11/0x37
[<8013937f>] sysctl_check_table+0x376/0x697
[<8059f170>] sysctl_init+0x22/0x25
[<8058e27a>] kernel_init+0x184/0x291
[<8017c4cc>] do_coredump+0x78c/0x89d
[<8059f14e>] sysctl_init+0x0/0x25
[<8011e942>] finish_task_switch+0x1f/0x7a
[<8011fc64>] schedule_tail+0x17/0x45
[<80102f56>] ret_from_fork+0x6/0x1c
[<8058e0f6>] kernel_init+0x0/0x291
[<8058e0f6>] kernel_init+0x0/0x291
[<80103c73>] kernel_thread_helper+0x7/0x14

also one PCI:Bridge disabled

PCI: Bridge: 0000:00:01.0
IO window: disabled.
MEM window: 0xfc900000-0xfe9fffff
PREFETCH window: 0x00000000d7e00000-0x00000000f7dfffff
PCI: Bridge: 0000:00:1e.0
IO window: b000-bfff
MEM window: 0xfea00000-0xfeafffff
PREFETCH window: 0x00000000f7e00000-0x00000000f7efffff


help.
ensure that you have the following selected:
cat /usr/src/linux/.config | grep CTL
CONFIG_SYSVIPC_SYSCTL=y
CONFIG_SYSCTL=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_SYSCTL_SYSCALL_CHECK=y
...
...
...
CONFIG_PROC_SYSCTL=y
https://github.com/kernelOfTruth/ZFS-fo ... scCD-4.9.0
https://github.com/kernelOfTruth/pulsea ... zer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Top
tranquilcool
Veteran
Veteran
Posts: 1246
Joined: Fri Mar 25, 2005 1:16 pm

  • Quote

Post by tranquilcool » Sun Jun 15, 2008 11:19 am

kernelOfTruth wrote:
tranquilcool wrote:i have these in dmesg (26-rc6-zen1) and i can't figure it out.


mousepoll_interval .5.77 Unknown sysctl binary path
Pid: 1, comm: swapper Not tainted 2.6.26-rc6-zen1 #20
[<80139007>] set_fail+0x45/0x47
[<80139363>] sysctl_check_table+0x35a/0x697
[<801291f2>] sysctl_head_finish+0x11/0x37
[<8013937f>] sysctl_check_table+0x376/0x697
[<8059f170>] sysctl_init+0x22/0x25
[<8058e27a>] kernel_init+0x184/0x291
[<8017c4cc>] do_coredump+0x78c/0x89d
[<8059f14e>] sysctl_init+0x0/0x25
[<8011e942>] finish_task_switch+0x1f/0x7a
[<8011fc64>] schedule_tail+0x17/0x45
[<80102f56>] ret_from_fork+0x6/0x1c
[<8058e0f6>] kernel_init+0x0/0x291
[<8058e0f6>] kernel_init+0x0/0x291
[<80103c73>] kernel_thread_helper+0x7/0x14

also one PCI:Bridge disabled

PCI: Bridge: 0000:00:01.0
IO window: disabled.
MEM window: 0xfc900000-0xfe9fffff
PREFETCH window: 0x00000000d7e00000-0x00000000f7dfffff
PCI: Bridge: 0000:00:1e.0
IO window: b000-bfff
MEM window: 0xfea00000-0xfeafffff
PREFETCH window: 0x00000000f7e00000-0x00000000f7efffff


help.
ensure that you have the following selected:
cat /usr/src/linux/.config | grep CTL
CONFIG_SYSVIPC_SYSCTL=y
CONFIG_SYSCTL=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_SYSCTL_SYSCALL_CHECK=y
...
...
...
CONFIG_PROC_SYSCTL=y

yes they are selected;

CONFIG_SYSVIPC_SYSCTL=y
CONFIG_SYSCTL=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_SYSCTL_SYSCALL_CHECK=y
CONFIG_X86_DEBUGCTLMSR=y
CONFIG_QUOTACTL=y
CONFIG_PROC_SYSCTL=y
this is a strange strange world.
Top
kernelOfTruth
Watchman
Watchman
User avatar
Posts: 6111
Joined: Tue Dec 20, 2005 10:34 pm
Location: Vienna, Austria; Germany; hello world :)
Contact:
Contact kernelOfTruth
Website

  • Quote

Post by kernelOfTruth » Sun Jun 15, 2008 11:26 am

tranquilcool wrote:
kernelOfTruth wrote:
tranquilcool wrote:i have these in dmesg (26-rc6-zen1) and i can't figure it out.


mousepoll_interval .5.77 Unknown sysctl binary path
Pid: 1, comm: swapper Not tainted 2.6.26-rc6-zen1 #20
[<80139007>] set_fail+0x45/0x47
[<80139363>] sysctl_check_table+0x35a/0x697
[<801291f2>] sysctl_head_finish+0x11/0x37
[<8013937f>] sysctl_check_table+0x376/0x697
[<8059f170>] sysctl_init+0x22/0x25
[<8058e27a>] kernel_init+0x184/0x291
[<8017c4cc>] do_coredump+0x78c/0x89d
[<8059f14e>] sysctl_init+0x0/0x25
[<8011e942>] finish_task_switch+0x1f/0x7a
[<8011fc64>] schedule_tail+0x17/0x45
[<80102f56>] ret_from_fork+0x6/0x1c
[<8058e0f6>] kernel_init+0x0/0x291
[<8058e0f6>] kernel_init+0x0/0x291
[<80103c73>] kernel_thread_helper+0x7/0x14

also one PCI:Bridge disabled

PCI: Bridge: 0000:00:01.0
IO window: disabled.
MEM window: 0xfc900000-0xfe9fffff
PREFETCH window: 0x00000000d7e00000-0x00000000f7dfffff
PCI: Bridge: 0000:00:1e.0
IO window: b000-bfff
MEM window: 0xfea00000-0xfeafffff
PREFETCH window: 0x00000000f7e00000-0x00000000f7efffff


help.
ensure that you have the following selected:
cat /usr/src/linux/.config | grep CTL
CONFIG_SYSVIPC_SYSCTL=y
CONFIG_SYSCTL=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_SYSCTL_SYSCALL_CHECK=y
...
...
...
CONFIG_PROC_SYSCTL=y

yes they are selected;

CONFIG_SYSVIPC_SYSCTL=y
CONFIG_SYSCTL=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_SYSCTL_SYSCALL_CHECK=y
CONFIG_X86_DEBUGCTLMSR=y
CONFIG_QUOTACTL=y
CONFIG_PROC_SYSCTL=y
then try to disable swap prefetch (most likely) & TOI (tux on ice)
https://github.com/kernelOfTruth/ZFS-fo ... scCD-4.9.0
https://github.com/kernelOfTruth/pulsea ... zer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Top
tranquilcool
Veteran
Veteran
Posts: 1246
Joined: Fri Mar 25, 2005 1:16 pm

  • Quote

Post by tranquilcool » Sun Jun 15, 2008 11:31 am

kernelOfTruth wrote:
tranquilcool wrote:
kernelOfTruth wrote:
tranquilcool wrote:i have these in dmesg (26-rc6-zen1) and i can't figure it out.


mousepoll_interval .5.77 Unknown sysctl binary path
Pid: 1, comm: swapper Not tainted 2.6.26-rc6-zen1 #20
[<80139007>] set_fail+0x45/0x47
[<80139363>] sysctl_check_table+0x35a/0x697
[<801291f2>] sysctl_head_finish+0x11/0x37
[<8013937f>] sysctl_check_table+0x376/0x697
[<8059f170>] sysctl_init+0x22/0x25
[<8058e27a>] kernel_init+0x184/0x291
[<8017c4cc>] do_coredump+0x78c/0x89d
[<8059f14e>] sysctl_init+0x0/0x25
[<8011e942>] finish_task_switch+0x1f/0x7a
[<8011fc64>] schedule_tail+0x17/0x45
[<80102f56>] ret_from_fork+0x6/0x1c
[<8058e0f6>] kernel_init+0x0/0x291
[<8058e0f6>] kernel_init+0x0/0x291
[<80103c73>] kernel_thread_helper+0x7/0x14

also one PCI:Bridge disabled

PCI: Bridge: 0000:00:01.0
IO window: disabled.
MEM window: 0xfc900000-0xfe9fffff
PREFETCH window: 0x00000000d7e00000-0x00000000f7dfffff
PCI: Bridge: 0000:00:1e.0
IO window: b000-bfff
MEM window: 0xfea00000-0xfeafffff
PREFETCH window: 0x00000000f7e00000-0x00000000f7efffff


help.
ensure that you have the following selected:
cat /usr/src/linux/.config | grep CTL
CONFIG_SYSVIPC_SYSCTL=y
CONFIG_SYSCTL=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_SYSCTL_SYSCALL_CHECK=y
...
...
...
CONFIG_PROC_SYSCTL=y

yes they are selected;

CONFIG_SYSVIPC_SYSCTL=y
CONFIG_SYSCTL=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_SYSCTL_SYSCALL_CHECK=y
CONFIG_X86_DEBUGCTLMSR=y
CONFIG_QUOTACTL=y
CONFIG_PROC_SYSCTL=y
then try to disable swap prefetch (most likely) & TOI (tux on ice)
ok as soon as i finish openoffice compilation will try that. thanks.
this is a strange strange world.
Top
dodo1122
Guru
Guru
User avatar
Posts: 347
Joined: Sat Sep 02, 2006 7:33 pm
Location: York, England

  • Quote

Post by dodo1122 » Sun Jun 15, 2008 1:09 pm

For all you thinkpad users out there (including me :P), HDAPS works now, thanks to Mathias Kaufmann for the patch.
It is included in hotfix2, along with a small compilation fix for TOI.


dodo
#zen-sources on irc.rizon.net
Top
tranquilcool
Veteran
Veteran
Posts: 1246
Joined: Fri Mar 25, 2005 1:16 pm

  • Quote

Post by tranquilcool » Sun Jun 15, 2008 11:42 pm

kernelOfTruth wrote:
tranquilcool wrote:
kernelOfTruth wrote:
tranquilcool wrote:i have these in dmesg (26-rc6-zen1) and i can't figure it out.


mousepoll_interval .5.77 Unknown sysctl binary path
Pid: 1, comm: swapper Not tainted 2.6.26-rc6-zen1 #20
[<80139007>] set_fail+0x45/0x47
[<80139363>] sysctl_check_table+0x35a/0x697
[<801291f2>] sysctl_head_finish+0x11/0x37
[<8013937f>] sysctl_check_table+0x376/0x697
[<8059f170>] sysctl_init+0x22/0x25
[<8058e27a>] kernel_init+0x184/0x291
[<8017c4cc>] do_coredump+0x78c/0x89d
[<8059f14e>] sysctl_init+0x0/0x25
[<8011e942>] finish_task_switch+0x1f/0x7a
[<8011fc64>] schedule_tail+0x17/0x45
[<80102f56>] ret_from_fork+0x6/0x1c
[<8058e0f6>] kernel_init+0x0/0x291
[<8058e0f6>] kernel_init+0x0/0x291
[<80103c73>] kernel_thread_helper+0x7/0x14

also one PCI:Bridge disabled

PCI: Bridge: 0000:00:01.0
IO window: disabled.
MEM window: 0xfc900000-0xfe9fffff
PREFETCH window: 0x00000000d7e00000-0x00000000f7dfffff
PCI: Bridge: 0000:00:1e.0
IO window: b000-bfff
MEM window: 0xfea00000-0xfeafffff
PREFETCH window: 0x00000000f7e00000-0x00000000f7efffff


help.
ensure that you have the following selected:
cat /usr/src/linux/.config | grep CTL
CONFIG_SYSVIPC_SYSCTL=y
CONFIG_SYSCTL=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_SYSCTL_SYSCALL_CHECK=y
...
...
...
CONFIG_PROC_SYSCTL=y

yes they are selected;

CONFIG_SYSVIPC_SYSCTL=y
CONFIG_SYSCTL=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_SYSCTL_SYSCALL_CHECK=y
CONFIG_X86_DEBUGCTLMSR=y
CONFIG_QUOTACTL=y
CONFIG_PROC_SYSCTL=y
then try to disable swap prefetch (most likely) & TOI (tux on ice)
same erros and i just don't have any clue.
with kernel-2.6.25 this doesn't happen.
this is a strange strange world.
Top
rmh3093
Advocate
Advocate
User avatar
Posts: 2138
Joined: Wed Aug 06, 2003 10:36 pm
Location: Albany, NY

  • Quote

Post by rmh3093 » Mon Jun 16, 2008 1:57 pm

tranquilcool wrote:
kernelOfTruth wrote:
tranquilcool wrote:
kernelOfTruth wrote:
tranquilcool wrote:i have these in dmesg (26-rc6-zen1) and i can't figure it out.


mousepoll_interval .5.77 Unknown sysctl binary path
Pid: 1, comm: swapper Not tainted 2.6.26-rc6-zen1 #20
[<80139007>] set_fail+0x45/0x47
[<80139363>] sysctl_check_table+0x35a/0x697
[<801291f2>] sysctl_head_finish+0x11/0x37
[<8013937f>] sysctl_check_table+0x376/0x697
[<8059f170>] sysctl_init+0x22/0x25
[<8058e27a>] kernel_init+0x184/0x291
[<8017c4cc>] do_coredump+0x78c/0x89d
[<8059f14e>] sysctl_init+0x0/0x25
[<8011e942>] finish_task_switch+0x1f/0x7a
[<8011fc64>] schedule_tail+0x17/0x45
[<80102f56>] ret_from_fork+0x6/0x1c
[<8058e0f6>] kernel_init+0x0/0x291
[<8058e0f6>] kernel_init+0x0/0x291
[<80103c73>] kernel_thread_helper+0x7/0x14

also one PCI:Bridge disabled

PCI: Bridge: 0000:00:01.0
IO window: disabled.
MEM window: 0xfc900000-0xfe9fffff
PREFETCH window: 0x00000000d7e00000-0x00000000f7dfffff
PCI: Bridge: 0000:00:1e.0
IO window: b000-bfff
MEM window: 0xfea00000-0xfeafffff
PREFETCH window: 0x00000000f7e00000-0x00000000f7efffff


help.
ensure that you have the following selected:
cat /usr/src/linux/.config | grep CTL
CONFIG_SYSVIPC_SYSCTL=y
CONFIG_SYSCTL=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_SYSCTL_SYSCALL_CHECK=y
...
...
...
CONFIG_PROC_SYSCTL=y

yes they are selected;

CONFIG_SYSVIPC_SYSCTL=y
CONFIG_SYSCTL=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_SYSCTL_SYSCALL_CHECK=y
CONFIG_X86_DEBUGCTLMSR=y
CONFIG_QUOTACTL=y
CONFIG_PROC_SYSCTL=y
then try to disable swap prefetch (most likely) & TOI (tux on ice)
same erros and i just don't have any clue.
with kernel-2.6.25 this doesn't happen.
try and disable that mousepoll menuconfig option
Do not meddle in the affairs of wizards, for they are subtle and quick to anger.
Top
tranquilcool
Veteran
Veteran
Posts: 1246
Joined: Fri Mar 25, 2005 1:16 pm

  • Quote

Post by tranquilcool » Mon Jun 16, 2008 2:02 pm

rmh3093 wrote:
tranquilcool wrote:
kernelOfTruth wrote:
tranquilcool wrote:
kernelOfTruth wrote:
tranquilcool wrote:i have these in dmesg (26-rc6-zen1) and i can't figure it out.


mousepoll_interval .5.77 Unknown sysctl binary path
Pid: 1, comm: swapper Not tainted 2.6.26-rc6-zen1 #20
[<80139007>] set_fail+0x45/0x47
[<80139363>] sysctl_check_table+0x35a/0x697
[<801291f2>] sysctl_head_finish+0x11/0x37
[<8013937f>] sysctl_check_table+0x376/0x697
[<8059f170>] sysctl_init+0x22/0x25
[<8058e27a>] kernel_init+0x184/0x291
[<8017c4cc>] do_coredump+0x78c/0x89d
[<8059f14e>] sysctl_init+0x0/0x25
[<8011e942>] finish_task_switch+0x1f/0x7a
[<8011fc64>] schedule_tail+0x17/0x45
[<80102f56>] ret_from_fork+0x6/0x1c
[<8058e0f6>] kernel_init+0x0/0x291
[<8058e0f6>] kernel_init+0x0/0x291
[<80103c73>] kernel_thread_helper+0x7/0x14

also one PCI:Bridge disabled

PCI: Bridge: 0000:00:01.0
IO window: disabled.
MEM window: 0xfc900000-0xfe9fffff
PREFETCH window: 0x00000000d7e00000-0x00000000f7dfffff
PCI: Bridge: 0000:00:1e.0
IO window: b000-bfff
MEM window: 0xfea00000-0xfeafffff
PREFETCH window: 0x00000000f7e00000-0x00000000f7efffff


help.
ensure that you have the following selected:
cat /usr/src/linux/.config | grep CTL
CONFIG_SYSVIPC_SYSCTL=y
CONFIG_SYSCTL=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_SYSCTL_SYSCALL_CHECK=y
...
...
...
CONFIG_PROC_SYSCTL=y

yes they are selected;

CONFIG_SYSVIPC_SYSCTL=y
CONFIG_SYSCTL=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_SYSCTL_SYSCALL_CHECK=y
CONFIG_X86_DEBUGCTLMSR=y
CONFIG_QUOTACTL=y
CONFIG_PROC_SYSCTL=y
then try to disable swap prefetch (most likely) & TOI (tux on ice)
same erros and i just don't have any clue.
with kernel-2.6.25 this doesn't happen.
try and disable that mousepoll menuconfig option
CONFIG_USB_HID_MOUSE_POLLING is not set
but problem remains same.
this is a strange strange world.
Top
deno
Guru
Guru
User avatar
Posts: 411
Joined: Wed Sep 13, 2006 4:23 pm

  • Quote

Post by deno » Mon Jun 16, 2008 3:18 pm

Hi!

Cannot compile 2.6.26-rc6-zen1.0.
CC drivers/char/drm/drm_vm_nopage_compat.o
CC drivers/char/drm/i915_drv.o
drivers/char/drm/i915_drv.c: In function ‘i915_resume’:
drivers/char/drm/i915_drv.c:90: warning: unused variable ‘dev_priv’
CC drivers/char/drm/i915_dma.o
CC drivers/char/drm/i915_irq.o
CC drivers/char/drm/i915_mem.o
CC drivers/char/drm/i915_fence.o
CC drivers/char/drm/i915_buffer.o
CC drivers/char/drm/i915_compat.o
CC drivers/char/drm/i915_execbuf.o
make[3]: *** No rule to make target `drivers/char/drm/i915_suspend.o', needed by `drivers/char/drm/drm.o'. Stop.
make[2]: *** [drivers/char/drm] Error 2
make[1]: *** [drivers/char] Error 2
make: *** [drivers] Error 2
Compiler is gcc-4.3.1.
Top
Post Reply

424 posts
  • Page 1 of 17
    • Jump to page:
  • 1
  • 2
  • 3
  • 4
  • 5
  • …
  • 17
  • 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