From: Erik M. <er...@us...> - 2001-10-27 21:04:23
|
Update of /cvsroot/blob/blob In directory usw-pr-cvs1:/tmp/cvs-serv791 Modified Files: configure.in acconfig.h Log Message: Initial support for the Compaq Ipaq H3600 series Index: configure.in =================================================================== RCS file: /cvsroot/blob/blob/configure.in,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- configure.in 2001/10/21 21:45:04 1.20 +++ configure.in 2001/10/27 21:04:20 1.21 @@ -106,6 +106,16 @@ use_cpu="sa1110" use_lcd="no" ;; + h3600) + AC_MSG_RESULT(Ipaq H3600) + AC_DEFINE(H3600) + AC_DEFINE(USE_SERIAL3) + BLOB_PLATFORM_OBJ="h3600.o" + AC_MSG_WARN([Warning: untested platform!]) + BLOB_FLASH_OBJS="intel32.o" + use_cpu="sa1110" + use_lcd="no" + ;; lart) AC_MSG_RESULT(LART) AC_DEFINE(LART) @@ -159,6 +169,10 @@ AC_MSG_ERROR([Unknown board name, bailing out]) ;; esac + +dnl define board name in configuration +AC_DEFINE_UNQUOTED(BOARD_NAME, "${board_name}") + if test "x$use_cpu" = "xsa1100" ; then dnl SA1100 CPU: EDORAM memory setup code Index: acconfig.h =================================================================== RCS file: /cvsroot/blob/blob/acconfig.h,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- acconfig.h 2001/10/09 17:49:36 1.5 +++ acconfig.h 2001/10/27 21:04:20 1.6 @@ -50,6 +50,9 @@ /* Define the package version here */ #undef VERSION +/* Define the board name over here */ +#undef BOARD_NAME + /* Define to enable run-time debug information */ #undef BLOB_DEBUG @@ -62,6 +65,9 @@ /* Define for CreditLART boards */ #undef CLART +/* Define for Ipaq H3600 */ +#undef H3600 + /* Define for LART boards */ #undef LART @@ -76,12 +82,6 @@ /* Define for Shannon (TuxScreen) */ #undef SHANNON - -/* Define if your system uses an SA-1100 CPU */ -#undef USE_SA1100 - -/* Define if your system uses an SA-1110 CPU */ -#undef USE_SA1110 /* Define if your sytem uses serial port 1 */ #undef USE_SERIAL1 |