> befu wrote: > >> Hi again, >> >> I have a problem with the compilation of the actual benh10 kernel on my >> Wallstreet PowerBook G3. >> >> I have the debian woody version running fine with the benh9 kernel. >> When I use the gcc compiler v. 2.95.4-14 (-11woody1) from the stable tree, I >> make the following observations: >> >> 1. I only can use `make config' . When I try to use `make menuconfig' , an >> error message comes up and tells that I have to use `Ncurses' to run `make >> menuconfig'. ncurses is installed, but Ncurses (capital N!) I can't find on >> the stable tree. But nontheless I can make the configuration file and start >> `make vmlinux'. >> >> >> > > You need to install ncurses development packages, since you're compiling > against it. > > apt-get install libncurses5-dev should do the trick
Hi Ole and others, Exactly! I just needed to download the libncurses5-dev package and the compiling with make menuconfig worked. Great! But how to know this before you compile as a newbe? I only had the little problem, that the key mapping was mixed up and I couldn't login as root (which showed as typed like: s´´w). But I found a former post on this wonderful forum that pointed to the CONFIG_MAC_ADBKEYCODES=y problem in the .config file. I actually unchecked the support of ADB raw keycodes in the "Mac Device Drivers" section during the `make menuconfig' procedure. That helped! I also had to insert a `make dep' step before the `make vmlinux' compilation. This is recommended at the end of the `make menuconfig' step. Thanks a lot to all