Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Official thread: "zen-sources" - Part V
View unanswered posts
View posts from last 24 hours

Goto page Previous  1, 2, 3 ... 6, 7, 8 ... 21, 22, 23  Next  
This topic is locked: you cannot edit posts or make replies.    Gentoo Forums Forum Index Unsupported Software
View previous topic :: View next topic  
Author Message
Diskmaster
n00b
n00b


Joined: 13 Jul 2008
Posts: 23

PostPosted: Wed Sep 10, 2008 7:32 am    Post subject: Reply with quote

MageSlayer wrote:
Hi, guys.

Does anybody uses old GeForce2(MX) video with 2.6.27+ ?
Or does nvidia-drivers 96.+ work with 2.6.27+?

Thanks.


Regretfully, that's up to nvidia, though there's supposed to be a new legacy release soon.

Also, overlay update: alsa bumped to 1.0.18rc3 where it builds. (alsa-utils is giving failed patch stuff / needs more work, alsa-plugins still needs the ffmpeg toggle patch rediff'd, also need to look at zen-sources.eclass, probably broke it again. Will have 2.6.26-zenrt3 added shortly after it's fixed.)

... also bed.
_________________
Linux polished-diamond 3.0.9-00003-g3c676b1 x86_64 Intel(R) Core(TM) i7 CPU 950 @ 3.07GHz GenuineIntel GNU/Linux
Something witty goes here.
Back to top
View user's profile Send private message
MageSlayer
Apprentice
Apprentice


Joined: 26 Jul 2007
Posts: 252
Location: Ukraine

PostPosted: Wed Sep 10, 2008 7:44 am    Post subject: Reply with quote

Quote:
Regretfully, that's up to nvidia, though there's supposed to be a new legacy release soon.


So, I think the answer is no :(

BTW, is there any method to find out what capabilities any git branch has?
i.e. - How can I test if 2.6.27-rc8 tag contains compcache patch?
Seems like a noob question :)

Thanks.
Back to top
View user's profile Send private message
gforum
Tux's lil' helper
Tux's lil' helper


Joined: 31 Mar 2008
Posts: 140

PostPosted: Thu Sep 11, 2008 10:45 pm    Post subject: Reply with quote

i just updated t the latest zen-sources and noticed that the driver for iwl4965 is outta there!
so... what im i gonna do to get my wifi working when i compile this bugger?
is the new iwl next-gen or whatnot, a replacement for it?
so i'm guess i gotta delete the old microcode or whatnot and Download a new one, right?

anyone know?
:arrow:

edit: im talkign about kernel 2.6.27-rc6 btw.
Back to top
View user's profile Send private message
sezaru
n00b
n00b


Joined: 10 Aug 2006
Posts: 47

PostPosted: Fri Sep 12, 2008 3:13 am    Post subject: Reply with quote

I find that patch for 177 nvidia drivers and tried it with the legacy, it patchs fine and compile, but I'm in the middle of my new gentoo instalation, so i can't test if it's actualy runs, can someone test it?
The patch:
Code:
diff -Nru NVIDIA-Linux-x86-173.14.12-pkg0.orig/usr/src/nv/nv.c NVIDIA-Linux-x86-173.14.12-pkg0/usr/src/nv/nv.c
--- usr/src/nv/nv.c   2008-07-18 03:42:50.000000000 +0200
+++ NVIDIA-Linux-x86-173.14.12-pkg0/usr/src/nv/nv.c   2008-08-12 00:35:45.000000000 +0200
@@ -1296,14 +1296,22 @@
             if (get_cpu() == cpu)
                 __nv_setup_pat_entries(NULL);
             else
+          #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27)
+      smp_call_function(__nv_setup_pat_entries, hcpu, 1);
+      #else
                 smp_call_function(__nv_setup_pat_entries, hcpu, 1, 1);
+      #endif
             put_cpu();
             break;
         case CPU_DOWN_PREPARE:
             if (get_cpu() == cpu)
                 __nv_restore_pat_entries(NULL);
             else
+          #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27)
+      smp_call_function(__nv_restore_pat_entries, hcpu, 1);
+      #else
                 smp_call_function(__nv_restore_pat_entries, hcpu, 1, 1);
+      #endif
             put_cpu();
             break;
     }
diff -Nru NVIDIA-Linux-x86-173.14.12-pkg0.orig/usr/src/nv/nv-linux.h NVIDIA-Linux-x86-173.14.12-pkg0/usr/src/nv/nv-linux.h
--- usr/src/nv/nv-linux.h   2008-07-18 03:42:51.000000000 +0200
+++ NVIDIA-Linux-x86-173.14.12-pkg0/usr/src/nv/nv-linux.h   2008-08-12 00:44:27.000000000 +0200
@@ -104,7 +104,10 @@
 #endif
 
 #include <linux/spinlock.h>
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27)
+#else
 #include <asm/semaphore.h>
