From: Stefan E. <se...@us...> - 2002-04-23 12:38:07
|
Update of /cvsroot/blob/blob In directory usw-pr-cvs1:/tmp/cvs-serv31224 Modified Files: acconfig.h configure.in Log Message: - TRIZEPS board support. Patch by Wolfgang Mueller. Index: acconfig.h =================================================================== RCS file: /cvsroot/blob/blob/acconfig.h,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- acconfig.h 5 Feb 2002 14:47:54 -0000 1.17 +++ acconfig.h 23 Apr 2002 12:36:19 -0000 1.18 @@ -104,6 +104,9 @@ /* Define for Shannon (TuxScreen) */ #undef SHANNON +/* Define for Trizeps boards */ +#undef TRIZEPS + /* Define if LCD support is wanted */ #undef CONFIG_LCD_SUPPORT Index: configure.in =================================================================== RCS file: /cvsroot/blob/blob/configure.in,v retrieving revision 1.48 retrieving revision 1.49 diff -u -d -r1.48 -r1.49 --- configure.in 23 Apr 2002 12:21:10 -0000 1.48 +++ configure.in 23 Apr 2002 12:36:19 -0000 1.49 @@ -89,6 +89,7 @@ pleb PLEB shannon TuxScreen (Shannon) system3 Prueftechnik Digital Board + trizeps Keith & Koep Trizeps Board Default board is lart], board_name="$withval", board_name="lart") @@ -238,6 +239,17 @@ DIAG_PLATFORM_OBJS="system3.o" use_cpu="sa1110" use_lcd="yes" + ;; + trizeps) + board_name="Keith & Koep Trizeps Board" + AC_DEFINE(TRIZEPS) + BLOB_PLATFORM_OBJS="trizeps.o" + AC_MSG_WARN([Warning: untested platform!]) + AC_MSG_WARN([Please check trizeps memory config in arch/trizeps.h]) + BLOB_FLASH_OBJS="intel16.o" + DIAG_PLATFORM_OBJS="trizeps.o" + use_cpu="sa1110" + use_lcd="no" ;; *) AC_MSG_RESULT(unknown) |