2003-08-20 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* configure.ac: Add BSPOPTS PRINTK_MINOR and CONSOLE_MINOR.
	* console/Makefile.am: Don't include @RTEMS_BSP@.cfg
This commit is contained in:
Ralf Corsepius
2003-08-20 13:36:43 +00:00
parent a0bbbddd11
commit bd6ec2876c
3 changed files with 21 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2003-08-20 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: Add BSPOPTS PRINTK_MINOR and CONSOLE_MINOR.
* console/Makefile.am: Don't include @RTEMS_BSP@.cfg
2003-08-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2003-08-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Reflect having moved aclocal/. * Makefile.am: Reflect having moved aclocal/.

View File

@@ -34,6 +34,22 @@ RTEMS_BSPOPTS_SET([CD2401_USE_TERMIOS],[*],[0])
RTEMS_BSPOPTS_HELP([CD2401_USE_TERMIOS], RTEMS_BSPOPTS_HELP([CD2401_USE_TERMIOS],
[1 for using termios based console.]) [1 for using termios based console.])
RTEMS_BSPOPTS_SET([CONSOLE_MINOR],[*],[1])
RTEMS_BSPOPTS_HELP([CONSOLE_MINOR],
[Port to use for the RTEMS console.
0 - /dev/tty0, Serial Port 1/Console on the MVME712M.
1 - /dev/tty1, Serial Port 2/TTY01 on the MVME712M.
2 - /dev/tty2, Serial Port 3 on the MVME712M.
3 - /dev/tty3, Serial Port 4 on the MVME712M.])
RTEMS_BSPOPTS_SET([PRINTK_MINOR],[*],[1])
RTEMS_BSPOPTS_HELP([PRINTK_MINOR],
[Port to use for printk debugging output.
0 - /dev/tty0, Serial Port 1/Console on the MVME712M.
1 - /dev/tty1, Serial Port 2/TTY01 on the MVME712M.
2 - /dev/tty2, Serial Port 3 on the MVME712M.
3 - /dev/tty3, Serial Port 4 on the MVME712M.])
# Explicitly list all Makefiles here # Explicitly list all Makefiles here
AC_CONFIG_FILES([Makefile AC_CONFIG_FILES([Makefile
clock/Makefile clock/Makefile

View File

@@ -8,7 +8,6 @@ PGM = $(ARCH)/console.rel
C_FILES = console.c C_FILES = console.c
OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../../../../automake/compile.am include $(top_srcdir)/../../../../automake/compile.am
include $(top_srcdir)/../../../../automake/lib.am include $(top_srcdir)/../../../../automake/lib.am