+#endif
 #include <linux/completion.h>
 #include <linux/highmem.h>
 
@@ -665,13 +668,21 @@
 #if defined(preempt_disable)
     preempt_disable();
 #endif
+    #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27)
+    ret = smp_call_function(func, info, 1);
+    #else
     ret = smp_call_function(func, info, 1, 1);
+    #endif
     func(info);
 #if defined(preempt_enable)
     preempt_enable();
 #endif
 #else
+    #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27)
+    ret = on_each_cpu(func, info, 1);
+    #else
     ret = on_each_cpu(func, info, 1, 1);
+    #endif
 #endif
     return ret;
 }
diff -Nru NVIDIA-Linux-x86-173.14.12-pkg0.orig/usr/src/nv/os-interface.c NVIDIA-Linux-x86-173.14.12-pkg0/usr/src/nv/os-interface.c
--- usr/src/nv/os-interface.c   2008-07-18 03:42:50.000000000 +0200
+++ NVIDIA-Linux-x86-173.14.12-pkg0/usr/src/nv/os-interface.c   2008-08-12 00:48:07.000000000 +0200
@@ -48,7 +48,11 @@
 #endif
     local_bh_disable();
     atomic_set(&os_smp_barrier, 1);
+    #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27)
+    ret = smp_call_function(ipi_handler, NULL, 0);
+    #else
     ret = smp_call_function(ipi_handler, NULL, 1, 0);
+    #endif
 #endif
     return (ret == 0) ? RM_OK : RM_ERROR;
 }
@@ -704,7 +708,9 @@
     U032 sig
 )
 {
+    #if LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 26)
     return kill_proc(pid, sig, 1) ? RM_ERR_OPERATING_SYSTEM : RM_OK;
+    #endif
 }
 
 /*******************************************************************************/

Back to top
View user's profile Send private message
rmh3093
Advocate
Advocate


Joined: 06 Aug 2003
Posts: 2138
Location: Albany, NY

PostPosted: Fri Sep 12, 2008 4:39 am    Post subject: Reply with quote

gforum wrote:
i just updated t the latest zen-sources and noticed that the driver for iwl4965 is outta there!
so... what im i gonna do to get my wifi working when i compile this bugger?
is the new iwl next-gen or whatnot, a replacement for it?
so i'm guess i gotta delete the old microcode or whatnot and Download a new one, right?

anyone know?
:arrow:

edit: im talkign about kernel 2.6.27-rc6 btw.


its there under Intel Wireless WiFi Next Gen AGN
_________________
Do not meddle in the affairs of wizards, for they are subtle and quick to anger.
Back to top
View user's profile Send private message
gforum
Tux's lil' helper
Tux's lil' helper


Joined: 31 Mar 2008
Posts: 140

PostPosted: Fri Sep 12, 2008 6:18 pm    Post subject: Reply with quote

found it :lol: .
thanks a bunch.
Back to top
View user's profile Send private message
lucke
n00b
n00b


Joined: 11 May 2005
Posts: 35

PostPosted: Sat Sep 13, 2008 8:06 am    Post subject: Reply with quote

I'm getting lots of
Code:
ata1: EH pending after 5 tries, giving up
ata1: EH complete
in dmesg after upgrading from rc5-zen2 to rc6/rc6-zen1. Not a deal breaker, everything seems to work properly, just my dmesg gets polluted - nevertheless, letting you know (sata_nv, nforce4 iirc).
Back to top
View user's profile Send private message
kernelOfTruth
Watchman
Watchman


Joined: 20 Dec 2005
Posts: 6111
Location: Vienna, Austria; Germany; hello world :)

PostPosted: Sat Sep 13, 2008 11:19 am    Post subject: Reply with quote

Hi dodo,

what changes did you exactly do to reiser4?

