From: Erik M. <er...@us...> - 2002-01-02 01:21:46
|
Update of /cvsroot/blob/blob/src/lib In directory usw-pr-cvs1:/tmp/cvs-serv9714/src/lib Modified Files: error.c Makefile.am Log Message: Happy new year! This is the start of a new serial driver that should make porting blob to non-StrongARM architectures easier. The SA11x0 driver is implemented, but completely untested at the moment. It's trivial to do the rest of the serial code, but I'd better go to bed, or otherwise Jan-Derk will complain that I'm working too late ;) Part two follows tomorrow. Index: error.c =================================================================== RCS file: /cvsroot/blob/blob/src/lib/error.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- error.c 2001/10/15 21:24:39 1.4 +++ error.c 2002/01/02 01:21:41 1.5 @@ -48,6 +48,7 @@ "ambiguous command", /* EAMBIGCMD */ "can't erase flash block", /* EFLASHERASE */ "flash program error", /* EFLASHPGM */ + "serial port error", /* ESERIAL */ }; Index: Makefile.am =================================================================== RCS file: /cvsroot/blob/blob/src/lib/Makefile.am,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- Makefile.am 2001/12/19 20:00:15 1.6 +++ Makefile.am 2002/01/02 01:21:41 1.7 @@ -33,6 +33,7 @@ led.c \ reboot.c \ serial.c \ + serial-sa11x0.c \ strncpy.c \ strlen.c \ strncmp.c \ |