Update of /cvsroot/blob/blob
In directory usw-pr-cvs1:/tmp/cvs-serv30527
Modified Files:
AUTHORS ChangeLog acconfig.h configure.in
Log Message:
- Add HP Jornada 720 port (Chris Hoover)
- Add HP Labs Badge4 port (Chris Hoover)
- Slightly change the SA1110 memory setup or otherwise the HP machines
won't work
- Move SA1111 base address into machine specific include files
Index: AUTHORS
===================================================================
RCS file: /cvsroot/blob/blob/AUTHORS,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- AUTHORS 2001/09/27 21:42:31 1.3
+++ AUTHORS 2001/12/27 18:27:37 1.4
@@ -57,3 +57,23 @@
* Memory tester
===============
- Stefan Eletzhofer <ste...@ww...>
+
+
+* Ipaq H3600 port
+=================
+- Erik Mouw <J.A...@it...>
+
+
+* Vercel UD-1 port
+==================
+- Tim Riker <Ti...@Ri...>, <Ti...@De...>, <Ti...@Li...>
+
+
+* Jornada 720 port
+==================
+- Christopher Hoover <ch...@hp...>
+
+
+* Badge4
+========
+- Christopher Hoover <ch...@hp...>
Index: ChangeLog
===================================================================
RCS file: /cvsroot/blob/blob/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- ChangeLog 2001/12/16 16:35:52 1.12
+++ ChangeLog 2001/12/27 18:27:37 1.13
@@ -4,6 +4,8 @@
$Id$
blob-2.0.5-pre2:
+- HP Labs Badge4 support Christopher Hoover
+- HP Jornada 720 support Christopher Hoover
- Vercel UD-1 (IDR) support Tim Riker
- New dump command Tim Riker
- Fix compile time bug with newer linux kernels Stefan Eletzhofer
Index: acconfig.h
===================================================================
RCS file: /cvsroot/blob/blob/acconfig.h,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- acconfig.h 2001/12/16 04:34:02 1.9
+++ acconfig.h 2001/12/27 18:27:37 1.10
@@ -62,6 +62,9 @@
/* Define if Neponset board attached to Assabet */
#undef NEPONSET
+/* Define for Badge 4 */
+#undef BADGE4
+
/* Define for Brutus boards */
#undef BRUTUS
@@ -73,6 +76,9 @@
/* Define for Vercel UD-1 (IDR) */
#undef IDR
+
+/* Define for Jornada 720 */
+#undef JORNADA720
/* Define for LART boards */
#undef LART
Index: configure.in
===================================================================
RCS file: /cvsroot/blob/blob/configure.in,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -d -r1.30 -r1.31
--- configure.in 2001/12/17 00:06:50 1.30
+++ configure.in 2001/12/27 18:27:37 1.31
@@ -76,10 +76,12 @@
Valid names are:
assabet Intel Assabet
neponset Intel Assabet with Neponset board
+ badge4 HPL Badge 4
brutus Intel Brutus
creditlart CreditLART
h3600 Compaq Ipaq H36x0
idr Vercel UD-1
+ jornada720 HP Jornada 720 with Flash board
lart LART
nesa NESA
pleb PLEB
@@ -187,6 +189,23 @@
DIAG_PLATFORM_OBJ="system3.o"
use_cpu="sa1110"
use_lcd="yes"
+ ;;
+ jornada720)
+ board_name="Hewlett-Packard Jornada 720 with flash daughter board"
+ AC_DEFINE(JORNADA720)
+ BLOB_PLATFORM_OBJ="jornada720.o"
+ AC_MSG_WARN([Warning: untested platform!])
+ BLOB_FLASH_OBJS="intel32.o"
+ use_cpu="sa1110"
+ use_lcd="no"
+ ;;
+ badge4)
+ board_name="Hewlett-Packard Laboratories Badge-4"
+ AC_DEFINE(BADGE4)
+ BLOB_PLATFORM_OBJ="badge4.o"
+ BLOB_FLASH_OBJS="intel16.o"
+ use_cpu="sa1110"
+ use_lcd="no"
;;
*)
AC_MSG_RESULT(unknown)
|