Quote:
fs/reiser4/block_alloc.c | 66 +-
fs/reiser4/block_alloc.h | 24 +-
fs/reiser4/blocknrset.c | 26 +-
fs/reiser4/carry.c | 132 +-
fs/reiser4/carry.h | 48 +-
fs/reiser4/carry_ops.c | 176 +-
fs/reiser4/carry_ops.h | 12 +-
fs/reiser4/context.c | 10 +-
fs/reiser4/context.h | 6 +-
fs/reiser4/coord.c | 20 +-
fs/reiser4/coord.h | 20 +-
fs/reiser4/debug.c | 2 +-
fs/reiser4/dformat.h | 4 +-
fs/reiser4/entd.c | 2 +-
fs/reiser4/eottl.c | 4 +-
fs/reiser4/estimate.c | 6 +-
fs/reiser4/export_ops.c | 10 +-
fs/reiser4/flush.c | 146 +-
fs/reiser4/flush.h | 10 +-
fs/reiser4/flush_queue.c | 10 +-
fs/reiser4/fsdata.c | 4 +-
fs/reiser4/inode.c | 20 +-
fs/reiser4/inode.h | 14 +-
fs/reiser4/jnode.c | 138 +-
fs/reiser4/jnode.h | 108 +-
fs/reiser4/kassign.c | 30 +-
fs/reiser4/kassign.h | 38 +-
fs/reiser4/key.c | 8 +-
fs/reiser4/key.h | 42 +-
fs/reiser4/ktxnmgrd.h | 2 +-
fs/reiser4/lock.c | 78 +-
fs/reiser4/lock.h | 26 +-
fs/reiser4/page_cache.c | 4 +-
fs/reiser4/plugin/cluster.c | 2 +-
fs/reiser4/plugin/cluster.h | 4 +-
fs/reiser4/plugin/compress/compress.c | 20 +-
fs/reiser4/plugin/compress/compress.h | 2 +-
fs/reiser4/plugin/compress/compress_mode.c | 10 +-
fs/reiser4/plugin/crypto/cipher.h | 16 +-
fs/reiser4/plugin/crypto/digest.c | 4 +-
fs/reiser4/plugin/dir/dir.h | 2 +-
fs/reiser4/plugin/dir/hashed_dir.c | 6 +-
fs/reiser4/plugin/dir/seekable_dir.c | 2 +-
fs/reiser4/plugin/dir_plugin_common.c | 28 +-
fs/reiser4/plugin/disk_format/disk_format.h | 2 +-
fs/reiser4/plugin/disk_format/disk_format40.c | 31 +-
fs/reiser4/plugin/fibration.c | 2 +-
fs/reiser4/plugin/file/cryptcompress.c | 430 ++--
fs/reiser4/plugin/file/cryptcompress.h | 170 +-
fs/reiser4/plugin/file/file.c | 58 +-
fs/reiser4/plugin/file/file.h | 22 +-
fs/reiser4/plugin/file/file_conversion.c | 82 +-
fs/reiser4/plugin/file/tail_conversion.c | 10 +-
fs/reiser4/plugin/file_plugin_common.c | 36 +-
fs/reiser4/plugin/hash.c | 2 +-
fs/reiser4/plugin/inode_ops.c | 6 +-
fs/reiser4/plugin/inode_ops_rename.c | 12 +-
fs/reiser4/plugin/item/acl.h | 30 +-
fs/reiser4/plugin/item/blackbox.c | 14 +-
fs/reiser4/plugin/item/blackbox.h | 16 +-
fs/reiser4/plugin/item/cde.c | 180 +-
fs/reiser4/plugin/item/cde.h | 64 +-
fs/reiser4/plugin/item/ctail.c | 164 +-
fs/reiser4/plugin/item/ctail.h | 38 +-
fs/reiser4/plugin/item/extent.c | 12 +-
fs/reiser4/plugin/item/extent.h | 64 +-
fs/reiser4/plugin/item/extent_file_ops.c | 34 +-
fs/reiser4/plugin/item/extent_flush_ops.c | 32 +-
fs/reiser4/plugin/item/extent_item_ops.c | 56 +-
fs/reiser4/plugin/item/internal.c | 56 +-
fs/reiser4/plugin/item/internal.h | 40 +-
fs/reiser4/plugin/item/item.c | 64 +-
fs/reiser4/plugin/item/item.h | 100 +-
fs/reiser4/plugin/item/sde.c | 34 +-
fs/reiser4/plugin/item/sde.h | 30 +-
fs/reiser4/plugin/item/static_stat.c | 112 +-
fs/reiser4/plugin/item/static_stat.h | 6 +-
fs/reiser4/plugin/item/tail.c | 42 +-
fs/reiser4/plugin/item/tail.h | 22 +-
fs/reiser4/plugin/node/node.h | 64 +-
fs/reiser4/plugin/node/node40.c | 130 +-
fs/reiser4/plugin/node/node40.h | 56 +-
fs/reiser4/plugin/object.c | 4 +-
fs/reiser4/plugin/object.h | 6 +-
fs/reiser4/plugin/plugin.c | 6 +-
fs/reiser4/plugin/plugin.h | 98 +-
fs/reiser4/plugin/plugin_header.h | 2 +-
fs/reiser4/plugin/plugin_set.c | 16 +-
fs/reiser4/plugin/plugin_set.h | 12 +-
fs/reiser4/plugin/security/perm.h | 2 +-
fs/reiser4/plugin/space/bitmap.c | 54 +-
fs/reiser4/plugin/space/bitmap.h | 4 +-
fs/reiser4/plugin/space/space_allocator.h | 12 +-
fs/reiser4/readahead.c | 6 +-
fs/reiser4/readahead.h | 2 +-
fs/reiser4/safe_link.c | 18 +-
fs/reiser4/safe_link.h | 4 +-
fs/reiser4/seal.c | 14 +-
fs/reiser4/seal.h | 2 +-
fs/reiser4/search.c | 112 +-
fs/reiser4/status_flags.c | 4 +-
fs/reiser4/super.c | 12 +-
fs/reiser4/super.h | 8 +-
fs/reiser4/super_ops.c | 24 -
fs/reiser4/tap.c | 6 +-
fs/reiser4/tap.h | 4 +-
fs/reiser4/tree.c | 255 +-
fs/reiser4/tree.h | 156 +-
fs/reiser4/tree_mod.c | 30 +-
fs/reiser4/tree_mod.h | 10 +-
fs/reiser4/tree_walk.c | 71 +-
fs/reiser4/tree_walk.h | 56 +-
fs/reiser4/txnmgr.c | 618 ++---
fs/reiser4/txnmgr.h | 226 +-
fs/reiser4/type_safe_hash.h | 38 +-
fs/reiser4/vfs_ops.c | 10 +-
fs/reiser4/vfs_ops.h | 2 +-
fs/reiser4/wander.c | 96 +-
fs/reiser4/wander.h | 9 +-
fs/reiser4/writeout.h | 5 +-
fs/reiser4/znode.c | 135 +-
fs/reiser4/znode.h | 211 +-


