diff --git a/assembly/ppc/assem-rtns.lisp b/assembly/ppc/assem-rtns.lisp
index caa333b5543a5d86784d08173e646996adcd10be..18de1af98c8c329eff65a251d3fc5602d490202b 100644
--- a/assembly/ppc/assem-rtns.lisp
+++ b/assembly/ppc/assem-rtns.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman (FAHLMAN@CMUC). 
 ;;; **********************************************************************
 ;;;
-;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/assembly/ppc/assem-rtns.lisp,v 1.4 2005/04/08 04:11:01 rtoy Exp $
+;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/assembly/ppc/assem-rtns.lisp,v 1.5 2006/11/02 01:53:17 rtoy Exp $
 ;;;
 ;;;
 (in-package "PPC")
@@ -196,7 +196,8 @@
 			  (:arg start any-reg ocfp-offset)
 			  (:arg count any-reg nargs-offset)
 			  (:temp catch any-reg a1-offset)
-			  (:temp tag descriptor-reg a2-offset))		  
+			  (:temp tag descriptor-reg a2-offset)
+			  (:temp temp non-descriptor-reg nl0-offset))
   
   (declare (ignore start count))
 
@@ -217,7 +218,13 @@
   exit
   
   (move target catch)
-  (inst ba (make-fixup 'unwind :assembly-routine)))
+  #+nil
+  (inst ba (make-fixup 'unwind :assembly-routine))
+
+  (progn
+    (inst lr temp (make-fixup 'unwind :assembly-routine))
+    (inst mtctr temp)
+    (inst bctr)))
 
 
 
diff --git a/assembly/ppc/support.lisp b/assembly/ppc/support.lisp
index 81596ebee2a2a5b44d604b02ccdc70979d0c1984..d2c8f6d1eeb209bce66881b66ecd49417afd54da 100644
--- a/assembly/ppc/support.lisp
+++ b/assembly/ppc/support.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/assembly/ppc/support.lisp,v 1.3 2005/04/08 04:11:01 rtoy Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/assembly/ppc/support.lisp,v 1.4 2006/11/02 01:53:17 rtoy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -16,9 +16,17 @@
 (def-vm-support-routine generate-call-sequence (name style vop)
   (ecase style
     (:raw
-     (values 
-      `((inst bla (make-fixup ',name :assembly-routine)))
-      `()))
+     (let ((temp (make-symbol "TEMP")))
+       #+nil
+       (values 
+	`((inst bla (make-fixup ',name :assembly-routine)))
+	`())
+       (values 
+	`((inst lr ,temp (make-fixup ',name :assembly-routine))
+	  (inst mtctr ,temp)
+	  (inst bctrl))
+	`((:temporary (:scs (non-descriptor-reg) :from (:eval 0) :to (:eval 1))
+	              ,temp)))))
     (:full-call
      (let ((temp (make-symbol "TEMP"))
 	   (nfp-save (make-symbol "NFP-SAVE"))
@@ -30,7 +38,12 @@
 	      (store-stack-tn ,nfp-save cur-nfp))
 	    (inst compute-lra-from-code ,lra code-tn lra-label ,temp)
 	    (note-next-instruction ,vop :call-site)
+	    #+nil
             (inst ba (make-fixup ',name :assembly-routine))
+	    (progn
+	      (inst lr ,temp (make-fixup ',name :assembly-routine))
+	      (inst mtctr ,temp)
+	      (inst bctr))
 	    (emit-return-pc lra-label)
 	    (note-this-location ,vop :single-value-return)
 	    (without-scheduling ()
@@ -49,9 +62,17 @@
 	   ,nfp-save)
 	  (:save-p :compute-only)))))
     (:none
-     (values 
-      `((inst ba  (make-fixup ',name :assembly-routine)))
-      `()))))
+     (let ((temp (make-symbol "TEMP")))
+       #+nil
+       (values 
+	`((inst ba  (make-fixup ',name :assembly-routine)))
+	`())
+       (values
+	`((inst lr ,temp (make-fixup ',name :assembly-routine))
+	  (inst mtctr ,temp)
+	  (inst bctr))
+	`((:temporary (:scs (non-descriptor-reg) :from (:eval 0) :to (:eval 1))
+		      ,temp)))))))
 
 (def-vm-support-routine generate-return-sequence (style)
   (ecase style
diff --git a/bootfiles/19c/boot-2006-11-1-cross-ppc.lisp b/bootfiles/19c/boot-2006-11-1-cross-ppc.lisp
new file mode 100644
index 0000000000000000000000000000000000000000..ac3c5f13c958513e0bd1c652d267657936ff25ea
--- /dev/null
+++ b/bootfiles/19c/boot-2006-11-1-cross-ppc.lisp
@@ -0,0 +1,8 @@
+;; This simple file is used to bootstrap the changes that remove the
+;; constraint on the read-only space being in low memory.  This also
+;; means we don't need those linker hacks and adjuster hacks.
+
+
+;; Standard cross-compile script is good enough.
+#+ppc
+(load "target:tools/cross-scripts/cross-ppc-ppc-darwin.lisp")
diff --git a/compiler/ppc/call.lisp b/compiler/ppc/call.lisp
index fd12a05db113a62566869f3fd5fc165f510f5233..ee0dd160bd558e89e7f7040ad1467666feda588c 100644
--- a/compiler/ppc/call.lisp
+++ b/compiler/ppc/call.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ppc/call.lisp,v 1.12 2006/02/08 01:32:58 rtoy Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ppc/call.lisp,v 1.13 2006/11/02 01:53:17 rtoy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -881,6 +881,7 @@ default-value-8
   (:temporary (:sc any-reg :offset ocfp-offset :from (:argument 2)) old-fp)
   (:temporary (:sc any-reg :offset lra-offset :from (:argument 3)) lra)
 
+  (:temporary (:scs (any-reg) :from :eval) temp)
 
   (:vop-var vop)
 
@@ -901,7 +902,12 @@ default-value-8
 		 number-stack-displacement))))
 
    
-    (inst ba (make-fixup 'tail-call-variable :assembly-routine))))
+    #+nil
+    (inst ba (make-fixup 'tail-call-variable :assembly-routine))
+    (progn
+      (inst lr temp (make-fixup 'tail-call-variable :assembly-routine))
+      (inst mtctr temp)
+      (inst bctr))))
 
 
 ;;;; Unknown values return:
@@ -1008,6 +1014,7 @@ default-value-8
   (:temporary (:sc descriptor-reg :offset a0-offset) a0)
   (:temporary (:scs (interior-reg)) lip)
 
+  (:temporary (:scs (any-reg) :from (:eval 1)) temp)
 
   (:vop-var vop)
 
@@ -1037,7 +1044,12 @@ default-value-8
       (move lra lra-arg)
       (move vals vals-arg)
       (move nvals nvals-arg)
-      (inst ba (make-fixup 'return-multiple :assembly-routine)))
+      #+nil
+      (inst ba (make-fixup 'return-multiple :assembly-routine))
+      (progn
+	(inst lr temp (make-fixup 'return-multiple :assembly-routine))
+	(inst mtctr temp)
+	(inst bctr)))
     (trace-table-entry trace-table-normal)))
 
 
diff --git a/compiler/ppc/parms.lisp b/compiler/ppc/parms.lisp
index e4d30082e72f100345056bafd375107e2310a4ee..f59545dff4cd33843851b4a7ba81903a62872499 100644
--- a/compiler/ppc/parms.lisp
+++ b/compiler/ppc/parms.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ppc/parms.lisp,v 1.13 2006/08/18 02:26:29 rtoy Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ppc/parms.lisp,v 1.14 2006/11/02 01:53:17 rtoy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -150,7 +150,7 @@
 
 ;;; Where to put the different spaces.
 ;;; 
-(defparameter target-read-only-space-start #x01000000)
+(defparameter target-read-only-space-start #x04000000)
 (defparameter target-static-space-start    #x10000000)
 (defparameter target-dynamic-space-start   #x40000000)
 ;; We're sticking this at the end of the static space for now for the
diff --git a/lisp/Config.ppc_darwin b/lisp/Config.ppc_darwin
index cef8a3e99b866037b47cc4276e7a899463dc4fb5..843634f8c15ce669f399a8ef13a2e5cf76526ea4 100644
--- a/lisp/Config.ppc_darwin
+++ b/lisp/Config.ppc_darwin
@@ -36,9 +36,12 @@ OS_SRC = ppc-darwin-dlshim.c os-common.c Darwin-os.c e_rem_pio2.c k_rem_pio2.c
 # The seg1addr should be somewhere above our spaces.  This is where
 # the C runtime code goes, I think.
 
-OS_LINK_FLAGS = -g -dynamic -Wl,-sectcreate,CMUCLRO,core,/dev/null -Wl,-segaddr,CMUCLRO,0x01000000 -Wl,-seg1addr,0x1a000000
+# OS_LINK_FLAGS = -g -dynamic -Wl,-sectcreate,CMUCLRO,core,/dev/null -Wl,-segaddr,CMUCLRO,0x01000000 -Wl,-seg1addr,0x1a000000
 OS_LIBS = -lSystem -lc -lm
 all: adjustlisp
+#adjustlisp: lisp darwin-lispadjuster
+#	./darwin-lispadjuster lisp
 adjustlisp: lisp darwin-lispadjuster
-	./darwin-lispadjuster lisp
+	true
+
 darwin-lispadjuster: darwin-lispadjuster.c
diff --git a/lisp/ppc-validate.h b/lisp/ppc-validate.h
index d395a0b8f74f3dabcc03100e8498b800fa1d4c5a..0ff41038a91158d26ac3ae2ce4d12cfea47574de 100644
--- a/lisp/ppc-validate.h
+++ b/lisp/ppc-validate.h
@@ -1,6 +1,6 @@
 /*
 
- $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/ppc-validate.h,v 1.7 2006/01/18 15:21:26 rtoy Exp $
+ $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/ppc-validate.h,v 1.8 2006/11/02 01:53:17 rtoy Exp $
 
  This code was written as part of the CMU Common Lisp project at
  Carnegie Mellon University, and has been placed in the public domain.
@@ -37,7 +37,7 @@
  * fixed, the read-only space can be moved.  (The BA instruction is
  * used to jump to assembly routines.)
  */
-#define READ_ONLY_SPACE_START	(0x01000000)
+#define READ_ONLY_SPACE_START	(0x04000000)
 #define READ_ONLY_SPACE_SIZE	(0x07ff8000)	/* 128 MB, almost */
 
 #define STATIC_SPACE_START  	(0x10000000)