can't compile 1.3.11

Jeff Garzik (jgarzik@cc.gatech.edu)
Sun, 23 Jul 1995 20:12:18 -0400 (EDT)


I decided to upgrade from 1.2.11 to 1.3.11 today, so I downloaded the
linux-1.3.11.tar.gz file from a mirror of helsinki.

I did the usual new kernel install stuff:

cd /usr/src
rm -rf linux
tar xvfz linux-1.3.11.tar.gz
cd /usr/include
rm -rf linux
rm -rf asm
ln -s /usr/src/linux/include/linux linux
ln -s /usr/src/linux/include/asm-i386 asm
cd /usr/src/linux
make mrproper
make config

Everything went smoothly.

I do a

make dep

...and when make reaches drivers/net, I get a bunch of errors saying
"asm/bitops.h: no such file or directory" from linux/interrupt.h.
Clearly it exists, though, in both /usr/include/asm and
/usr/src/linux/include/asm-i386!

What's up?

Jeff