there don't seem to be much changes ...

does "Hope it still works.." break it ?

many thanks in advance
_________________
https://github.com/kernelOfTruth/ZFS-for-SystemRescueCD/tree/ZFS-for-SysRescCD-4.9.0
https://github.com/kernelOfTruth/pulseaudio-equalizer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Back to top
View user's profile Send private message
Veldrin
Veteran
Veteran


Joined: 27 Jul 2004
Posts: 1945
Location: Zurich, Switzerland

PostPosted: Sat Sep 13, 2008 12:20 pm    Post subject: Reply with quote

Did I miss something or is zen-overlay terribly broken?
at least zen-sources are masked due to missing keywords, and zenrt-sources install a vanilla kernel...

TIA
V.
Back to top
View user's profile Send private message
rmh3093
Advocate
Advocate


Joined: 06 Aug 2003
Posts: 2138
Location: Albany, NY

PostPosted: Sat Sep 13, 2008 1:53 pm    Post subject: Reply with quote

kernelOfTruth wrote:
Hi dodo,

what changes did you exactly do to reiser4?

Quote:
fs/reiser4/block_alloc.c | 66 +-
fs/reiser4/block_alloc.h | 24 +-
fs/reiser4/blocknrset.c | 26 +-
fs/reiser4/carry.c | 132 +-
fs/reiser4/carry.h | 48 +-
fs/reiser4/carry_ops.c | 176 +-
fs/reiser4/carry_ops.h | 12 +-
fs/reiser4/context.c | 10 +-
fs/reiser4/context.h | 6 +-
fs/reiser4/coord.c | 20 +-
fs/reiser4/coord.h | 20 +-
fs/reiser4/debug.c | 2 +-
fs/reiser4/dformat.h | 4 +-
fs/reiser4/entd.c | 2 +-
fs/reiser4/eottl.c | 4 +-
fs/reiser4/estimate.c | 6 +-
fs/reiser4/export_ops.c | 10 +-
fs/reiser4/flush.c | 146 +-
fs/reiser4/flush.h | 10 +-
fs/reiser4/flush_queue.c | 10 +-
fs/reiser4/fsdata.c | 4 +-
fs/reiser4/inode.c | 20 +-
fs/reiser4/inode.h | 14 +-
fs/reiser4/jnode.c | 138 +-
fs/reiser4/jnode.h | 108 +-
fs/reiser4/kassign.c | 30 +-
fs/reiser4/kassign.h | 38 +-
fs/reiser4/key.c | 8 +-
fs/reiser4/key.h | 42 +-
fs/reiser4/ktxnmgrd.h | 2 +-
fs/reiser4/lock.c | 78 +-
fs/reiser4/lock.h | 26 +-
fs/reiser4/page_cache.c | 4 +-
fs/reiser4/plugin/cluster.c | 2 +-
fs/reiser4/plugin/cluster.h | 4 +-
fs/reiser4/plugin/compress/compress.c | 20 +-
fs/reiser4/plugin/compress/compress.h | 2 +-
fs/reiser4/plugin/compress/compress_mode.c | 10 +-
fs/reiser4/plugin/crypto/cipher.h | 16 +-
fs/reiser4/plugin/crypto/digest.c | 4 +-
fs/reiser4/plugin/dir/dir.h | 2 +-
fs/reiser4/plugin/dir/hashed_dir.c | 6 +-
fs/reiser4/plugin/dir/seekable_dir.c | 2 +-
fs/reiser4/plugin/dir_plugin_common.c | 28 +-
fs/reiser4/plugin/disk_format/disk_format.h | 2 +-
fs/reiser4/plugin/disk_format/disk_format40.c | 31 +-
fs/reiser4/plugin/fibration.c | 2 +-
fs/reiser4/plugin/file/cryptcompress.c | 430 ++--
fs/reiser4/plugin/file/cryptcompress.h | 170 +-
fs/reiser4/plugin/file/file.c | 58 +-
fs/reiser4/plugin/file/file.h | 22 +-
fs/reiser4/plugin/file/file_conversion.c | 82 +-
fs/reiser4/plugin/file/tail_conversion.c | 10 +-
fs/reiser4/plugin/file_plugin_common.c | 36 +-
fs/reiser4/plugin/hash.c | 2 +-
fs/reiser4/plugin/inode_ops.c | 6 +-
fs/reiser4/plugin/inode_ops_rename.c | 12 +-
fs/reiser4/plugin/item/acl.h | 30 +-
fs/reiser4/plugin/item/blackbox.c | 14 +-
fs/reiser4/plugin/item/blackbox.h | 16 +-
fs/reiser4/plugin/item/cde.c | 180 +-
fs/reiser4/plugin/item/cde.h | 64 +-
fs/reiser4/plugin/item/ctail.c | 164 +-
fs/reiser4/plugin/item/ctail.h | 38 +-
fs/reiser4/plugin/item/extent.c | 12 +-
fs/reiser4/plugin/item/extent.h | 64 +-
fs/reiser4/plugin/item/extent_file_ops.c | 34 +-
fs/reiser4/plugin/item/extent_flush_ops.c | 32 +-
fs/reiser4/plugin/item/extent_item_ops.c | 56 +-
fs/reiser4/plugin/item/internal.c | 56 +-
fs/reiser4/plugin/item/internal.h | 40 +-
fs/reiser4/plugin/item/item.c | 64 +-
fs/reiser4/plugin/item/item.h | 100 +-
fs/reiser4/plugin/item/sde.c | 34 +-
fs/reiser4/plugin/item/sde.h | 30 +-
fs/reiser4/plugin/item/static_stat.c | 112 +-
fs/reiser4/plugin/item/static_stat.h | 6 +-
fs/reiser4/plugin/item/tail.c | 42 +-
fs/reiser4/plugin/item/tail.h | 22 +-
fs/reiser4/plugin/node/node.h | 64 +-
fs/reiser4/plugin/node/node40.c | 130 +-
fs/reiser4/plugin/node/node40.h | 56 +-
fs/reiser4/plugin/object.c | 4 +-
fs/reiser4/plugin/object.h | 6 +-
fs/reiser4/plugin/plugin.c | 6 +-
fs/reiser4/plugin/plugin.h | 98 +-
fs/reiser4/plugin/plugin_header.h | 2 +-
fs/reiser4/plugin/plugin_set.c | 16 +-
fs/reiser4/plugin/plugin_set.h | 12 +-
fs/reiser4/plugin/security/perm.h | 2 +-
fs/reiser4/plugin/space/bitmap.c | 54 +-
fs/reiser4/plugin/space/bitmap.h | 4 +-
fs/reiser4/plugin/space/space_allocator.h | 12 +-
fs/reiser4/readahead.c | 6 +-
fs/reiser4/readahead.h | 2 +-
fs/reiser4/safe_link.c | 18 +-
fs/reiser4/safe_link.h | 4 +-
fs/reiser4/seal.c | 14 +-
fs/reiser4/seal.h | 2 +-
fs/reiser4/search.c | 112 +-
fs/reiser4/status_flags.c | 4 +-
fs/reiser4/super.c | 12 +-
fs/reiser4/super.h | 8 +-
fs/reiser4/super_ops.c | 24 -
fs/reiser4/tap.c | 6 +-
fs/reiser4/tap.h | 4 +-
fs/reiser4/tree.c | 255 +-
fs/reiser4/tree.h | 156 +-
fs/reiser4/tree_mod.c | 30 +-
fs/reiser4/tree_mod.h | 10 +-
fs/reiser4/tree_walk.c | 71 +-
fs/reiser4/tree_walk.h | 56 +-
fs/reiser4/txnmgr.c | 618 ++---
fs/reiser4/txnmgr.h | 226 +-
fs/reiser4/type_safe_hash.h | 38 +-
fs/reiser4/vfs_ops.c | 10 +-
fs/reiser4/vfs_ops.h | 2 +-
fs/reiser4/wander.c | 96 +-
fs/reiser4/wander.h | 9 +-
fs/reiser4/writeout.h | 5 +-
fs/reiser4/znode.c | 135 +-
fs/reiser4/znode.h | 211 +-


