linux/autoconf.h problem
Steve Papacharalambous
stevep@zee2.com
Wed Jul 7 15:25:00 GMT 2004
Hi,
I've just run into the linux/autoconf.h problem, and fixed it using the
patch suggested by Rafael Ãvila de EspÃndola to crosstool.sh
[snip]
@@ -145,8 +146,15 @@
if test -f "$KERNELCONFIG" ; then
cp $KERNELCONFIG .config
fi
+
if test -f .config; then
yes "" | make ARCH=$ARCH oldconfig
+else
+ make ARCH=$ARCH mrproper
+ case "$LINUX_DIR" in
+ *2.6.*) make ARCH=$ARCH defconfig ;;
+ *) yes "" | make ARCH=$ARCH config ;;
+ esac
fi
# check for kernel version 2.6.*
[/snip]
This patch takes care of cases where there isn't a kernel config file
provided in the crosstool archive, so I wondered whether this patch will
make it into the next release of crosstool?
Best regards,
Steve
------
Want more information? See the CrossGCC FAQ, http://www.objsw.com/CrossGCC/
Want to unsubscribe? Send a note to crossgcc-unsubscribe@sources.redhat.com
More information about the crossgcc
mailing list