Jörg Sommer wrote:
> the kernel must have been build with CONFIG_NET_RADIO=y otherwise the
> softmac module is not loadable.
>
> See: http://lists.debian.org/debian-powerpc/2006/01/msg00614.html ff.
>
Hmmyeah. I'll add something like the following to the module build.
# do we have CONFIG_NET_RADIO?
if [ "`uname -r`" = "$(KVERS)" -a -e /proc/config.gz ]; then \
if ! zgrep -q CONFIG_NET_RADIO?y /proc/config.gz; then \
echo "You need CONFIG_NET_RADIO=y in your kernel." \
exit 1; \
fi; \
elif [ -e /boot/config-$(KVERS) ]; then
if ! grep -q CONFIG_NET_RADIO=y; then
echo "You need CONFIG_NET_RADIO=y in your kernel." \
exit 1; \
fi; \
fi
Regards,
Rene
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]