On Thursday 16 November 2006 11:16, Clemens Eisserer wrote: > Which compiler/scratchbox package should be used to compile the kernel? > > I already played a bit with IT2005 and compiled the kernel which was > used to compile the whole system (I guess it was gcc-3.3) but the > system didn't boot and someone told me the kernel was compiled with a > different compiler than the rest of the system. > > How do you compile the kernel for IT2006? > I used cs2005q3.2-glibc-arm. A small problem I have run into is that "make menuconfig" will not work, because libncurses is not found by a certain script (even though it is there). My workaround was to just replace the detection of the proper library with a fixed value: --- scripts/kconfig/lxdialog/check-lxdialog.sh~ 2006-09-19 15:07:53.000000000 +0200 +++ scripts/kconfig/lxdialog/check-lxdialog.sh 2006-11-15 11:59:23.000000000 +0100 @@ -4,6 +4,10 @@ # What library to link ldflags() { + echo '-lncurses' + exit + + $cc -print-file-name=libncursesw.so | grep -q / if [ $? -eq 0 ]; then echo '-lncursesw' cheers, Christian Henz