Makefile (7b6ef6e570eab9714f9b2374e0bad179bff99fdd) | Makefile (4e70b646bae578bb51c89204b5b81ef499436482) |
---|---|
1# 2# arch/sh/boot/Makefile 3# 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 6# for more details. 7# 8# Copyright (C) 1999 Stuart Menefy --- 13 unchanged lines hidden (view full) --- 22suffix-y := bin 23suffix-$(CONFIG_KERNEL_GZIP) := gz 24suffix-$(CONFIG_KERNEL_BZIP2) := bz2 25suffix-$(CONFIG_KERNEL_LZMA) := lzma 26suffix-$(CONFIG_KERNEL_XZ) := xz 27suffix-$(CONFIG_KERNEL_LZO) := lzo 28 29targets := zImage vmlinux.srec romImage uImage uImage.srec uImage.gz \ | 1# 2# arch/sh/boot/Makefile 3# 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 6# for more details. 7# 8# Copyright (C) 1999 Stuart Menefy --- 13 unchanged lines hidden (view full) --- 22suffix-y := bin 23suffix-$(CONFIG_KERNEL_GZIP) := gz 24suffix-$(CONFIG_KERNEL_BZIP2) := bz2 25suffix-$(CONFIG_KERNEL_LZMA) := lzma 26suffix-$(CONFIG_KERNEL_XZ) := xz 27suffix-$(CONFIG_KERNEL_LZO) := lzo 28 29targets := zImage vmlinux.srec romImage uImage uImage.srec uImage.gz \ |
30 uImage.bz2 uImage.lzma uImage.xz uImage.lzo uImage.bin \ 31 vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2 vmlinux.bin.lzma \ | 30 uImage.bz2 uImage.lzma uImage.xz uImage.lzo uImage.bin 31extra-y += vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2 vmlinux.bin.lzma \ |
32 vmlinux.bin.xz vmlinux.bin.lzo 33subdir- := compressed romimage 34 35$(obj)/zImage: $(obj)/compressed/vmlinux FORCE 36 $(call if_changed,objcopy) 37 @echo ' Kernel: $@ is ready' 38 39$(obj)/compressed/vmlinux: FORCE --- 35 unchanged lines hidden (view full) --- 75 $(call if_changed,lzma) 76 77$(obj)/vmlinux.bin.xz: $(obj)/vmlinux.bin FORCE 78 $(call if_changed,xzkern) 79 80$(obj)/vmlinux.bin.lzo: $(obj)/vmlinux.bin FORCE 81 $(call if_changed,lzo) 82 | 32 vmlinux.bin.xz vmlinux.bin.lzo 33subdir- := compressed romimage 34 35$(obj)/zImage: $(obj)/compressed/vmlinux FORCE 36 $(call if_changed,objcopy) 37 @echo ' Kernel: $@ is ready' 38 39$(obj)/compressed/vmlinux: FORCE --- 35 unchanged lines hidden (view full) --- 75 $(call if_changed,lzma) 76 77$(obj)/vmlinux.bin.xz: $(obj)/vmlinux.bin FORCE 78 $(call if_changed,xzkern) 79 80$(obj)/vmlinux.bin.lzo: $(obj)/vmlinux.bin FORCE 81 $(call if_changed,lzo) 82 |
83$(obj)/uImage.bz2: $(obj)/vmlinux.bin.bz2 | 83$(obj)/uImage.bz2: $(obj)/vmlinux.bin.bz2 FORCE |
84 $(call if_changed,uimage,bzip2) 85 | 84 $(call if_changed,uimage,bzip2) 85 |
86$(obj)/uImage.gz: $(obj)/vmlinux.bin.gz | 86$(obj)/uImage.gz: $(obj)/vmlinux.bin.gz FORCE |
87 $(call if_changed,uimage,gzip) 88 | 87 $(call if_changed,uimage,gzip) 88 |
89$(obj)/uImage.lzma: $(obj)/vmlinux.bin.lzma | 89$(obj)/uImage.lzma: $(obj)/vmlinux.bin.lzma FORCE |
90 $(call if_changed,uimage,lzma) 91 | 90 $(call if_changed,uimage,lzma) 91 |
92$(obj)/uImage.xz: $(obj)/vmlinux.bin.xz | 92$(obj)/uImage.xz: $(obj)/vmlinux.bin.xz FORCE |
93 $(call if_changed,uimage,xz) 94 | 93 $(call if_changed,uimage,xz) 94 |
95$(obj)/uImage.lzo: $(obj)/vmlinux.bin.lzo | 95$(obj)/uImage.lzo: $(obj)/vmlinux.bin.lzo FORCE |
96 $(call if_changed,uimage,lzo) 97 | 96 $(call if_changed,uimage,lzo) 97 |
98$(obj)/uImage.bin: $(obj)/vmlinux.bin | 98$(obj)/uImage.bin: $(obj)/vmlinux.bin FORCE |
99 $(call if_changed,uimage,none) 100 101OBJCOPYFLAGS_vmlinux.srec := -I binary -O srec | 99 $(call if_changed,uimage,none) 100 101OBJCOPYFLAGS_vmlinux.srec := -I binary -O srec |
102$(obj)/vmlinux.srec: $(obj)/compressed/vmlinux | 102$(obj)/vmlinux.srec: $(obj)/compressed/vmlinux FORCE |
103 $(call if_changed,objcopy) 104 105OBJCOPYFLAGS_uImage.srec := -I binary -O srec | 103 $(call if_changed,objcopy) 104 105OBJCOPYFLAGS_uImage.srec := -I binary -O srec |
106$(obj)/uImage.srec: $(obj)/uImage | 106$(obj)/uImage.srec: $(obj)/uImage FORCE |
107 $(call if_changed,objcopy) 108 109$(obj)/uImage: $(obj)/uImage.$(suffix-y) 110 @ln -sf $(notdir $<) $@ 111 @echo ' Image $@ is ready' 112 113export CONFIG_PAGE_OFFSET CONFIG_MEMORY_START CONFIG_BOOT_LINK_OFFSET \ 114 CONFIG_PHYSICAL_START CONFIG_ZERO_PAGE_OFFSET CONFIG_ENTRY_OFFSET \ 115 KERNEL_MEMORY suffix-y | 107 $(call if_changed,objcopy) 108 109$(obj)/uImage: $(obj)/uImage.$(suffix-y) 110 @ln -sf $(notdir $<) $@ 111 @echo ' Image $@ is ready' 112 113export CONFIG_PAGE_OFFSET CONFIG_MEMORY_START CONFIG_BOOT_LINK_OFFSET \ 114 CONFIG_PHYSICAL_START CONFIG_ZERO_PAGE_OFFSET CONFIG_ENTRY_OFFSET \ 115 KERNEL_MEMORY suffix-y |