Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1# SPDX-License-Identifier: GPL-2.0-only
2targets := Image zImage uImage
3
4$(obj)/Image: vmlinux FORCE
5 $(call if_changed,objcopy)
6 @echo ' Kernel: $@ is ready'
7
8compress-$(CONFIG_KERNEL_GZIP) = gzip
9compress-$(CONFIG_KERNEL_LZO) = lzo
10compress-$(CONFIG_KERNEL_LZMA) = lzma
11compress-$(CONFIG_KERNEL_XZ) = xzkern
12compress-$(CONFIG_KERNEL_LZ4) = lz4
13
14$(obj)/zImage: $(obj)/Image FORCE
15 $(call if_changed,$(compress-y))
16 @echo ' Kernel: $@ is ready'
17
18UIMAGE_ARCH = sandbox
19UIMAGE_COMPRESSION = $(compress-y)
20UIMAGE_LOADADDR = $(shell $(NM) vmlinux | awk '$$NF == "_start" {print $$1}')
21
22$(obj)/uImage: $(obj)/zImage
23 $(call if_changed,uimage)
24 @echo 'Image: $@ is ready'