there don't seem to be much changes ...

does "Hope it still works.." break it ?

many thanks in advance


there shouldnt be much different, i just applied the series from -mm like I do ever time new -mm comes out, the new -mm actually contains bug patches i submitted so there really should be not much difference
_________________
Do not meddle in the affairs of wizards, for they are subtle and quick to anger.
Back to top
View user's profile Send private message
kernelOfTruth
Watchman
Watchman


Joined: 20 Dec 2005
Posts: 6111
Location: Vienna, Austria; Germany; hello world :)

PostPosted: Sat Sep 13, 2008 2:01 pm    Post subject: Reply with quote

rmh3093 wrote:

there shouldnt be much different, i just applied the series from -mm like I do ever time new -mm comes out, the new -mm actually contains bug patches i submitted so there really should be not much difference


thanks for the clarification, rmh3093,

then I guess, as long as it works - I don't have to re-compile the kernel :)
_________________
https://github.com/kernelOfTruth/ZFS-for-SystemRescueCD/tree/ZFS-for-SysRescCD-4.9.0
https://github.com/kernelOfTruth/pulseaudio-equalizer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Back to top
View user's profile Send private message
seqizz
Tux's lil' helper
Tux's lil' helper


Joined: 14 Jan 2008
Posts: 103

PostPosted: Sat Sep 13, 2008 7:53 pm    Post subject: :\ Reply with quote

