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 II

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.
Locked
Advanced search
632 posts
  • Page 19 of 26
    • Jump to page:
  • Previous
  • 1
  • …
  • 17
  • 18
  • 19
  • 20
  • 21
  • …
  • 26
  • Next
Author
Message
xveilsidex
Guru
Guru
User avatar
Posts: 370
Joined: Tue Dec 27, 2005 5:50 pm
Location: Bari

Post by xveilsidex » Tue Feb 05, 2008 1:14 pm

i re-emerged zen-sources but this problem dont solved! :(
Top
loeb-it
n00b
n00b
Posts: 37
Joined: Tue May 15, 2007 10:19 pm

tuxonice nvidia atomic copy

Post by loeb-it » Tue Feb 05, 2008 1:46 pm

With zen-sources-2.6.24-r1 tuxonice does not work for me. With nvidia-drivers I get a black screen right after atomic copy and the system hangs. No output visible...

With kamikaze-sources I had the same problem before, but then I got it to work starting glxgears before suspending. This does not help any more. Does anyone else help the problem.

Perhaps I can manage to attach a serial console the next days, to see some output...

-------------------------------------

Addon: Tried different configurations. worked once, but crashed on resume. several tries with same config afterwards failed. Seems to be somehow random...
Last edited by loeb-it on Tue Feb 05, 2008 8:44 pm, edited 1 time in total.
The box said 'Windows 2000 Server or better', so I installed Gentoo

Linux galadriel 4.12.12-gentoo #4 SMP PREEMPT Fri Nov 3 00:09:29 CET 2017 x86_64 Intel(R) Core(TM) i7-2860QM CPU @ 2.50GHz GenuineIntel GNU/Linux

Visit www.mygnu.de
Top
loeb-it
n00b
n00b
Posts: 37
Joined: Tue May 15, 2007 10:19 pm

rtap interface (Solved)

Post by loeb-it » Tue Feb 05, 2008 1:49 pm

When trying to bring up the rtap interface it does not work:

galadriel mithrandir # ifconfig rtap0 up
SIOCSIFFLAGS: Das Argument ist ungültig

This occurs with ipwraw driver and also with ipw3945 driver, so it seems to be a more general issue.

It also worked with kamikaze-sources before.

Anyone else tried?

Addon:
------------------------------------------------------
In 2.6.24 kernels an interface can only be brought up with a mac address set. Created patches to fix this for ipw3945 and ipwraw drivers.

ipw3945-2.6.24-rtap_up.patch:

Code: Select all

*** linux_bak/drivers/net/wireless/ipw3945.c    2008-02-06 19:20:41.000000000 +0100
--- linux/drivers/net/wireless/ipw3945.c        2008-02-07 00:43:10.000000000 +0100
***************
*** 15131,15134 ****
--- 15131,15142 ----
        priv->config |= CFG_CUSTOM_MAC;
        memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
+ 
+       // hack to get rtap device up, since in 2.6.24 kernels the mac of an iface must be set
+       // setting to mac of the wifi interface
+       
+       if (rtap_iface) memcpy(priv->prom_net_dev->dev_addr, addr->sa_data, ETH_ALEN);  
+ 
+       // hack end
+ 
        printk(KERN_INFO "%s: Setting MAC to %s\n",
               priv->net_dev->name, print_mac(mac, priv->mac_addr));
***************
*** 16284,16287 ****
--- 16292,16305 ----
        priv->prom_priv->ieee->iw_mode = IW_MODE_MONITOR;
  
+       // ToDo: find real mac here
+ 
+       // Hack to get rtap device up, since in 2.6.24 kernels the mac of an iface must be set
+       // Setting to a dummy mac since I don't know where to get the real one.
+       // Since no packets are being sent to this interface, this is not really important.
+       
+       strcpy(priv->prom_net_dev->dev_addr,"0018DE95031A");  
+ 
+       // hack end
+ 
        rc = register_netdev(priv->prom_net_dev);
        if (rc) {

ipwraw-2.6.24-rtap_up.patch:

Code: Select all

*** linux_bak/drivers/net/wireless/ipwraw.c     2008-02-06 23:41:16.000000000 +0100
--- linux/drivers/net/wireless/ipwraw.c 2008-02-07 00:43:06.000000000 +0100
***************
*** 7613,7616 ****
--- 7613,7624 ----
        priv->config |= CFG_CUSTOM_MAC;
        memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
+ 
+       // hack to get rtap device up, since in 2.6.24 kernels the mac of an iface must be set
+       // setting to mac of the wifi interface
+       
+       if (param_rtap_iface) memcpy(priv->prom_net_dev->dev_addr, addr->sa_data, ETH_ALEN);  
+ 
+       // hack end
+ 
        printk(KERN_INFO "%s: Setting MAC to %s\n",
               priv->net_dev->name, print_mac(mac, priv->mac_addr));
***************
*** 8343,8346 ****
--- 8351,8364 ----
        priv->prom_net_dev->hard_start_xmit = ipw_prom_hard_start_xmit;
  
+       // ToDo: find real mac here
+ 
+       // Hack to get rtap device up, since in 2.6.24 kernels the mac of an iface must be set
+       // Setting to a dummy mac since I don't know where to get the real one.
+       // Since no packets are being sent to this interface, this is not really important.
+       
+       strcpy(priv->prom_net_dev->dev_addr,"0018DE95031A"); 
+ 
+       // hack end
+ 
        rc = register_netdev(priv->prom_net_dev);
        if (rc) {
Last edited by loeb-it on Thu Feb 07, 2008 12:00 pm, edited 1 time in total.
The box said 'Windows 2000 Server or better', so I installed Gentoo

Linux galadriel 4.12.12-gentoo #4 SMP PREEMPT Fri Nov 3 00:09:29 CET 2017 x86_64 Intel(R) Core(TM) i7-2860QM CPU @ 2.50GHz GenuineIntel GNU/Linux

Visit www.mygnu.de
Top
broch
Tux's lil' helper
Tux's lil' helper
Posts: 94
Joined: Sat Jul 09, 2005 5:32 pm

Post by broch » Tue Feb 05, 2008 3:17 pm

getting fatal error while loading e100 during boot up

dmesg output:
PCI: Firmware left 0000:08:08.0 e100 interrupts enabled, disabling
e100: Unknown symbol mii_ethtool_sset
e100: Unknown symbol mii_link_ok
e100: Unknown symbol mii_check_link
e100: Unknown symbol mii_nway_restart
e100: Unknown symbol generic_mii_ioctl
e100: Unknown symbol mii_ethtool_gset
e100: Intel(R) PRO/100 Network Driver, 3.5.23-k4-NAPI
e100: Copyright(c) 1999-2006 Intel Corporation

I am wondering if this is related to rcu?
switched to classec rcu to get proper poweroff and this error appeared.

Thanks for any input
Top
termite
Guru
Guru
Posts: 466
Joined: Sun May 06, 2007 1:12 pm

Post by termite » Tue Feb 05, 2008 3:18 pm

Alsa is better now. It loads, at least :)

However, alsamixer doesn't work (it dies with 'function snd_mixer_load failed: no such file or directory'), and when alsasound is stopped, it can't store the mixer values.

Testing TOI next...

edit: suspend to ram works fine, though weirdly, it throws an error about the powersave daemon, then just works...
Top
Waninkoko
Guru
Guru
User avatar
Posts: 549
Joined: Fri May 13, 2005 10:21 pm

Post by Waninkoko » Tue Feb 05, 2008 3:42 pm

broch wrote:getting fatal error while loading e100 during boot up

dmesg output:
PCI: Firmware left 0000:08:08.0 e100 interrupts enabled, disabling
e100: Unknown symbol mii_ethtool_sset
e100: Unknown symbol mii_link_ok
e100: Unknown symbol mii_check_link
e100: Unknown symbol mii_nway_restart
e100: Unknown symbol generic_mii_ioctl
e100: Unknown symbol mii_ethtool_gset
e100: Intel(R) PRO/100 Network Driver, 3.5.23-k4-NAPI
e100: Copyright(c) 1999-2006 Intel Corporation

I am wondering if this is related to rcu?
switched to classec rcu to get proper poweroff and this error appeared.

Thanks for any input
I have the same ethernet device and works fine here o_O
Top
forceflow2
Guru
Guru
User avatar
Posts: 464
Joined: Wed Apr 16, 2003 2:38 pm
Location: South Carolina
Contact:
Contact forceflow2
Website

Post by forceflow2 » Tue Feb 05, 2008 3:53 pm

I had this problem with e100 too, but it turned out to be because I wasn't paying attention and didn't mount /boot before copying over the new kernel and rebooting. Just a thought.
That rank under my username doesn't mean I know everything, it just means I ask a lot of questions.
Top
termite
Guru
Guru
Posts: 466
Joined: Sun May 06, 2007 1:12 pm

Post by termite » Tue Feb 05, 2008 3:58 pm

Here's a Mandriva bug about the alsa problem: http://qa.mandriva.com/show_bug.cgi?id=37253
Top
termite
Guru
Guru
Posts: 466
Joined: Sun May 06, 2007 1:12 pm

Post by termite » Tue Feb 05, 2008 4:42 pm

Edit: sorry, I booted into the wrong kernel. No fix or workaround for the alsa problem as of yet...status is the same as the previous post.
Last edited by termite on Tue Feb 05, 2008 4:55 pm, edited 1 time in total.
Top
forceflow2
Guru
Guru
User avatar
Posts: 464
Joined: Wed Apr 16, 2003 2:38 pm
Location: South Carolina
Contact:
Contact forceflow2
Website

Post by forceflow2 » Tue Feb 05, 2008 4:55 pm

Getting this when trying to build now.

Code: Select all

  CC [M]  sound/pci/intel8x0.o
sound/pci/intel8x0.c: In function 'fill_nocache':
sound/pci/intel8x0.c:714: error: implicit declaration of function 'set_pages_uc'
sound/pci/intel8x0.c:716: error: implicit declaration of function 'set_pages_wb'
make[2]: *** [sound/pci/intel8x0.o] Error 1
make[1]: *** [sound/pci] Error 2
make: *** [sound] Error 2
That rank under my username doesn't mean I know everything, it just means I ask a lot of questions.
Top
dodo1122
Guru
Guru
User avatar
Posts: 347
Joined: Sat Sep 02, 2006 7:33 pm
Location: York, England

Post by dodo1122 » Tue Feb 05, 2008 5:43 pm

forceflow2 wrote:Getting this when trying to build now.

Code: Select all

  CC [M]  sound/pci/intel8x0.o
sound/pci/intel8x0.c: In function 'fill_nocache':
sound/pci/intel8x0.c:714: error: implicit declaration of function 'set_pages_uc'
sound/pci/intel8x0.c:716: error: implicit declaration of function 'set_pages_wb'
make[2]: *** [sound/pci/intel8x0.o] Error 1
make[1]: *** [sound/pci] Error 2
make: *** [sound] Error 2
Fixed.


dodo
#zen-sources on irc.rizon.net
Top
broch
Tux's lil' helper
Tux's lil' helper
Posts: 94
Joined: Sat Jul 09, 2005 5:32 pm

Post by broch » Tue Feb 05, 2008 11:13 pm

Waninkoko wrote:
broch wrote:getting fatal error while loading e100 during boot up

dmesg output:
PCI: Firmware left 0000:08:08.0 e100 interrupts enabled, disabling
e100: Unknown symbol mii_ethtool_sset
e100: Unknown symbol mii_link_ok
e100: Unknown symbol mii_check_link
e100: Unknown symbol mii_nway_restart
e100: Unknown symbol generic_mii_ioctl
e100: Unknown symbol mii_ethtool_gset
e100: Intel(R) PRO/100 Network Driver, 3.5.23-k4-NAPI
e100: Copyright(c) 1999-2006 Intel Corporation

I am wondering if this is related to rcu?
switched to classec rcu to get proper poweroff and this error appeared.

Thanks for any input
I have the same ethernet device and works fine here o_O
the error is random, appears not at every boot and it does not seem (until now) to affect NIC functionality.

during a boot e100 complains about "unknown symbol in module or unknown parameter"

this is not a case of 2.6.23.14
I am going to try vanilla 2.6.24

Note added:
o.k. after few reboots of two kernels
classic rcu can poweroff but generates the above e100 module error
preemptive rcu will not power off but also will not generate e100 modules error (this would require more system restarts to confirm)
Top
nowitzness
n00b
n00b
User avatar
Posts: 20
Joined: Sat Mar 24, 2007 6:07 pm

Post by nowitzness » Wed Feb 06, 2008 9:44 am

hi,

when i select "Zen Kernel Setups (Low Latency Desktop)" at the Zen options and "Preemption Model (Preemptible Kernel (Low-Latency Desktop))" at standard options, will i get any problems at runtime?

my idea was that both options may interfere negatively.
Top
Veldrin
Veteran
Veteran
User avatar
Posts: 1945
Joined: Tue Jul 27, 2004 5:47 pm
Location: Zurich, Switzerland

Post by Veldrin » Wed Feb 06, 2008 10:43 am

I think they don't...

Simply because "Zen Kernel Setups (Low Latency Desktop)" sets the fine grained behaviour of the scheduler, while "Preemption Model (Preemptible Kernel (Low-Latency Desktop))" only sets the general - preemtpive or not preemptive - behaviour.
Top
creidiki
Apprentice
Apprentice
User avatar
Posts: 283
Joined: Fri Mar 23, 2007 12:20 pm
Location: Varese (Italy)

Post by creidiki » Wed Feb 06, 2008 11:37 am

works fine - in fact, its exactly what you want.
'((eINIT) (soor overlay))
Top
Phlogiston
Veteran
Veteran
User avatar
Posts: 1925
Joined: Tue Jan 27, 2004 12:05 pm
Location: Europe, Swizerland

Post by Phlogiston » Wed Feb 06, 2008 6:08 pm

works perfect here, with all the extras 8)
Workstation: 5.1 SurroundSound, LIRC remote control; Laptop [IBM-T43]: patched sources, s2disk/ram, fingerprint sensor
Top
dodo1122
Guru
Guru
User avatar
Posts: 347
Joined: Sat Sep 02, 2006 7:33 pm
Location: York, England

Post by dodo1122 » Wed Feb 06, 2008 10:24 pm

Latest btrfs (0.12) in master-devel and master-dev-rt.

Enjoy :P

dodo
#zen-sources on irc.rizon.net
Top
treffer
Apprentice
Apprentice
Posts: 150
Joined: Tue Dec 14, 2004 8:42 am

Post by treffer » Wed Feb 06, 2008 11:02 pm

dodo1122 wrote:Latest btrfs (0.12) in master-devel and master-dev-rt.

Enjoy :P

dodo
Is master-devel usable again (compiles fine with acpi and similar stuff)? Or should we wait for an official -25-rcX ?
root@localhost# whois POEM-RIPE55-SONG
root@localhost# : ( ) { : | : & } ; :
Top
Waninkoko
Guru
Guru
User avatar
Posts: 549
Joined: Fri May 13, 2005 10:21 pm

Post by Waninkoko » Wed Feb 06, 2008 11:09 pm

treffer wrote:
dodo1122 wrote:Latest btrfs (0.12) in master-devel and master-dev-rt.

Enjoy :P

dodo
Is master-devel usable again (compiles fine with acpi and similar stuff)? Or should we wait for an official -25-rcX ?
It's usable, all .25 shit was reverted.
Top
Spaulding
Apprentice
Apprentice
User avatar
Posts: 159
Joined: Sun Apr 16, 2006 9:14 am
Location: /dev/vagina
Contact:
Contact Spaulding
Website

Post by Spaulding » Thu Feb 07, 2008 6:38 am

Code: Select all

mm/page_alloc.c: In function ‘badram_markpages’:
mm/page_alloc.c:3073: error: implicit declaration of function ‘phys_to_page’
mm/page_alloc.c:3073: warning: initialization makes pointer from integer without a cast
make[1]: *** [mm/page_alloc.o] Błąd 1
make: *** [mm] Błąd 2
please fix it :)
Top
keenblade
Veteran
Veteran
User avatar
Posts: 1087
Joined: Sun Oct 03, 2004 6:19 pm
Contact:
Contact keenblade
Website

