DRVMGR: added driver manager to cpukit/libdrvmgr

This commit is contained in:
Daniel Hellstrom
2011-11-28 09:52:03 +01:00
parent 02550220c5
commit e7fade3ac4
37 changed files with 3724 additions and 3 deletions

12
aclocal/enable-drvmgr.m4 Normal file
View File

@@ -0,0 +1,12 @@
AC_DEFUN([RTEMS_ENABLE_DRVMGR],
[
## AC_BEFORE([$0], [RTEMS_CHECK_DRVMGR_STARTUP])dnl
AC_ARG_ENABLE(drvmgr,
[AS_HELP_STRING([--enable-drvmgr],[enable Driver Manager at Startup])],
[case "${enableval}" in
yes) RTEMS_DRVMGR_STARTUP=yes ;;
no) RTEMS_DRVMGR_STARTUP=no ;;
*) AC_MSG_ERROR(bad value ${enableval} for enable-drvmgr option) ;;
esac],[RTEMS_DRVMGR_STARTUP=yes])
])