On Mon, 30 Aug 2010 14:54:55 +0000 Jonathan Haws <[email protected]> wrote:
> I just did a git pull on the linux-2.6-denx repository and am having > the same results. I believe I should be at 2.6.36-rc3. Is there a way > I can tell by looking at my source? Simply run 'head Makefile'. Ah, the master branch of the linux-2.6-denx repo hasn't been updated yet and is still at 2.6.36-rc1. Just use the attached patch to fix the issue in the current master branch. Or you can check out 'kernel.org' branch to get 2.6.36-rc3 mainline kernel source. Best regards, Anatolij -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49-8142-66989-0 Fax: +49-8142-66989-80 Email: [email protected]
>From a08ca9e0b038369e956d156469f1c5682ff92ab0 Mon Sep 17 00:00:00 2001 From: Anatolij Gustschin <[email protected]> Date: Mon, 16 Aug 2010 10:07:16 +0200 Subject: [PATCH] powerpc: fix typo in uImage target Commit e32e78c5ee8aadef020fbaecbe6fb741ed9029fd (powerpc: fix build with make 3.82) introduced a typo in uImage target and broke building uImage: make: *** No rule to make target `uImage'. Stop. Signed-off-by: Anatolij Gustschin <[email protected]> Cc: stable <[email protected]> --- arch/powerpc/Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/powerpc/Makefile b/arch/powerpc/Makefile index e3ea151..b7212b6 100644 --- a/arch/powerpc/Makefile +++ b/arch/powerpc/Makefile @@ -164,7 +164,7 @@ drivers-$(CONFIG_OPROFILE) += arch/powerpc/oprofile/ all: zImage # With make 3.82 we cannot mix normal and wildcard targets -BOOT_TARGETS1 := zImage zImage.initrd uImaged +BOOT_TARGETS1 := zImage zImage.initrd uImage BOOT_TARGETS2 := zImage% dtbImage% treeImage.% cuImage.% simpleImage.% PHONY += $(BOOT_TARGETS1) $(BOOT_TARGETS2) -- 1.7.0.4
_______________________________________________ eldk mailing list [email protected] http://lists.denx.de/mailman/listinfo/eldk
