All of lore.kernel.org
 help / color / mirror / Atom feed
From: Andi Kleen <andi@firstfloor.org>
To: mingo@elte.hu, sam@ravnborg.org, tglx@linutronix.de,
	linux-kernel@vger.kernel.org
Subject: [PATCH] Fix 32bit build for git-x86
Date: Tue, 15 Jan 2008 02:04:49 +0100	[thread overview]
Message-ID: <20080115010449.GA5521@basil.nowhere.org> (raw)


Fixes the 32build here with git-x86 (tip 2f42671697ea9abc7d10ea7f663d6ef6e8ec6358)

Fix git-x86 build 

Otherwise

make[3]: Nothing to be done for `vmlinux'.
KBUILD_IMAGE := arch/x86/boot/bzImage
make[2]: KBUILD_IMAGE: Command not found
make[2]: *** [all] Error 127

Signed-off-by: Andi Kleen <ak@suse.de>

Index: linux/arch/x86/Makefile
===================================================================
--- linux.orig/arch/x86/Makefile
+++ linux/arch/x86/Makefile
@@ -211,7 +211,8 @@ PHONY += zImage bzImage compressed zlilo
 all: bzImage
 
 # KBUILD_IMAGE specify target image being built
-		    KBUILD_IMAGE := $(boot)/bzImage
+KBUILD_IMAGE := $(boot)/bzImage
+
 zImage zlilo zdisk: KBUILD_IMAGE := arch/x86/boot/zImage
 
 zImage bzImage: vmlinux

             reply	other threads:[~2008-01-15  1:05 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-01-15  1:04 Andi Kleen [this message]
2008-01-15  7:45 ` [PATCH] Fix 32bit build for git-x86 Sam Ravnborg
2008-01-15  7:56   ` Junio C Hamano
2008-01-15  8:53   ` Ingo Molnar
2008-01-15  9:00 ` Ingo Molnar

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20080115010449.GA5521@basil.nowhere.org \
    --to=andi@firstfloor.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@elte.hu \
    --cc=sam@ravnborg.org \
    --cc=tglx@linutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.