diff options
author | Jason Wu <huanyu@xilinx.com> | 2013-08-21 07:10:32 +0200 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2013-09-03 16:31:17 +0200 |
commit | ec2eba55f0c0e74dd39aca14dcc597583cf1eb67 (patch) | |
tree | 9aab7d668ee1227c175c8bd2ccbb86eb9e5806c2 /arch/microblaze/Makefile | |
parent | dcd454af221920990cef8000ef1830c94ef846f9 (diff) | |
download | linux-ec2eba55f0c0e74dd39aca14dcc597583cf1eb67.tar.gz linux-ec2eba55f0c0e74dd39aca14dcc597583cf1eb67.tar.bz2 linux-ec2eba55f0c0e74dd39aca14dcc597583cf1eb67.zip |
microblaze: Add linux.bin.ub target
Currently the linux.bin target creates both linux.bin and linux.bin.ub.
Add linux.bin.ub as separate target to generate linux.bin.ub.
Signed-off-by: Jason Wu <huanyu@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'arch/microblaze/Makefile')
-rw-r--r-- | arch/microblaze/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/microblaze/Makefile b/arch/microblaze/Makefile index 0a603d3ecf24..40350a3c24e9 100644 --- a/arch/microblaze/Makefile +++ b/arch/microblaze/Makefile @@ -72,7 +72,7 @@ all: linux.bin archclean: $(Q)$(MAKE) $(clean)=$(boot) -linux.bin linux.bin.gz: vmlinux +linux.bin linux.bin.gz linux.bin.ub: vmlinux $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ simpleImage.%: vmlinux @@ -81,6 +81,7 @@ simpleImage.%: vmlinux define archhelp echo '* linux.bin - Create raw binary' echo ' linux.bin.gz - Create compressed raw binary' + echo ' linux.bin.ub - Create U-Boot wrapped 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' |