Update of /cvsroot/blob/blob/src/diag
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16919/src/diag
Modified Files:
Makefile.am
Added Files:
cerf.c
Log Message:
CERF platform port by Kevin Lo <ke...@ke...>
--- NEW FILE: cerf.c ---
/*
* cerf.c: CerfCube specific stuff
*
* Copyright (C) 2004 Kevin Lo <ke...@ke...>
*
* $Id: cerf.c,v 1.1 2004/02/24 11:06:45 seletz Exp $
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#ident "$Id: cerf.c,v 1.1 2004/02/24 11:06:45 seletz Exp $"
#ifdef HAVE_CONFIG_H
# include <blob/config.h>
#endif
#include <blob/init.h>
#include <blob/serial.h>
#include <blob/time.h>
static void cerf_init_hardware(void)
{
/* select serial driver */
serial_driver = &sa11x0_serial_driver;
timer_driver = &intelarm_timer_driver;
}
__initlist(cerf_init_hardware, INIT_LEVEL_DRIVER_SELECTION);
Index: Makefile.am
===================================================================
RCS file: /cvsroot/blob/blob/src/diag/Makefile.am,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- Makefile.am 4 Sep 2003 18:10:42 -0000 1.23
+++ Makefile.am 24 Feb 2004 11:06:44 -0000 1.24
@@ -61,6 +61,7 @@
badge4.c \
brutus.c \
cep.c \
+ cerf.c \
clart.c \
frodo.c \
hackkit.c \
|