From: Erik M. <er...@us...> - 2001-10-07 19:34:20
|
Update of /cvsroot/blob/blob/src/lib In directory usw-pr-cvs1:/tmp/cvs-serv32578/lib Modified Files: command.c error.c help.c icache.c init.c led.c serial.c terminal.c time.c util.c Log Message: Fix include files Index: command.c =================================================================== RCS file: /cvsroot/blob/blob/src/lib/command.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- command.c 2001/10/07 19:04:25 1.1 +++ command.c 2001/10/07 19:34:17 1.2 @@ -32,16 +32,16 @@ #ident "$Id$" #ifdef HAVE_CONFIG_H -# include "config.h" +# include <blob/config.h> #endif -#include "command.h" -#include "errno.h" -#include "init.h" -#include "serial.h" -#include "time.h" -#include "types.h" -#include "util.h" +#include <blob/command.h> +#include <blob/errno.h> +#include <blob/init.h> +#include <blob/serial.h> +#include <blob/time.h> +#include <blob/types.h> +#include <blob/util.h> /* command list start and end. filled in by the linker */ extern u32 __commandlist_start; Index: error.c =================================================================== RCS file: /cvsroot/blob/blob/src/lib/error.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- error.c 2001/10/07 19:04:25 1.1 +++ error.c 2001/10/07 19:34:17 1.2 @@ -24,13 +24,13 @@ #ident "$Id$" #ifdef HAVE_CONFIG_H -# include "config.h" +# include <blob/config.h> #endif -#include "errno.h" -#include "error.h" -#include "serial.h" -#include "types.h" +#include <blob/errno.h> +#include <blob/error.h> +#include <blob/serial.h> +#include <blob/types.h> typedef struct { Index: help.c =================================================================== RCS file: /cvsroot/blob/blob/src/lib/help.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- help.c 2001/10/07 19:04:25 1.1 +++ help.c 2001/10/07 19:34:17 1.2 @@ -24,14 +24,14 @@ #ident "$Id$" #ifdef HAVE_CONFIG_H -# include "config.h" +# include <blob/config.h> #endif -#include "command.h" -#include "errno.h" -#include "error.h" -#include "serial.h" -#include "util.h" +#include <blob/command.h> +#include <blob/errno.h> +#include <blob/error.h> +#include <blob/serial.h> +#include <blob/util.h> Index: icache.c =================================================================== RCS file: /cvsroot/blob/blob/src/lib/icache.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- icache.c 2001/10/07 19:04:25 1.1 +++ icache.c 2001/10/07 19:34:17 1.2 @@ -24,11 +24,11 @@ #ident "$Id$" #ifdef HAVE_CONFIG_H -# include "config.h" +# include <blob/config.h> #endif -#include "init.h" -#include "types.h" +#include <blob/init.h> +#include <blob/types.h> Index: init.c =================================================================== RCS file: /cvsroot/blob/blob/src/lib/init.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- init.c 2001/10/07 19:04:25 1.1 +++ init.c 2001/10/07 19:34:17 1.2 @@ -24,14 +24,14 @@ #ident "$Id$" #ifdef HAVE_CONFIG_H -# include "config.h" +# include <blob/config.h> #endif -#include "errno.h" -#include "error.h" -#include "init.h" -#include "serial.h" -#include "types.h" +#include <blob/errno.h> +#include <blob/error.h> +#include <blob/init.h> +#include <blob/serial.h> +#include <blob/types.h> /* int and exit list start and end. filled in by the linker */ Index: led.c =================================================================== RCS file: /cvsroot/blob/blob/src/lib/led.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- led.c 2001/10/07 19:04:25 1.1 +++ led.c 2001/10/07 19:34:17 1.2 @@ -37,12 +37,12 @@ #ident "$Id$" #ifdef HAVE_CONFIG_H -# include "config.h" +# include <blob/config.h> #endif -#include "led.h" -#include "sa1100.h" -#include "init.h" +#include <blob/led.h> +#include <blob/sa1100.h> +#include <blob/init.h> Index: serial.c =================================================================== RCS file: /cvsroot/blob/blob/src/lib/serial.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- serial.c 2001/10/07 19:04:25 1.1 +++ serial.c 2001/10/07 19:34:17 1.2 @@ -32,14 +32,14 @@ #ident "$Id$" #ifdef HAVE_CONFIG_H -# include "config.h" +# include <blob/config.h> #endif -#include "init.h" -#include "led.h" -#include "sa1100.h" -#include "serial.h" -#include "time.h" +#include <blob/init.h> +#include <blob/led.h> +#include <blob/sa1100.h> +#include <blob/serial.h> +#include <blob/time.h> /* * Initialise the serial port with the given baudrate. The settings Index: terminal.c =================================================================== RCS file: /cvsroot/blob/blob/src/lib/terminal.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- terminal.c 2001/10/07 19:04:25 1.1 +++ terminal.c 2001/10/07 19:34:17 1.2 @@ -24,12 +24,12 @@ #ident "$Id$" #ifdef HAVE_CONFIG_H -# include "config.h" +# include <blob/config.h> #endif -#include "command.h" -#include "main.h" -#include "serial.h" +#include <blob/command.h> +#include <blob/main.h> +#include <blob/serial.h> Index: time.c =================================================================== RCS file: /cvsroot/blob/blob/src/lib/time.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- time.c 2001/10/07 19:04:25 1.1 +++ time.c 2001/10/07 19:34:17 1.2 @@ -32,13 +32,13 @@ #ident "$Id$" #ifdef HAVE_CONFIG_H -# include "config.h" +# include <blob/config.h> #endif -#include "init.h" -#include "led.h" -#include "sa1100.h" -#include "time.h" +#include <blob/init.h> +#include <blob/led.h> +#include <blob/sa1100.h> +#include <blob/time.h> Index: util.c =================================================================== RCS file: /cvsroot/blob/blob/src/lib/util.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- util.c 2001/10/07 19:04:25 1.1 +++ util.c 2001/10/07 19:34:17 1.2 @@ -32,12 +32,12 @@ #ident "$Id$" #ifdef HAVE_CONFIG_H -# include "config.h" +# include <blob/config.h> #endif -#include "types.h" -#include "util.h" -#include "serial.h" +#include <blob/types.h> +#include <blob/util.h> +#include <blob/serial.h> |