On Sun, Jun 10, 2001 at 05:34:10PM -0400, Kevin Lawton wrote:
> Aaron Lehmann wrote:
>
> > Hrm, does plex86 require devfs now? I think that would be a bad thing.
> > I don't know many people who use it, and I hear that it's going away
> > in 2.5 in favor of a better solution.
>
> It only compiles in support #ifdef CONFIG_DEVFS_FS. This
> problem likely relates to the version miss-match problem.
> Solve that, and this one will go away.
Hrm, well, no wonder.
#include <linux/config.h>
I had been telling it my linux source was in /home/aaronl/src/linux.
So that would have expanded to /home/aaronl/src/linux/linux, which is
nonexistant. It probably used whatever's in /usr/include/linux
instead.
Passing --with-linux-source=/home/aaronl/src worked. IMHO this is bad
design, because it asks for the dir _above_ the linux source tree and
expects the toplevel dir of the linux tree to be named "linux". I
think this argument should be passed the full path to the linux source
tree instead of the dir above that. The configure --help text is
ambiguous at best here/.