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.
	Remove BSP_CPPFLAGS.
This commit is contained in:
Ralf Corsepius
2003-08-20 13:40:56 +00:00
parent d3ed198bc6
commit cf18d1d52d
3 changed files with 22 additions and 3 deletions

View File

@@ -1,3 +1,9 @@
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.
Remove BSP_CPPFLAGS.
2003-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: Use rtems-bugs@rtems.com as bug report email address.

View File

@@ -34,6 +34,22 @@ RTEMS_BSPOPTS_SET([CD2401_USE_TERMIOS],[*],[0])
RTEMS_BSPOPTS_HELP([CD2401_USE_TERMIOS],
[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
AC_CONFIG_FILES([Makefile
clock/Makefile

View File

@@ -2,17 +2,14 @@
## $Id$
##
PGM = $(ARCH)/console.rel
C_FILES = console.c
OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../../../../../../automake/compile.am
include $(top_srcdir)/../../../../../../automake/lib.am
AM_CPPFLAGS += $(BSP_CPPFLAGS)
#
# (OPTIONAL) Add local stuff here using +=
#