2 # arch/blackfin/boot/Makefile
4 # This file is subject to the terms and conditions of the GNU General Public
5 # License. See the file "COPYING" in the main directory of this archive
9 targets
:= uImage uImage.bin uImage.bz2 uImage.gz uImage.lzma uImage.lzo uImage.xip
10 extra-y
+= vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2 vmlinux.bin.lzma vmlinux.bin.lzo vmlinux.bin.xip
12 ifeq ($(CONFIG_RAMKERNEL
),y
)
13 UIMAGE_LOADADDR
= $(CONFIG_BOOT_LOAD
)
14 else # CONFIG_ROMKERNEL must be set
15 UIMAGE_LOADADDR
= $(CONFIG_ROM_BASE
)
17 UIMAGE_ENTRYADDR
= $(shell $(NM
) vmlinux | awk
'$$NF == "__start" {print $$1}')
18 UIMAGE_NAME
= '$(CPU_REV)-$(KERNELRELEASE)'
19 UIMAGE_OPTS-
$(CONFIG_ROMKERNEL
) += -x
21 $(obj
)/vmlinux.bin
: vmlinux FORCE
22 $(call if_changed
,objcopy
)
24 $(obj
)/vmlinux.bin.gz
: $(obj
)/vmlinux.bin FORCE
25 $(call if_changed
,gzip
)
27 $(obj
)/vmlinux.bin.bz2
: $(obj
)/vmlinux.bin FORCE
28 $(call if_changed
,bzip2
)
30 $(obj
)/vmlinux.bin.lzma
: $(obj
)/vmlinux.bin FORCE
31 $(call if_changed
,lzma
)
33 $(obj
)/vmlinux.bin.lzo
: $(obj
)/vmlinux.bin FORCE
34 $(call if_changed
,lzo
)
36 # The mkimage tool wants 64bytes prepended to the image
37 quiet_cmd_mk_bin_xip
= BIN
$@
38 cmd_mk_bin_xip
= ( printf
'%64s' | tr
' ' '\377' ; cat
$< ) > $@
39 $(obj
)/vmlinux.bin.xip
: $(obj
)/vmlinux.bin FORCE
40 $(call if_changed
,mk_bin_xip
)
42 $(obj
)/uImage.bin
: $(obj
)/vmlinux.bin
43 $(call if_changed
,uimage
,none
)
45 $(obj
)/uImage.bz2
: $(obj
)/vmlinux.bin.bz2
46 $(call if_changed
,uimage
,bzip2
)
48 $(obj
)/uImage.gz
: $(obj
)/vmlinux.bin.gz
49 $(call if_changed
,uimage
,gzip
)
51 $(obj
)/uImage.lzma
: $(obj
)/vmlinux.bin.lzma
52 $(call if_changed
,uimage
,lzma
)
54 $(obj
)/uImage.lzo
: $(obj
)/vmlinux.bin.lzo
55 $(call if_changed
,uimage
,lzo
)
57 $(obj
)/uImage.xip
: $(obj
)/vmlinux.bin.xip
58 $(call if_changed
,uimage
,none
)
61 suffix-
$(CONFIG_KERNEL_GZIP
) := gz
62 suffix-
$(CONFIG_KERNEL_BZIP2
) := bz2
63 suffix-
$(CONFIG_KERNEL_LZMA
) := lzma
64 suffix-
$(CONFIG_KERNEL_LZO
) := lzo
65 suffix-
$(CONFIG_ROMKERNEL
) := xip
67 $(obj
)/uImage
: $(obj
)/uImage.
$(suffix-y
)
68 @ln
-sf
$(notdir $<) $@
71 sh
$(srctree
)/$(src
)/install.sh
$(KERNELRELEASE
) $(BOOTIMAGE
) System.map
"$(INSTALL_PATH)"