Has anyone else come across a problem where instead of compiling the modules, it just prints the script used to do the compilation to the terminal window? I can't figure out what exactly is causing it.
I haven't looked too far into it, as I'm not sure how exactly make-kpkg works, but it's not executing that shell script correctly for whatever reason..
Code:
# make-kpkg --initrd --revision=386 modules_image
exec debian/rules DEBIAN_REVISION=386 INITRD=YES modules_image
for module in ; do \
if test -d $module; then \
(cd $module; \
if ./debian/rules KVERS="2.6.24.2" KSRC="/usr/src/linux-2.6.24" \
KMAINT="Unknown Kernel Package Maintainer" KEMAIL="unknown@unconfigured.in.etc.kernel-pkg.conf" \
KPKG_DEST_DIR="/usr/src/linux-2.6.24/.." \
KPKG_MAINTAINER="Unknown Kernel Package Maintainer" \
KPKG_EXTRAV_ARG="" \
ARCH="i386" \
KDREV="386" kdist_image; then \
echo "Module $module processed fine"; \
else \
echo "Module $module failed."; \
if [ "X" != "X" ]; then \
echo "Perhaps $module does not understand --rootcmd?"; \
echo "If you see messages that indicate that it is not"; \
echo "in fact being built as root, please file a bug "; \
echo "against $module."; \
fi; \
echo "Hit return to Continue"; \
read ans; \
fi; \
); \
else \
echo "Module $module does not exist"; \
echo "Hit return to Continue?"; \
fi; \
done
Any help would be appreciated.
Bookmarks