Update of /cvsroot/blob/blob
In directory usw-pr-cvs1:/tmp/cvs-serv5148
Modified Files:
acconfig.h configure.in
Log Message:
- add support for PT System 3 (jay! the 8th supported architecture!)
- add --enable-memtest configure option for the memory tester
Index: acconfig.h
===================================================================
RCS file: /cvsroot/blob/blob/acconfig.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- acconfig.h 2001/09/23 15:05:03 1.3
+++ acconfig.h 2001/09/27 21:38:17 1.4
@@ -71,6 +71,9 @@
/* Define for PLEB boards */
#undef PLEB
+/* Define for PT System 3 boards */
+#undef PT_SYSTEM3
+
/* Define for Shannon (TuxScreen) */
#undef SHANNON
Index: configure.in
===================================================================
RCS file: /cvsroot/blob/blob/configure.in,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- configure.in 2001/09/23 15:05:03 1.9
+++ configure.in 2001/09/27 21:38:17 1.10
@@ -110,6 +110,12 @@
AC_DEFINE(USE_SERIAL3)
use_cpu="sa1100"
;;
+ system3)
+ AC_MSG_RESULT(PTSystem3)
+ AC_DEFINE(PT_SYSTEM3)
+ AC_DEFINE(USE_SERIAL1)
+ use_cpu="sa1110"
+ ;;
*)
AC_MSG_RESULT(unknown)
AC_MSG_WARN([Unknown board name, assuming SA1100 with serial 3])
@@ -181,6 +187,21 @@
+dnl Check wether or not memtest code is wanted
+AC_ARG_ENABLE(memtest,
+[ --enable-memtest Enable support for memory tests ],
+[chkmem_flag=$enable_memtest],
+[chkmem_flag=no])
+
+if test "x$chkmem_flag" = "xyes" ; then
+ CHKMEM="chkmem.o"
+fi
+
+AC_SUBST(CHKMEM)
+
+
+
+
dnl Check for extra debug info
AC_ARG_ENABLE(blob-debug,
[ --enable-blob-debug Enable run-time debug information],
@@ -252,5 +273,6 @@
echo "Objcopy tool ${OBJCOPY}"
echo "Objcopy flags ${OCFLAGS}"
echo "Clock scaling support ${clock_scaling_flag}"
+echo "Memory test support ${chkmem_flag}"
echo "Run-time debug information ${blob_debug_flag}"
echo ""
|