From: Erik M. <er...@us...> - 2002-01-03 16:07:21
|
Update of /cvsroot/blob/blob In directory usw-pr-cvs1:/tmp/cvs-serv2589 Modified Files: configure.in Log Message: The serial port driver rewrite, part two. This looks quite intrusive, but it's not that large: - rewrite src/lib/serial.c to use the low level serial driver - change semantics for SerialInputByte() and SerialOutputByte(), so rename them to serial_read() and serial_write(). this makes the patch huge - add new INIT_LEVEL for driver selection (has to be done before hardware initialisation) - add machine specific files for all architectures in diag - clean up odds and ends. Index: configure.in =================================================================== RCS file: /cvsroot/blob/blob/configure.in,v retrieving revision 1.31 retrieving revision 1.32 diff -u -d -r1.31 -r1.32 --- configure.in 2001/12/27 18:27:37 1.31 +++ configure.in 2002/01/03 16:07:17 1.32 @@ -99,6 +99,7 @@ BLOB_PLATFORM_OBJ="assabet.o" AC_MSG_WARN([Please check assabet memory config in arch/assabet.h]) BLOB_FLASH_OBJS="intel32.o" + DIAG_PLATFORM_OBJ="assabet.o" use_cpu="sa1110" use_lcd="no" ;; @@ -109,6 +110,7 @@ BLOB_PLATFORM_OBJ="assabet.o" AC_MSG_WARN([Please check assabet memory config in arch/assabet.h]) BLOB_FLASH_OBJS="intel32.o" + DIAG_PLATFORM_OBJ="assabet.o" use_cpu="sa1110" use_lcd="no" ;; @@ -118,6 +120,7 @@ BLOB_PLATFORM_OBJ="brutus.o" AC_MSG_WARN([Please check Brutus flash]) BLOB_FLASH_OBJS="nullflash.o" + DIAG_PLATFORM_OBJ="brutus.o" use_cpu="sa1100" use_lcd="no" ;; @@ -127,6 +130,7 @@ BLOB_PLATFORM_OBJ="clart.o" AC_MSG_WARN([Please check creditlart memory config in arch/clart.h]) BLOB_FLASH_OBJS="intel16.o" + DIAG_PLATFORM_OBJ="clart.o" use_cpu="sa1110" use_lcd="no" ;; @@ -137,6 +141,7 @@ AC_MSG_WARN([Warning: untested platform!]) AC_MSG_WARN([Please check h3600 memory config in arch/h3600.h]) BLOB_FLASH_OBJS="intel32.o" + DIAG_PLATFORM_OBJ="h3600.o" use_cpu="sa1110" use_lcd="no" ;; @@ -145,6 +150,7 @@ AC_DEFINE(IDR) BLOB_PLATFORM_OBJ="idr.o" BLOB_FLASH_OBJS="intel16.o" + DIAG_PLATFORM_OBJ="idr.o" use_cpu="sa1110" use_lcd="no" ;; @@ -153,6 +159,7 @@ AC_DEFINE(LART) BLOB_PLATFORM_OBJ="lart.o" BLOB_FLASH_OBJS="intel32.o" + DIAG_PLATFORM_OBJ="lart.o" use_cpu="sa1100" use_lcd="no" ;; @@ -161,6 +168,7 @@ AC_DEFINE(NESA) BLOB_PLATFORM_OBJ="nesa.o" BLOB_FLASH_OBJS="amd32.o" + DIAG_PLATFORM_OBJ="nesa.o" use_cpu="sa1100" use_lcd="no" ;; @@ -170,6 +178,7 @@ BLOB_PLATFORM_OBJ="pleb.o" AC_MSG_WARN([Please check PLEB flash]) BLOB_FLASH_OBJS="nullflash.o" + DIAG_PLATFORM_OBJ="pleb.o" use_cpu="sa1100" use_lcd="no" ;; @@ -178,6 +187,7 @@ AC_DEFINE(SHANNON) BLOB_PLATFORM_OBJ="shannon.o" BLOB_FLASH_OBJS="amd32.o" + DIAG_PLATFORM_OBJ="shannon.o" use_cpu="sa1100" use_lcd="no" ;; @@ -196,6 +206,7 @@ BLOB_PLATFORM_OBJ="jornada720.o" AC_MSG_WARN([Warning: untested platform!]) BLOB_FLASH_OBJS="intel32.o" + DIAG_PLATFORM_OBJ="jornada720.o" use_cpu="sa1110" use_lcd="no" ;; @@ -204,6 +215,7 @@ AC_DEFINE(BADGE4) BLOB_PLATFORM_OBJ="badge4.o" BLOB_FLASH_OBJS="intel16.o" + DIAG_PLATFORM_OBJ="badge4.o" use_cpu="sa1110" use_lcd="no" ;; |