Index: arch/mips/include/asm/boot.h
===================================================================
--- arch/mips/include/asm/boot.h	(revision e949fd6a00383c7e2a4364132d9a320bf31ccd97)
+++ arch/mips/include/asm/boot.h	(revision e949fd6a00383c7e2a4364132d9a320bf31ccd97)
@@ -0,0 +1,41 @@
+/*
+ * Copyright (C) 2005 Ondrej Palkovsky
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * - Redistributions of source code must retain the above copyright
+ *   notice, this list of conditions and the following disclaimer.
+ * - Redistributions in binary form must reproduce the above copyright
+ *   notice, this list of conditions and the following disclaimer in the
+ *   documentation and/or other materials provided with the distribution.
+ * - The name of the author may not be used to endorse or promote products
+ *   derived from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#ifndef __mips_BOOT_H_
+#define __mips_BOOT_H_
+
+
+/* Temporary stack size for boot process */
+#define TEMP_STACK_SIZE 0x100
+#define TEMP_STACK_START 0x80000400
+
+/* Kernel startup address */
+#define KERNEL_STARTUP_ADDRESS 0x80000300
+
+
+#endif
Index: src/Makefile.config
===================================================================
--- src/Makefile.config	(revision e84439a6b96e0c83a94019809dee452529612fe7)
+++ src/Makefile.config	(revision e949fd6a00383c7e2a4364132d9a320bf31ccd97)
@@ -21,5 +21,5 @@
 
 # Uncomment if you want to run in the test mode
-TEST=__TEST__
+#TEST=__TEST__
 
 TEST_FILE=test.c
@@ -29,5 +29,5 @@
 #TEST_DIR=synch/rwlock2/
 #TEST_DIR=synch/rwlock3/
-TEST_DIR=synch/rwlock4/
+#TEST_DIR=synch/rwlock4/
 #TEST_DIR=synch/rwlock5/
 #TEST_DIR=synch/semaphore1/
Index: src/clean.mips
===================================================================
--- src/clean.mips	(revision e84439a6b96e0c83a94019809dee452529612fe7)
+++ src/clean.mips	(revision e949fd6a00383c7e2a4364132d9a320bf31ccd97)
@@ -4,2 +4,3 @@
 
 rm ../tools/mips/gencontext
+rm ../arch/mips/src/context_offset.h