just upgraded the git, now complied.
2.6.27-rc5-zen2 the other old kernel, it has reiser4..
but 2.6.27-rc6 now says "unknown fs"..
i've searched in menuconfig "REISER4", nothing..
also can't find in filesystems menu, others there but resier4 is not..

and i'm not good reader of this topics but what about the zen tunables, exp. things like march=native bla bla?
should i look deep? :) can't find them..
Back to top
View user's profile Send private message
sezaru
n00b
n00b


Joined: 10 Aug 2006
Posts: 47

PostPosted: Sun Sep 14, 2008 2:42 am    Post subject: Reply with quote

Just want to say that the patch for 96.43.07 i have submit some posts up runs great, i can now use my geforce 2 with kernel 2.6.27 with no problem :D
Back to top
View user's profile Send private message
rmh3093
Advocate
Advocate


Joined: 06 Aug 2003
Posts: 2138
Location: Albany, NY

PostPosted: Sun Sep 14, 2008 4:28 am    Post subject: Re: :\ Reply with quote

seqizz wrote:
just upgraded the git, now complied.
2.6.27-rc5-zen2 the other old kernel, it has reiser4..
but 2.6.27-rc6 now says "unknown fs"..
i've searched in menuconfig "REISER4", nothing..
also can't find in filesystems menu, others there but resier4 is not..

and i'm not good reader of this topics but what about the zen tunables, exp. things like march=native bla bla?
should i look deep? :) can't find them..


reiser4 should be there
_________________
Do not meddle in the affairs of wizards, for they are subtle and quick to anger.
Back to top
View user's profile Send private message
MageSlayer
Apprentice
Apprentice


Joined: 26 Jul 2007
Posts: 252
Location: Ukraine

PostPosted: Sun Sep 14, 2008 9:35 am    Post subject: Reply with quote

sezaru

The same patch for 96+ as for 173.14.12?
Back to top
View user's profile Send private message
cheater1034
Veteran
Veteran


Joined: 09 Sep 2004
Posts: 1558

PostPosted: Sun Sep 14, 2008 4:00 pm    Post subject: Re: :\ Reply with quote

seqizz wrote:
just upgraded the git, now complied.
2.6.27-rc5-zen2 the other old kernel, it has reiser4..
but 2.6.27-rc6 now says "unknown fs"..
i've searched in menuconfig "REISER4", nothing..
also can't find in filesystems menu, others there but resier4 is not..

and i'm not good reader of this topics but what about the zen tunables, exp. things like march=native bla bla?
should i look deep? :) can't find them..


Your git tree is messed up, git pull; git branch -M master master-old; git co -b master origin/master; git branch -D master-old

