blob: dbc9b1bd72f0b7d3c986194e9581ab9948810b7b [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001# SPDX-License-Identifier: GPL-2.0-only
2targets := Image zImage uImage
3targets += $(dtb-y)
4
5$(obj)/Image: vmlinux FORCE
6 $(call if_changed,objcopy)
7 @echo ' Kernel: $@ is ready'
8
9compress-$(CONFIG_KERNEL_GZIP) = gzip
10compress-$(CONFIG_KERNEL_LZO) = lzo
11compress-$(CONFIG_KERNEL_LZMA) = lzma
12compress-$(CONFIG_KERNEL_XZ) = xzkern
13compress-$(CONFIG_KERNEL_LZ4) = lz4
14
15$(obj)/zImage: $(obj)/Image FORCE
16 $(call if_changed,$(compress-y))
17 @echo ' Kernel: $@ is ready'
18
19UIMAGE_ARCH = sandbox
20UIMAGE_COMPRESSION = $(compress-y)
21UIMAGE_LOADADDR = $(shell $(NM) vmlinux | awk '$$NF == "_start" {print $$1}')
22
23$(obj)/uImage: $(obj)/zImage
24 $(call if_changed,uimage)
25 @echo 'Image: $@ is ready'