diff --git a/bootfiles/20b/boot-2010-11-1-cross.lisp b/bootfiles/20b/boot-2010-11-1-cross.lisp
new file mode 100644
index 0000000000000000000000000000000000000000..7bac0ca907febea2adab3f3d7f14628b2187e1bf
--- /dev/null
+++ b/bootfiles/20b/boot-2010-11-1-cross.lisp
@@ -0,0 +1,10 @@
+;;; Adding slots to the backend requires a cross-compile.
+;;;
+;;; Answer CLOBBER-IT for the restart about changing the size of the
+;;; backend structure.
+
+#+x86
+(load "target:tools/cross-scripts/cross-x86-x86")
+
+#+sparc
+(load "target:tools/cross-scripts/cross-sparc-sparc")
diff --git a/code/exports.lisp b/code/exports.lisp
index 30127d0db97c34010deee16c550f1dad96184b3d..47f9590a668d3b813ceaa6f2075d3221511ac892 100644
--- a/code/exports.lisp
+++ b/code/exports.lisp
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/exports.lisp,v 1.301 2010/09/17 23:29:00 rtoy Rel $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/exports.lisp,v 1.302 2010/11/10 19:51:23 rtoy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -1666,7 +1666,10 @@
 	   "BACKEND-ASSEMBLER-RESOURCES" "BACKEND-BYTE-ORDER"
 	   "BACKEND-DISASSEM-PARAMS" "BACKEND-FASL-FILE-IMPLEMENTATION"
 	   "BACKEND-FASL-FILE-TYPE" "BACKEND-FASL-FILE-VERSION"
-	   "BACKEND-FEATURES" "BACKEND-INFO-ENVIRONMENT"
+	   "BACKEND-FEATURES"
+	   "BACKEND-FOREIGN-LINKAGE-SPACE-START"
+	   "BACKEND-FOREIGN-LINKAGE-ENTRY-SIZE"
+	   "BACKEND-INFO-ENVIRONMENT"
 	   "BACKEND-INSTRUCTION-FLAVORS" "BACKEND-INSTRUCTION-FORMATS"
 	   "BACKEND-NAME" "BACKEND-REGISTER-SAVE-PENALTY"
 	   "BACKEND-SPECIAL-ARG-TYPES" "BACKEND-VERSION" "BIND" "BRANCH"
diff --git a/compiler/backend.lisp b/compiler/backend.lisp
index 3a154e2ad9b99a19152f21fc180c3beb1d9ffa22..5031ccced54892f22ce2621aa9d4a00f859385df 100644
--- a/compiler/backend.lisp
+++ b/compiler/backend.lisp
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/backend.lisp,v 1.35 2010/04/20 17:57:46 rtoy Rel $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/backend.lisp,v 1.36 2010/11/10 19:51:24 rtoy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -26,6 +26,8 @@
 	  backend-assembler-resources backend-special-arg-types
 	  backend-disassem-params backend-internal-errors
 	  backend-assembler-params backend-page-size
+	  backend-foreign-linkage-space-start
+	  backend-foreign-linkage-entry-size
 	  
 	  ;; The various backends need to call these support routines
 	  def-vm-support-routine make-stack-pointer-tn primitive-type
@@ -226,7 +228,12 @@
   (assembler-params nil :type t)
 
   ;; The maximum number of bytes per page on this system.  Used by genesis.
-  (page-size 0 :type index))
+  (page-size 0 :type index)
+
+  ;; The foreign linkage space start and size
+
+  (foreign-linkage-space-start 0 :type (unsigned-byte 32))
+  (foreign-linkage-entry-size 0 :type index))
 
 
 (defprinter backend
diff --git a/compiler/dump.lisp b/compiler/dump.lisp
index c6286f7eebd57c15d605b87eec0193bc0cc4072a..b42d4a8d6bb3c316b1fad1b70a2f474dc5fd97f5 100644
--- a/compiler/dump.lisp
+++ b/compiler/dump.lisp
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/dump.lisp,v 1.88 2010/10/12 21:52:44 rtoy Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/dump.lisp,v 1.89 2010/11/10 19:51:24 rtoy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -1634,15 +1634,24 @@
 	   (declare (type (integer 1 #.most-positive-fixnum)
 			  bytes-per-element)
 		    (type unsigned-byte elements))
-	   (dotimes (index elements)
-	     (let ((element (aref data-vector index))
-		   (new-element 0))
-	       (dotimes (i bytes-per-element)
-		 (setf new-element
-		       (logior (ash new-element vm:byte-bits)
-			       (ldb (byte vm:byte-bits 0) element)))
-		 (setf element (ash element (- vm:byte-bits))))
-	       (setf (aref result index) new-element)))
+	   (if (stringp data-vector)
+	       ;; Don't swap string bytes.  We get here only if we're
+	       ;; cross-compiling from one arch to a different endian
+	       ;; arch.  To be able to load the fasls, we need to keep
+	       ;; strings in the native format.  When genesis is done,
+	       ;; genesis will swap string bytes when creating the
+	       ;; core so that the bytes are in the correct order.
+	       (dotimes (index elements)
+		 (setf (aref result index) (char-code (aref data-vector index))))
+	       (dotimes (index elements)
+		 (let ((element (aref data-vector index))
+		       (new-element 0))
+		   (dotimes (i bytes-per-element)
+		     (setf new-element
+			   (logior (ash new-element vm:byte-bits)
+				   (ldb (byte vm:byte-bits 0) element)))
+		     (setf element (ash element (- vm:byte-bits))))
+		   (setf (aref result index) new-element))))
 	   (dump-bytes result bytes file)))
 	(t
 	 (let* ((elements-per-byte (/ vm:byte-bits element-size))