Update of /cvsroot/blob/blob/include/blob
In directory usw-pr-cvs1:/tmp/cvs-serv14606/include/blob
Modified Files:
partition.h
Log Message:
Construct a bootldr partition block from blob partition information.
Index: partition.h
===================================================================
RCS file: /cvsroot/blob/blob/include/blob/partition.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- partition.h 2001/12/19 22:53:45 1.1
+++ partition.h 2001/12/26 23:38:36 1.2
@@ -29,7 +29,7 @@
#include <blob/types.h>
-#define PARTITION_NAMELEN (32)
+#define PART_PARTITION_NAMELEN (32)
typedef struct {
u32 offset; /* offset wrt start of flash */
@@ -37,7 +37,7 @@
u32 mem_base; /* load address in RAM */
u32 entry_point; /* entry point in RAM */
u32 flags;
- char name[PARTITION_NAMELEN];
+ char name[PART_PARTITION_NAMELEN];
} partition_t;
#define PART_VALID (1<<0)
|