although what it sounds like is you're not on master at all, git branch to find out.
_________________
IRC!: #zen-sources on irc.rizon.net
zen-kernel.org
--
Lost in android development land.
Back to top
View user's profile Send private message
sezaru
n00b
n00b


Joined: 10 Aug 2006
Posts: 47

PostPosted: Sun Sep 14, 2008 8:20 pm    Post subject: Reply with quote

MageSlayer wrote:
sezaru

The same patch for 96+ as for 173.14.12?


This patch was made for 173.14.12 drivers to work with the .27 kernel, i tried this patch with the 96+ drivers and simply works, so you can use the same patch for the 2 drivers without a problem :D
Back to top
View user's profile Send private message
gimpel
Advocate
Advocate


Joined: 15 Oct 2004
Posts: 2720
Location: Munich, Bavaria

PostPosted: Mon Sep 15, 2008 4:02 pm    Post subject: Re: :\ Reply with quote

cheater1034 wrote:
seqizz wrote:
just upgraded the git, now complied.
2.6.27-rc5-zen2 the other old kernel, it has reiser4..
but 2.6.27-rc6 now says "unknown fs"..
i've searched in menuconfig "REISER4", nothing..
also can't find in filesystems menu, others there but resier4 is not..

and i'm not good reader of this topics but what about the zen tunables, exp. things like march=native bla bla?
should i look deep? :) can't find them..


Your git tree is messed up, git pull; git branch -M master master-old; git co -b master origin/master; git branch -D master-old

although what it sounds like is you're not on master at all, git branch to find out.

Sure?

Code:
┌--tom@sirius---[Mo Sep 15 17:57:19]---[/usr/src/linux]
└» cat ../fix-git.sh
#!/bin/bash
git reset --hard
git branch -M master master-old
git checkout -b master origin/master
git branch -D master-old
git checkout -f
┌--tom@sirius---[Mo Sep 15 17:57:23]---[/usr/src/linux]
└» ../fix-git.sh
HEAD is now at bc45eb8 Merge git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6
Branch master set up to track remote branch refs/remotes/origin/master.
Switched to a new branch "master"
Deleted branch master-old.
┌--tom@sirius---[Mo Sep 15 17:57:27]---[/usr/src/linux]
└» zgrep -i reiser4 /proc/config.gz
CONFIG_REISER4_FS=y
┌--tom@sirius---[Mo Sep 15 17:58:37]---[/usr/src/linux]
└» zcat /proc/config.gz > .config && make oldconfig
...
┌--tom@sirius---[Mo Sep 15 17:58:56]---[/usr/src/linux]
└» grep -i reiser4 .config
┌--tom@sirius---[Mo Sep 15 17:59:42]---[/usr/src/linux]
└»

nothing...

also:
Code:
└» grep "EXTRAVERSION =" Makefile
EXTRAVERSION = -rc6


Let's see if a fresh clone helps....
EDIT: Yes. That helped.
_________________
http://proaudio.tuxfamily.org/wiki - pro-audio software overlay
Back to top
View user's profile Send private message
rmh3093
Advocate
Advocate


Joined: 06 Aug 2003
Posts: 2138
Location: Albany, NY

PostPosted: Mon Sep 15, 2008 4:30 pm    Post subject: Reply with quote

STOP using that git-fix.sh scripts people, learn the git commands so that you know whats going on, then you wont have these issues, reclone should not be necessary, ever
_________________
Do not meddle in the affairs of wizards, for they are subtle and quick to anger.
Back to top
View user's profile Send private message
gimpel
Advocate
Advocate


Joined: 15 Oct 2004
Posts: 2720
Location: Munich, Bavaria

PostPosted: Mon Sep 15, 2008 4:50 pm    Post subject: Reply with quote

rmh3093 wrote:
STOP using that git-fix.sh scripts people, learn the git commands so that you know whats going on, then you wont have these issues, reclone should not be necessary, ever

cheater's command doesn't work at all, and even if I used checkout instead of co, it still didn't fix the issue.

You should also update the git issues FAQ on zen-sources.org accordingly ;)
_________________
http://proaudio.tuxfamily.org/wiki - pro-audio software overlay
Back to top
View user's profile Send private message
kernelOfTruth
Watchman
Watchman


Joined: 20 Dec 2005
Posts: 6111
Location: Vienna, Austria; Germany; hello world :)

PostPosted: Mon Sep 15, 2008 5:22 pm    Post subject: Reply with quote

gimpel wrote:
rmh3093 wrote:
STOP using that git-fix.sh scripts people, learn the git commands so that you know whats going on, then you wont have these issues, reclone should not be necessary, ever

cheater's command doesn't work at all, and even if I used checkout instead of co, it still didn't fix the issue.

