On Fri, 20 Jun 2003 22:28, you wrote:
> Hi all!
>
> I'm using Debian (installed via Knoppix 3.2) for a while now and I
> really like it. Now I've reached the point where I'd like to compile a
> custom kernel for my Nvidia graphics card, but I can't find the source
> for my kernel 2.4.20-xfs. I found some posts on the knoppix.net page
> telling me that I could download the 2.4.20 source and patch the kernel
> myself, but I'd rather like to get an allready patched version to keep
> things as simple as possible. Any ideas/ hints?
>
> Cheers,
> Conrad.

In your shell do this:-

cd /usr/tmp

wget ftp://debian.co.nz/kernel/v2.4/linux-2.4.20.tar.bz2
wget ftp://oss.sgi.com/projects/xfs/patches/2.4.20xfs-2.4.20-all-i386.bz2

cd /usr/src

tar xvjf /usr/tmp/linux-2.4.20.tar.bz2
cd linux-2.4.20

# Test it out with a dry run
cat /usr/tmp/2.4.20xfs-2.4.20-all-i386.bz2 | bunzip2 | patch -p1 --dry-run

# Do it for real
cat /usr/tmp/2.4.20xfs-2.4.20-all-i386.bz2 | bunzip2 | patch -p1

make menuconfig

I assume you know what to do after this ...

Note that linux-2.4.21 has just been announced. I expect that the xfs patches 
will be available from SGI fairly soon.

you should get and install the xfs tools from SGI too.

--
C. S.

Reply via email to