I have modified the rtai.m4 script locally to recognize a kernel with
ipipe support. With this the generated configure script detects ipipe
support and activates RTAI support. The so modified comedi compiles fine
and modules load without any crashes. However I haven't tested the result
with real daq hardware yet.
AS_LINUX_CONFIG_OPTION_MODULE([CONFIG_RTHAL])
AS_LINUX_CONFIG_OPTION_MODULE([CONFIG_ADEOS])
-
- if test "${CONFIG_RTHAL}" != "no" -o "${CONFIG_ADEOS}" != "no" ; then
+ AS_LINUX_CONFIG_OPTION_MODULE([CONFIG_IPIPE])
+
+ if test "${CONFIG_RTHAL}" != "no" -o "${CONFIG_ADEOS}" != "no" -o "${CONFIG_IPIPE}" != "no" ; then
AC_MSG_CHECKING([RTAI directory ${RTAI_DIR}])
if [[ -d ${RTAI_DIR}/include ]] ; then
RTAI_CFLAGS="-I${RTAI_DIR}/include"