I'm downloading the "deb" now..
Tim> Where might I find the Debian 2.2.1 kernel source?The Debian kernel-source package is at:
ftp://ftp.debian.org/debian/dists/potato/main/binary-i386/devel/kernel-source-2.2.1_2.2.1-1.deb
(That is the "deb" one., right?) and thanks again. I'll give this a shot tomorrow.Or the raw sources:
ftp://ftp.kernel.org/pub/linux/kernel/v2.2/linux-2.2.tar.gz>> Also, instead of doing all those steps listed below manually,
>> try using the 'make-kpkg' Debian utility. ("man make-kpkg" for
>> details). If you do not have it, it is in the 'kernel-package'
>> Debian package.
>>
>> To build a kernel image, go to a kernel top-level directory,
>> and type something like:
>>
>> # make xconfigTim> I assume this would be something like /usr/src/linux-2.2.1 ?
If you have 'kernel-source' package, you can:
# cd <download-directory>
# dpkg --install kernel-source-2.2.1_2.2.1-1.deb
# rm kernel-source-2.2.1_2.2.1-1.deb
# cd /usr/src
# tar zxvf kernel-source-2.2.1.tar.gz
# cd kernel-source-2.2.1
# make xconfig<answer questions>
# make-kpkg kernel_image
# cd ..
# dpkg --install kernel-image-2.2.1_1.00_i386.deb-tor