1. What is a "newly-unpacked kernel source tree (see below)?"
2. We have just installed Linux. Does that mean we have a source tree
installed or do we have to use the source code from the CD?
>/usr/src/linux/include/asm/ is a symbolic link to an architecture-specific
>asm directory--if you have a freshly unpacked kernel source tree, you must
>make symlinks. You'll also find that you may need to do `make config' in a
>newly-unpacked kernel source tree, to create linux/autoconf.h.
>Then, use rm to remove any garbage, and ln to create the links:
rm -rf /usr/include/linux /usr/include/asm
ln -sf /usr/src/linux/include/linux /usr/include/linux
ln -sf /usr/src/linux/include/asm /usr/include/asm
3. What are we linking to where?
4. How can we then do a "make config?"
Thank you.