diff options
author | Max Filippov <jcmvbkbc@gmail.com> | 2016-12-25 15:58:57 +0300 |
---|---|---|
committer | Max Filippov <jcmvbkbc@gmail.com> | 2017-03-01 23:32:50 +0300 |
commit | 9a736fcb096b43b68af8329eb12abc8256dceaba (patch) | |
tree | 1025c3ae5c1b1b68051a13e2052daee14a1db755 /arch/xtensa/boot/boot-uboot/Makefile | |
parent | 4ab18701c66552944188dbcd0ce0012729baab84 (diff) | |
download | linux-9a736fcb096b43b68af8329eb12abc8256dceaba.tar.xz |
xtensa: clean up bootable image build targets
Currently xtensa uses 'zImage' as a synonym of 'all', but in fact xtensa
supports three targets: 'Image' (ELF image with reset vector), 'zImage'
(compressed redboot image) and 'uImage' (U-Boot image).
Provide separate 'Image', 'zImage' and 'uImage' make targets that only
build corresponding image type. Make 'all' build all images appropriate
for a platform.
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Diffstat (limited to 'arch/xtensa/boot/boot-uboot/Makefile')
-rw-r--r-- | arch/xtensa/boot/boot-uboot/Makefile | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/arch/xtensa/boot/boot-uboot/Makefile b/arch/xtensa/boot/boot-uboot/Makefile deleted file mode 100644 index 0f4c417b4196..000000000000 --- a/arch/xtensa/boot/boot-uboot/Makefile +++ /dev/null @@ -1,14 +0,0 @@ -# -# This file is subject to the terms and conditions of the GNU General Public -# License. See the file "COPYING" in the main directory of this archive -# for more details. -# - -UIMAGE_LOADADDR = $(CONFIG_KERNEL_LOAD_ADDRESS) -UIMAGE_COMPRESSION = gzip - -$(obj)/../uImage: vmlinux.bin.gz FORCE - $(call if_changed,uimage) - $(Q)$(kecho) ' Kernel: $@ is ready' - -zImage: $(obj)/../uImage |