Update of /cvsroot/blob/blob/src/blob
In directory usw-pr-cvs1:/tmp/cvs-serv21186
Modified Files:
linux.c
Log Message:
- when NEPONSET board is used, do not report the 2nd bank of
memory to the kernel (this would require NUMA support in the kernel)
Index: linux.c
===================================================================
RCS file: /cvsroot/blob/blob/src/blob/linux.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- linux.c 2001/10/31 16:44:18 1.5
+++ linux.c 2001/11/13 13:27:18 1.6
@@ -107,6 +107,13 @@
params = tag_next(params);
}
+#if defined( NEPONSET )
+ /* When neponset board is present dont report
+ * the 2nd ram area to the kernel. This area
+ * is on the neponset board and would require
+ * NUMA support in the kernel.*/
+ break;
+#endif
}
}
|