You should also update the git issues FAQ on zen-sources.org accordingly ;)


Code:
git reset --hard; git branch -M master master-old; git checkout -b master origin/master; git branch -D master-old; git checkout -f


always worked for me,

'nuff said :P
_________________
https://github.com/kernelOfTruth/ZFS-for-SystemRescueCD/tree/ZFS-for-SysRescCD-4.9.0
https://github.com/kernelOfTruth/pulseaudio-equalizer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Back to top
View user's profile Send private message
gimpel
Advocate
Advocate


Joined: 15 Oct 2004
Posts: 2720
Location: Munich, Bavaria

PostPosted: Mon Sep 15, 2008 5:36 pm    Post subject: Reply with quote

kernelOfTruth wrote:
Code:
git reset --hard; git branch -M master master-old; git checkout -b master origin/master; git branch -D master-old; git checkout -f


always worked for me,

'nuff said :P

I totally fail to see the difference between the "script" and above command sequence, beside latter one being a oneliner.
And it works fine for getting rid of merge conflicts, but this time the git repo was screwed in a different way.

I was on master, as always... last pull ~2 weeks ago *shrug*
_________________
http://proaudio.tuxfamily.org/wiki - pro-audio software overlay
Back to top
View user's profile Send private message
kernelOfTruth
Watchman
Watchman


Joined: 20 Dec 2005
Posts: 6111
Location: Vienna, Austria; Germany; hello world :)

PostPosted: Mon Sep 15, 2008 5:51 pm    Post subject: Reply with quote

gimpel wrote:
kernelOfTruth wrote:
Code:
git reset --hard; git branch -M master master-old; git checkout -b master origin/master; git branch -D master-old; git checkout -f


always worked for me,

'nuff said :P

I totally fail to see the difference between the "script" and above command sequence, beside latter one being a oneliner.
And it works fine for getting rid of merge conflicts, but this time the git repo was screwed in a different way.

I was on master, as always... last pull ~2 weeks ago *shrug*


so I don't understand what's the point about complaining to clone the repo from scratch if the address was changed

afaik there's no other way (I did the same with referencing linus' repo and thus saving most of the bandwidth)

@rmh3093:

is there a way to change the repo-address in git and therefore omit a complete re-clone ?

thanks
_________________
https://github.com/kernelOfTruth/ZFS-for-SystemRescueCD/tree/ZFS-for-SysRescCD-4.9.0
https://github.com/kernelOfTruth/pulseaudio-equalizer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Back to top
View user's profile Send private message
gimpel
Advocate
Advocate


Joined: 15 Oct 2004
Posts: 2720
Location: Munich, Bavaria

PostPosted: Mon Sep 15, 2008 6:14 pm    Post subject: Reply with quote

Aaah.. the address changed. That's why. Having been away from the box for while, I missed that point.
_________________
http://proaudio.tuxfamily.org/wiki - pro-audio software overlay
Back to top
View user's profile Send private message
cheater1034
Veteran
Veteran


Joined: 09 Sep 2004
Posts: 1558

PostPosted: Mon Sep 15, 2008 7:35 pm    Post subject: Reply with quote

gimpel wrote:
rmh3093 wrote:
STOP using that git-fix.sh scripts people, learn the git commands so that you know whats going on, then you wont have these issues, reclone should not be necessary, ever

cheater's command doesn't work at all, and even if I used checkout instead of co, it still didn't fix the issue.

You should also update the git issues FAQ on zen-sources.org accordingly ;)


gimpel wrote:
kernelOfTruth wrote:
Code:
git reset --hard; git branch -M master master-old; git checkout -b master origin/master; git branch -D master-old; git checkout -f


always worked for me,

'nuff said :P

I totally fail to see the difference between the "script" and above command sequence, beside latter one being a oneliner.
And it works fine for getting rid of merge conflicts, but this time the git repo was screwed in a different way.

I was on master, as always... last pull ~2 weeks ago *shrug*


Well, the git urls have changed.

I of course assumed you were intelligent enough to check gitweb for the new urls, or ask us to see what was going on. You could have changed the git urls in .git/config and avoided a re-clone. The constant re-cloning should stop and is not a valid solution.

And no co is not a valid command, i have it aliased in my .gitconfig.
_________________
IRC!: #zen-sources on irc.rizon.net
zen-kernel.org
--
Lost in android development land.
Back to top
View user's profile Send private message
Display posts from previous:   
This topic is locked: you cannot edit posts or make replies.    Gentoo Forums Forum Index Unsupported Software All times are GMT
Goto page Previous  1, 2, 3 ... 6, 7, 8 ... 21, 22, 23  Next
Page 7 of 23

 
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