Update of /cvsroot/blob/blob/include/blob
In directory usw-pr-cvs1:/tmp/cvs-serv5901
Modified Files:
param_block.h
Log Message:
add a version number to the magic number to prevent someone from losing a board
Index: param_block.h
===================================================================
RCS file: /cvsroot/blob/blob/include/blob/param_block.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- param_block.h 21 Jan 2002 19:45:16 -0000 1.3
+++ param_block.h 22 Feb 2002 07:30:05 -0000 1.4
@@ -37,7 +37,8 @@
#include <blob/types.h>
-#define PTAG_MAGIC 0x32d27000 /* base 26 blob */
+#define PTAG_VER 0x1
+#define PTAG_MAGIC (0x32d27000 + (PTAG_VER << 3)) /* base 26 blob + version */
/* The list ends with an PTAG_NONE node. */
#define PTAG_NONE 0x00000000
|