Update of /cvsroot/blob/blob
In directory usw-pr-cvs1:/tmp/cvs-serv9483
Modified Files:
AUTHORS acconfig.h configure.in
Log Message:
- integrated CEP patch sent by "Matej Sekoranja" <mat...@co...>
Index: AUTHORS
===================================================================
RCS file: /cvsroot/blob/blob/AUTHORS,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- AUTHORS 14 Aug 2002 20:47:12 -0000 1.11
+++ AUTHORS 14 Oct 2002 13:17:24 -0000 1.12
@@ -101,3 +101,7 @@
===========================================
- Russell Geldmacher <rus...@in...>
+* Iskratel CEP port
+===================
+- Matej Sekoranja <mat...@co...>
+
Index: acconfig.h
===================================================================
RCS file: /cvsroot/blob/blob/acconfig.h,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -d -r1.21 -r1.22
--- acconfig.h 14 Aug 2002 20:47:38 -0000 1.21
+++ acconfig.h 14 Oct 2002 13:17:26 -0000 1.22
@@ -74,6 +74,9 @@
/* Define for Brutus boards */
#undef BRUTUS
+/* Define for Iskratel CEP boards */
+#undef CEP
+
/* Define for CreditLART boards */
#undef CLART
Index: configure.in
===================================================================
RCS file: /cvsroot/blob/blob/configure.in,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -d -r1.54 -r1.55
--- configure.in 14 Aug 2002 20:48:09 -0000 1.54
+++ configure.in 14 Oct 2002 13:17:27 -0000 1.55
@@ -79,6 +79,7 @@
neponset Intel Assabet with Neponset board
badge4 HPL Badge 4
brutus Intel Brutus
+ cep Iskratel CEP
creditlart CreditLART
frodo 2d3D, Inc. SA-1110 Development Board
h3600 Compaq Ipaq H36x0
@@ -147,6 +148,16 @@
use_cpu="sa1100"
use_lcd="no"
;;
+ cep)
+ board_name="Iskratel CEP"
+ AC_DEFINE(CEP)
+ BLOB_PLATFORM_OBJS="cep.o"
+ AC_MSG_WARN([Please check configuration in arch/cep.h])
+ BLOB_FLASH_OBJS="intel32.o"
+ DIAG_PLATFORM_OBJS="cep.o"
+ use_cpu="sa1110"
+ use_lcd="no"
+ ;;
creditlart)
board_name="Delft University of Technology CreditLART"
AC_DEFINE(CLART)
|