* [PATCH] microblaze: Removed U-Boot image creation from simpleImage rule
@ 2011-08-04 15:41 Eli Billauer
2011-08-15 12:16 ` Michal Simek
0 siblings, 1 reply; 3+ messages in thread
From: Eli Billauer @ 2011-08-04 15:41 UTC (permalink / raw)
To: LKML
The simpleImage rule used to create a U-boot image as well, resulting in
a build error if the mkimage utility wasn't set up. A line in the Makefile
was removed, so "make simpleImage.(something)" now does what one should
expect.
---
arch/microblaze/boot/Makefile | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/arch/microblaze/boot/Makefile b/arch/microblaze/boot/Makefile
index 4c4e58e..2c8a2c9 100644
--- a/arch/microblaze/boot/Makefile
+++ b/arch/microblaze/boot/Makefile
@@ -44,7 +44,6 @@ quiet_cmd_uimage = UIMAGE $@.ub
$(obj)/simpleImage.%: vmlinux FORCE
$(call if_changed,cp,.unstrip)
$(call if_changed,objcopy)
- $(call if_changed,uimage)
$(call if_changed,strip)
@echo 'Kernel: $@ is ready' ' (#'`cat .version`')'
--
1.7.2.2
--
Web: http://www.billauer.co.il
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] microblaze: Removed U-Boot image creation from simpleImage rule
2011-08-04 15:41 [PATCH] microblaze: Removed U-Boot image creation from simpleImage rule Eli Billauer
@ 2011-08-15 12:16 ` Michal Simek
2011-08-15 19:44 ` Eli Billauer
0 siblings, 1 reply; 3+ messages in thread
From: Michal Simek @ 2011-08-15 12:16 UTC (permalink / raw)
To: Eli Billauer; +Cc: LKML
Eli Billauer wrote:
> The simpleImage rule used to create a U-boot image as well, resulting in
> a build error if the mkimage utility wasn't set up. A line in the Makefile
> was removed, so "make simpleImage.(something)" now does what one should
> expect.
Agree that we should remove it but that patch is incomplete.
Please do these two more changes.
1. Remove uimage generation for linux.bin - the same reason as you describe
2a. Add support for linux.bin.ub or uImage if you like
2b. Add support for simpleImage.%.ub
I don't want to lose possibility to create u-boot formats.
Thanks,
Michal
--
Michal Simek, Ing. (M.Eng)
PetaLogix - Linux Solutions for a Reconfigurable World
w: www.petalogix.com p: +61-7-30090663,+42-0-721842854 f: +61-7-30090663
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] microblaze: Removed U-Boot image creation from simpleImage rule
2011-08-15 12:16 ` Michal Simek
@ 2011-08-15 19:44 ` Eli Billauer
0 siblings, 0 replies; 3+ messages in thread
From: Eli Billauer @ 2011-08-15 19:44 UTC (permalink / raw)
To: michal.simek; +Cc: LKML
Sorry, I didn't notice that simpleImage.% was the only target to get
uImage as well.
In this patch there is no simpleImage.%.ub rule, as I got messed up with
wildcard issues, and I didn't see any point in working on resolving
them. In practice, I suppose one wants either an U-Boot image or a
simpleImage. In case both are wanted, it's as simple as mention both in
the make target.
Patch follows (I made a few other changes as well).
Eli
diff --git a/arch/microblaze/Makefile b/arch/microblaze/Makefile
index b23c40e..1dfaf22 100644
--- a/arch/microblaze/Makefile
+++ b/arch/microblaze/Makefile
@@ -70,7 +70,7 @@ export MMU DTB
all: linux.bin
# With make 3.82 we cannot mix normal and wildcard targets
-BOOT_TARGETS1 = linux.bin linux.bin.gz
+BOOT_TARGETS1 = linux.bin linux.bin.gz uImage
BOOT_TARGETS2 = simpleImage.%
archclean:
@@ -85,8 +85,8 @@ define archhelp
echo '* linux.bin - Create raw binary'
echo ' linux.bin.gz - Create compressed raw binary'
echo ' simpleImage.<dt> - ELF image with $(arch)/boot/dts/<dt>.dts
linked in'
- echo ' - stripped elf with fdt blob'
- echo ' simpleImage.<dt>.unstrip - full ELF image with fdt blob'
+ echo ' - stripped elf with fdt blob, as well as
unstripped'
+ echo ' uImage - Image for U-Boot'
echo ' *_defconfig - Select default config from
arch/microblaze/configs'
echo ''
echo ' Targets with <dt> embed a device tree blob inside the image'
@@ -96,4 +96,4 @@ define archhelp
echo ' (minus the .dts extension).'
endef
-MRPROPER_FILES += $(boot)/simpleImage.*
+MRPROPER_FILES += $(boot)/simpleImage.* $(boot)/uImage*
diff --git a/arch/microblaze/boot/Makefile b/arch/microblaze/boot/Makefile
index 4c4e58e..f7426eb 100644
--- a/arch/microblaze/boot/Makefile
+++ b/arch/microblaze/boot/Makefile
@@ -6,7 +6,7 @@ MKIMAGE := $(srctree)/scripts/mkuboot.sh
obj-y += linked_dtb.o
-targets := linux.bin linux.bin.gz simpleImage.%
+targets := linux.bin linux.bin.gz simpleImage.% uImage
OBJCOPYFLAGS := -O binary
@@ -21,7 +21,6 @@ endif
$(obj)/linux.bin: vmlinux FORCE
$(call if_changed,objcopy)
- $(call if_changed,uimage)
@echo 'Kernel: $@ is ready' ' (#'`cat .version`')'
$(obj)/linux.bin.gz: $(obj)/linux.bin FORCE
@@ -43,11 +42,13 @@ quiet_cmd_uimage = UIMAGE $@.ub
$(obj)/simpleImage.%: vmlinux FORCE
$(call if_changed,cp,.unstrip)
- $(call if_changed,objcopy)
- $(call if_changed,uimage)
$(call if_changed,strip)
@echo 'Kernel: $@ is ready' ' (#'`cat .version`')'
+$(obj)/uImage: vmlinux FORCE
+ $(call if_changed,objcopy)
+ $(call if_changed,uimage)
+ @echo 'Kernel: $@ is ready' ' (#'`cat .version`')'
# Rule to build device tree blobs
DTC_FLAGS := -p 1024
Michal Simek wrote:
> Eli Billauer wrote:
>> The simpleImage rule used to create a U-boot image as well, resulting in
>> a build error if the mkimage utility wasn't set up. A line in the
>> Makefile
>> was removed, so "make simpleImage.(something)" now does what one
>> should expect.
>
> Agree that we should remove it but that patch is incomplete.
> Please do these two more changes.
> 1. Remove uimage generation for linux.bin - the same reason as you
> describe
> 2a. Add support for linux.bin.ub or uImage if you like
> 2b. Add support for simpleImage.%.ub
>
> I don't want to lose possibility to create u-boot formats.
>
> Thanks,
> Michal
>
--
Web: http://www.billauer.co.il
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-08-15 19:40 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-04 15:41 [PATCH] microblaze: Removed U-Boot image creation from simpleImage rule Eli Billauer
2011-08-15 12:16 ` Michal Simek
2011-08-15 19:44 ` Eli Billauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox