View previous topic :: View next topic |
Author |
Message |
casper Tux's lil' helper


Joined: 02 Nov 2003 Posts: 110 Location: Philadelphia, USA
|
Posted: Wed Jan 12, 2005 6:05 am Post subject: hardened-dev-sources 2.6.10 + reiser4 [Fixed] |
|
|
I saw that 2.6.10 has been released under hardened-dev so I emerged, hoping to get reiser4 patched. Suprisingly, reiser4 patched fine (unlike bootsplash) and after doing the menuconfig, at the VERY END of make I get:
Quote: |
root@camelot linux # make
CHK include/linux/version.h
make[1]: `arch/i386/kernel/asm-offsets.s' is up to date.
CHK include/linux/compile.h
CHK usr/initramfs_list
GEN .version
CHK include/linux/compile.h
UPD include/linux/compile.h
CC init/version.o
LD init/built-in.o
LD .tmp_vmlinux1
mm/built-in.o(.text+0x137fa): In function `do_brk_locked':
: undefined reference to `do_brk'
mm/built-in.o(__ksymtab+0x3c8): undefined reference to `do_brk'
fs/built-in.o(.text+0x2d27a): In function `set_brk':
: undefined reference to `do_brk'
make: *** [.tmp_vmlinux1] Error 1
root@camelot linux #
|
Now, I realize that I patched an already heavily-patched kernel, but I'm still hoping that this will eventually work. I'm not sure if it's a patch problem or a kernel problem (I haven't compiled the kernel w/o reiser4), but has anybody else had this problem? Or better yet, anybody have any idea how to fix it...?  _________________ fortune men-women:
"To our sweethearts and wives. May they never meet.
-- 19th century toast"
Last edited by casper on Wed Jan 12, 2005 3:42 pm; edited 2 times in total |
|
Back to top |
|
 |
casper Tux's lil' helper


Joined: 02 Nov 2003 Posts: 110 Location: Philadelphia, USA
|
Posted: Wed Jan 12, 2005 7:11 am Post subject: |
|
|
Ok, after looking at the kernel source and errors (thanks Linsam) we made the following changes (the kernel COMPILES, i'm not sure if it'll actually NOT crash )
in /usr/src/linux/mm/mmap.c:
line 2262: ret =do_brk(addr, len);
should be ret = __do_brk(addr, len);
line 2268: EXPORT_SYMBOL(do_brk);
should be in between an ifdef statement
#ifdef CONFIG_PAX_PAGEEXEC
EXPORT_SYMBOL(do_brk);
#endif
NOTE: this will prolly break thinks on a non-x86 platform since a previous def was made for them !
in /usr/src/linux/fs/binfmt_elf.c:
line 101: retval = do_brk(start, end - start);
should prolly be retval = do_brk_locked(start, end - start);
Like I previously said, I have no kernel experience so this shall all be tested as soon as I reboot under the new kernel. I STRONGLY suggest some developer takes a look at this and writes a patch.
Since this is not a reiser4-patch problem (most likely) it's prolly a general 2.6.10-hardened-dev-sources issue.
-Cos _________________ fortune men-women:
"To our sweethearts and wives. May they never meet.
-- 19th century toast" |
|
Back to top |
|
 |
casper Tux's lil' helper


Joined: 02 Nov 2003 Posts: 110 Location: Philadelphia, USA
|
Posted: Wed Jan 12, 2005 7:47 am Post subject: |
|
|
ok, that doesn't fix the problem but hangs the system at INIT or "freeing unused kernel memory".
Suggestions? _________________ fortune men-women:
"To our sweethearts and wives. May they never meet.
-- 19th century toast" |
|
Back to top |
|
 |
casper Tux's lil' helper


Joined: 02 Nov 2003 Posts: 110 Location: Philadelphia, USA
|
Posted: Wed Jan 12, 2005 3:41 pm Post subject: |
|
|
Problem was fixed with 2.6.10-r1 _________________ fortune men-women:
"To our sweethearts and wives. May they never meet.
-- 19th century toast" |
|
Back to top |
|
 |
|
|
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
|
|