Update of /cvsroot/blob/blob
In directory sc8-pr-cvs1:/tmp/cvs-serv31229
Modified Files:
acconfig.h configure.in
Log Message:
- initial port to the Hack Kit core cpu board
Index: acconfig.h
===================================================================
RCS file: /cvsroot/blob/blob/acconfig.h,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -d -r1.22 -r1.23
--- acconfig.h 14 Oct 2002 13:17:26 -0000 1.22
+++ acconfig.h 26 Nov 2002 18:52:52 -0000 1.23
@@ -86,6 +86,9 @@
/* Define for Ipaq H3600 */
#undef H3600
+/* Define for The Hack Kit base CPU board*/
+#undef HKIT
+
/* Define for Vercel UD-1 (IDR) */
#undef IDR
Index: configure.in
===================================================================
RCS file: /cvsroot/blob/blob/configure.in,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -d -r1.55 -r1.56
--- configure.in 14 Oct 2002 13:17:27 -0000 1.55
+++ configure.in 26 Nov 2002 18:52:52 -0000 1.56
@@ -82,6 +82,7 @@
cep Iskratel CEP
creditlart CreditLART
frodo 2d3D, Inc. SA-1110 Development Board
+ hackkit The Hack Kit base board
h3600 Compaq Ipaq H36x0
idr Vercel UD-1
jornada720 HP Jornada 720 with Flash board
@@ -290,6 +291,15 @@
BLOB_FLASH_OBJS="intel32.o"
DIAG_PLATFORM_OBJS="pxa_idp.o"
use_cpu="pxa250"
+ use_lcd="no"
+ ;;
+ hackkit)
+ board_name="The Hack Kit base cpu board"
+ AC_DEFINE(HKIT)
+ BLOB_PLATFORM_OBJS="hackkit.o"
+ BLOB_FLASH_OBJS="intel32.o"
+ DIAG_PLATFORM_OBJS="hackkit.o"
+ use_cpu="sa1110"
use_lcd="no"
;;
*)
|