[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

a little problem in debian-amd64-howto



Hi!
	Following your howto, I have made a chroot biarch environment.
	It seems there is a little problem in the howto.
	In "make menuconfig", you put 'ARCH="x86_64"'' after make command,
	but in other places, you put 'ARCH="x86_64"' before make command.
	I found the last way can't work. It seems that it will made a
	i386 kernel instead of a amd64 kernel. Because the kernel
	has been configured as x86_64, the make will fail.( I am
	building a 2.4.24 kernel)

	The following is my patch.

Index: debian-amd64-howto.xml
===================================================================
RCS file: /cvsroot/debian-amd64/doc/debian-amd64-howto/debian-amd64-howto.xml,v
retrieving revision 1.11
diff -u -r1.11 debian-amd64-howto.xml
--- debian-amd64-howto.xml	25 Jan 2004 21:55:53 -0000	1.11
+++ debian-amd64-howto.xml	4 Feb 2004 03:32:23 -0000
@@ -578,9 +578,9 @@
 	</simpara>
 	<para>
 	  <itemizedlist>
-	    <listitem><screen>ARCH="x86_64" make HOSTCC="gcc -m32" dep</screen></listitem>
-	    <listitem><screen>ARCH="x86_64" make HOSTCC="gcc -m32" clean</screen></listitem>
-	    <listitem><screen>ARCH="x86_64" make HOSTCC="gcc -m32" bzImage</screen></listitem>
+	    <listitem><screen>make HOSTCC="gcc -m32" ARCH="x86_64" dep</screen></listitem>
+	    <listitem><screen>make HOSTCC="gcc -m32" ARCH="x86_64" clean</screen></listitem>
+	    <listitem><screen>make HOSTCC="gcc -m32" ARCH="x86_64" bzImage</screen></listitem>
 	  </itemizedlist>
 	</para>
       </sect3>



Reply to: