|
From: Abraham vd M. <ab...@us...> - 2003-08-06 22:55:44
|
Update of /cvsroot/blob/blob
In directory sc8-pr-cvs1:/tmp/cvs-serv7704
Modified Files:
AUTHORS acconfig.h configure.in
Log Message:
Support for CSIR IMS board and also a working PXA25x port. Still needs some
cleaning up and the lubbock and PXA IDP targets are going to be broken by
this (not sure if they ever worked and fixing them is trivial).
Index: AUTHORS
===================================================================
RCS file: /cvsroot/blob/blob/AUTHORS,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- AUTHORS 14 Oct 2002 13:17:24 -0000 1.12
+++ AUTHORS 6 Aug 2003 22:55:40 -0000 1.13
@@ -10,38 +10,31 @@
2600 GA Delft
The Netherlands
-
* Clock switching code
======================
- Johan Pouwelse <J.A...@it...>
-
* Assabet port
==============
- Jeff Sutherland <jsu...@ac...>
- Chester <ch...@li...>
-
* PLEB port
===========
- Adam Wiggins <awi...@cs...>
-
* Brutus port
=============
- Erik Mouw <J.A...@it...>
-
* NESA port
===========
- Russ Dill <Rus...@as...>
-
* Shannon (aka TuxScreen) port
==============================
- Tim Riker <Ti...@Ri...>, <Ti...@De...>, <Ti...@Li...>
-
* Various fixes and additions
=============================
- Mark Huang <mh...@li...>, RTC fix
@@ -54,36 +47,29 @@
==================
- Stefan Eletzhofer <ste...@el...>
-
* Memory tester
===============
- Stefan Eletzhofer <ste...@el...>
-
* 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...>
-
* Frodo port
============
-- Abraham vd Merwe <ab...@2d...>, <ab...@de...>, <ab...@bl...>, <ab...@fr...>
-
+- Abraham vd Merwe <ab...@4d...>
* Accelent IDP port
===================
@@ -104,4 +90,8 @@
* Iskratel CEP port
===================
- Matej Sekoranja <mat...@co...>
+
+* CSIR IMS port
+===============
+- Abraham vd Merwe <ab...@4d...>
Index: acconfig.h
===================================================================
RCS file: /cvsroot/blob/blob/acconfig.h,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -d -r1.25 -r1.26
--- acconfig.h 3 Apr 2003 14:58:17 -0000 1.25
+++ acconfig.h 6 Aug 2003 22:55:40 -0000 1.26
@@ -125,6 +125,9 @@
/* Define for Accelent PXA-based IDP */
#undef PXA_IDP
+/* Define for CSIR Incident Management System */
+#undef CSIR_IMS
+
/* Define if LCD support is wanted */
#undef CONFIG_LCD_SUPPORT
Index: configure.in
===================================================================
RCS file: /cvsroot/blob/blob/configure.in,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -d -r1.63 -r1.64
--- configure.in 3 Apr 2003 15:02:56 -0000 1.63
+++ configure.in 6 Aug 2003 22:55:40 -0000 1.64
@@ -82,21 +82,22 @@
brutus Intel Brutus
cep Iskratel CEP
creditlart CreditLART
- dafit Prueftechnik VibXpert
- frodo 2d3D, Inc. SA-1110 Development Board
+ dafit Prueftechnik VibXpert
+ frodo 2d3D, Inc. SA-1110 Development Board
h3600 Compaq Ipaq H36x0
hackkit The Hack Kit base board
idr Vercel UD-1
jornada720 HP Jornada 720 with Flash board
lart LART
lubbock Intel HCDDBCTA1 (Lubbock)
- miniprint FGAG Miniprint
+ miniprint FGAG Miniprint
nesa NESA
pleb PLEB
- pxa_idp Accelent PXA-based IDP
+ pxa_idp Accelent PXA-based IDP
shannon TuxScreen (Shannon)
system3 Prueftechnik Digital Board
trizeps Keith & Koep Trizeps Board
+ csir_ims CSIR Incident Management System
Default board is lart],
board_name="$withval",
board_name="lart")
@@ -358,6 +359,15 @@
use_cpu="sa1110"
use_lcd="no"
;;
+ csir_ims)
+ board_name="CSIR Incident Management System"
+ AC_DEFINE(CSIR_IMS)
+ BLOB_PLATFORM_OBJS="csir_ims.o"
+ BLOB_FLASH_OBJS="intel16.o"
+ DIAG_PLATFORM_OBJS="csir_ims.o"
+ use_cpu="pxa250"
+ use_lcd="no"
+ ;;
*)
AC_MSG_RESULT(unknown)
AC_MSG_ERROR([Unknown board name \"$board_name\", bailing out])
@@ -396,7 +406,7 @@
;;
pxa250)
dnl PXA250 CPU: SDRAM memory setup code
- BLOB_STARTCODE_OBJS="start-pxa.o"
+ BLOB_STARTCODE_OBJS="start-pxa.o gpio-pxa.o"
BLOB_MEMSETUP_OBJS="memsetup-pxa250.o"
BLOB_REBOOT_DRIVER_OBJS="reboot-pxa.o"
BLOB_SERIAL_DRIVER_OBJS="serial-pxa.o"
@@ -773,6 +783,7 @@
include/Makefile
include/blob/Makefile
include/blob/arch/Makefile
+include/blob/proc/Makefile
include/net/Makefile
src/Makefile
src/blob/Makefile
|