On Mon, Feb 09, 2004 at 11:39:47AM -0500, Pratik Solanki wrote:
Attached are 2 patchesOK - but see minor comemnt.
asm-boot.patch - Fixes include path for build.c so that it finds asm/boot.h. /usr/include/asm/boot.h may not be present when cross-compiling on a non-Linux machine.
shell.patch - Use $(CONFIG_SHELL) instead of sh.OK
Sam
===== arch/i386/boot/Makefile 1.28 vs edited =====Do not use absolute paths here.
--- 1.28/arch/i386/boot/Makefile Thu Sep 11 06:01:23 2003
+++ edited/arch/i386/boot/Makefile Thu Feb 5 15:56:28 2004
@@ -31,6 +31,8 @@
host-progs := tools/build
+HOSTCFLAGS_build.o := -I$(TOPDIR)/include
+HOSTCFLAGS_build.o := -IincludeIs the preferred way to do it.