From: Stefan E. <se...@us...> - 2002-05-27 10:08:03
|
Update of /cvsroot/blob/blob In directory usw-pr-cvs1:/tmp/cvs-serv10621 Modified Files: AUTHORS acconfig.h configure.in Log Message: - FGAG miniprint port by Urs Kaufmann Index: AUTHORS =================================================================== RCS file: /cvsroot/blob/blob/AUTHORS,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- AUTHORS 13 May 2002 19:54:31 -0000 1.9 +++ AUTHORS 27 May 2002 10:01:47 -0000 1.10 @@ -88,3 +88,7 @@ * Accelent IDP port =================== - Holger Schurig <h.s...@mn...> + +* FGAG miniprint port +===================== +- Urs Kaufmann <u_k...@bl...> Index: acconfig.h =================================================================== RCS file: /cvsroot/blob/blob/acconfig.h,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- acconfig.h 27 Apr 2002 06:55:09 -0000 1.19 +++ acconfig.h 27 May 2002 10:01:47 -0000 1.20 @@ -92,6 +92,9 @@ /* Define for LART boards */ #undef LART +/* Define for MINIPRINT boards */ +#undef MINIPRINT + /* Define for NESA boards */ #undef NESA Index: configure.in =================================================================== RCS file: /cvsroot/blob/blob/configure.in,v retrieving revision 1.52 retrieving revision 1.53 diff -u -d -r1.52 -r1.53 --- configure.in 27 Apr 2002 06:55:09 -0000 1.52 +++ configure.in 27 May 2002 10:01:47 -0000 1.53 @@ -203,6 +203,15 @@ use_cpu="sa1100" use_lcd="no" ;; + miniprint) + board_name="FGAG miniprint" + AC_DEFINE(MINIPRINT) + BLOB_PLATFORM_OBJS="miniprint.o" + BLOB_FLASH_OBJS="intel32.o" + DIAG_PLATFORM_OBJS="miniprint.o" + use_cpu="sa1110" + use_lcd="yes" + ;; nesa) board_name="NESA" AC_DEFINE(NESA) |