PERFORCE change 113082 for review

Oleksandr Tymoshenko gonzo at FreeBSD.org
Wed Jan 17 22:40:35 UTC 2007


http://perforce.freebsd.org/chv.cgi?CH=113082

Change 113082 by gonzo at gonzo_hq on 2007/01/17 22:39:38

	o We don't need verbose mode by default anymore
	o Set t9 to entry point in exec_setregs. This is required by
		-mabicalls flag and PIC code.

Affected files ...

.. //depot/projects/mips2/src/sys/mips/mips/machdep.c#25 edit

Differences ...

==== //depot/projects/mips2/src/sys/mips/mips/machdep.c#25 (text+ko) ====

@@ -98,7 +98,7 @@
 	int i;
 
 	printf("entry: mips_init()\n");
-	bootverbose = 1;
+	bootverbose = 0;
 
 	realmem = btoc(64 << 20);
 
@@ -278,6 +278,7 @@
 	tf->tf_regs[TF_SP] = (register_t)stack;
 	tf->tf_regs[TF_SR] |= MIPS_SR_KSU_USER;
 	tf->tf_regs[TF_SR] |= MIPS_SR_COP_0_BIT;
+	tf->tf_regs[TF_T9] = (register_t)entry; /* Used by PIC code */
 }
 
 intptr_t


More information about the p4-projects mailing list