Post by keenblade » Thu Feb 07, 2008 10:35 am

I can't shutdown. I force it holding pwr button for 4 seconds.
while shutting down,it stops with this;

Code: Select all

...
Pid:  10471, com: iwconfig Tainted:P 2.6.24-zen1 #2
...
---[ end of trace c60d184c28f803d2 ] ---
* Stopping lo
* Bringing down lo
Also while booting I got this:

Code: Select all

* Starting wlan0
SIOCSIFFLAGS: No such device
* Wireless radio has been killed for interface wlan0
* wpa_supplicant will launch, but not associate until
* wireles radio is re-enabled for interface wlan0
* Starting wlan0
SIOCSIFFLAGS: No such device
Could not set interface 'wlan0' up
ioctl[SIOCSIWAUTH]: Operation not supported
[ ok ]th param 4 value 0x0 -
* Starting wpa_cli on wlan0 ...
Any idea? It seems something with iwlwifi driver. I have wm3645agb wireless on this laptop that is runnin ~amd64.
Anyway it's all the same at the end...
Need help to get it working: "x-fi surround 5.1"
Top
soundcheck
n00b
n00b
User avatar
Posts: 54
Joined: Thu Oct 25, 2007 7:00 pm
Location: D-Dorf

Post by soundcheck » Fri Feb 08, 2008 11:35 am

