Update of /cvsroot/blob/blob/include/blob
In directory sc8-pr-cvs1:/tmp/cvs-serv25225/include/blob
Modified Files:
Makefile.am util.h
Added Files:
reboot.h
Log Message:
Make a special reboot driver so SA11x0 and PXA can have different reboot
methods. Note that I don't have the PXA manual with me right here, so
somebody has to fill out a real PXA reboot driver at a later stage.
Index: Makefile.am
===================================================================
RCS file: /cvsroot/blob/blob/include/blob/Makefile.am,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- Makefile.am 17 Feb 2002 19:54:47 -0000 1.17
+++ Makefile.am 4 Jan 2003 02:11:42 -0000 1.18
@@ -39,6 +39,7 @@
mini_inflate.h \
param_block.h \
partition.h \
+ reboot.h \
sa1100.h \
sa1111.h \
serial.h \
Index: util.h
===================================================================
RCS file: /cvsroot/blob/blob/include/blob/util.h,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- util.h 17 Feb 2002 20:03:41 -0000 1.11
+++ util.h 4 Jan 2003 02:11:42 -0000 1.12
@@ -56,8 +56,6 @@
/* convert a string to an u32 value */
int strtou32(const char *str, u32 *value);
-void reboot_system(void);
-
/* printf and friends */
int snprintf(char * buf, size_t size, const char *fmt, ...);
int printf(const char *fmt, ...);
|