Re: zimage

2000-05-22 Thread David Z Maze
cls--colo spgs <[EMAIL PROTECTED]> writes: cls> i'm working on my first kernel recompile. i'm at the cls> point where i need to move the recompiled kernel to the cls> to boot location. unfortunately, i cannot find the cls> recompiled kernel. Since nobody seems to have suggested it yet, why don't

Re: zimage

2000-05-22 Thread Ray Olszewski
You're looking in the right place (/usr/src/linux/arch/i386/boot) for the zImage file. If it's not there, your description is missing some detail that, if we know it, would explain what happened. A couple of possibilities: 1. You never mention actually making the symlink "ln -s /usr/src/linux-2.2.

Re: zimage

2000-05-22 Thread Kenward Vaughan
If you followed your list of actions exactly, then the problem should lie in having NOT made a link from the new kernel directory to the linux directory. You should run /usr/src# ln -s kernel-source-2.2.14 linux after being certain that /usr/src/linux has been removed as a link to your prior ker

Re: zimage

2000-05-22 Thread Ron Rademaker
I never made a zImage, I guess you should make a bzImage (it's smaller), but if you want to find it just go to /usr/src/linux and type find . | grep Image By the way a bzImage always resides in $SRCDIR/arch/i386/boot/ Ron Rademaker PS. Don't forget to make and install your modules! (make modules

Re: zimage

2000-05-22 Thread ktb
I'm sure someone here can tell you exactly where it is. I would guess somewhere in the directory where you unpacked the source code. A couple of ways you could find it is use the 'find' command or 'updatedb' and then use 'locate zImage' hth, kent cls--colo spgs wrote: > > debs, > > i'm workin