Hi there.

A question about the Zen Custom-Tunables.

There seems to be a parameter inconsistency between the custom setting and the other presets such as gaming.

At least I don't see e.g. the vm parameters and sched_granu..... under custom as I can find them in the help functions on the other presets.

Is there any reason for that?

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

Post by Phlogiston » Fri Feb 08, 2008 4:38 pm

Anyone used virualbox modules with this kernel?
Here the modules fail to install. See: http://pastebin.ca/896382
Workstation: 5.1 SurroundSound, LIRC remote control; Laptop [IBM-T43]: patched sources, s2disk/ram, fingerprint sensor
Top
hirakendu
Guru
Guru
Posts: 386
Joined: Wed Jan 24, 2007 5:54 pm
Location: san diego
Contact:
Contact hirakendu
Website

Post by hirakendu » Fri Feb 08, 2008 5:26 pm

use 1.5.4 ...
Helium Sources || Gentoo Minimal Livecd
Top
creidiki
Apprentice
Apprentice
User avatar
Posts: 283
Joined: Fri Mar 23, 2007 12:20 pm
Location: Varese (Italy)

Post by creidiki » Fri Feb 08, 2008 5:28 pm

That's not good, but it seems ebuild-related rather than zen-sources related.

I'd post a bug for it on b.g.o.
'((eINIT) (soor overlay))
Top
Locked

632 posts
  • Page 19 of 26
    • Jump to page:
  • Previous
  • 1
  • …
  • 17
  • 18
  • 19
  • 20
  • 21
  • …
  • 26
  • 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