[cross posting cause I'm not sure who should get this email] I am attempting to make ext3 work on the parisc kernel tree. So far I have successfully patched and have made the kernel compile w/ only two line changes to the source. I got ext3 from the cvs, and the parisc 2.4.9-pa17 kernel and I've patched the parisc kernel w/ the add-to-kernel.sh script. after a bit of fighting I got the kernel to compile. I had to add and remove the following lines: line added include/linux/fs.h:1348 extern loff_t no_llseek(struct file *file, loff_t offset, int origin); Needed for the no_llseek symbol. line removed kernel/ksyms.c:180 EXPORT_SYMBOL(fsync_no_super); Needed removal because fsync_no_super was already being exported by fs/buffer.c:354 Now when I boot. /proc is not mounted at boot, and when I mount it all the files in /proc appear to be directories. Also networking is gone. ifconfig just returns w/ nothing and ifconfig -a shows no devices. But on the bright side when I cat /proc/filesystems/ (everything in /proc is a directory even though it's not) I get ext3 to come up... So it kinda works. Gonna get the newest e2fsprogs and see if I can make a journal and have this broken kernel mount / as ext3. --timball -- GPG key available on pgpkeys.mit.edu pub 1024R/CFF85605 1999-06-10 Timothy L. Ball <timball@sheergenius.com> Key fingerprint = 8A 8E 64 D6 21 C0 90 29 9F D6 1E DC F8 18 CB CD
Hi, On Sat, Sep 08, 2001 at 05:49:14PM -0400, Timothy Ball wrote:> I got ext3 from the cvs, and the parisc 2.4.9-pa17 kernel and I've > patched the parisc kernel w/ the add-to-kernel.sh script. after a bit of > fighting I got the kernel to compile. ... > > Now when I boot. /proc is not mounted at boot, and when I mount it all > the files in /proc appear to be directories.Odd --- did you do a make clean before rebuilding? --Stephen