Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 |
| 9 | # |
| 10 | |
Paul Mundt | cf00e20 | 2006-12-07 17:00:32 +0900 | [diff] [blame] | 11 | MKIMAGE := $(srctree)/scripts/mkuboot.sh |
| 12 | |
| 13 | # |
| 14 | # Assign safe dummy values if these variables are not defined, |
| 15 | # in order to suppress error message. |
| 16 | # |
| 17 | CONFIG_PAGE_OFFSET ?= 0x80000000 |
| 18 | CONFIG_MEMORY_START ?= 0x0c000000 |
| 19 | CONFIG_BOOT_LINK_OFFSET ?= 0x00800000 |
| 20 | CONFIG_ZERO_PAGE_OFFSET ?= 0x00001000 |
Paul Mundt | d27e085 | 2008-07-29 09:15:01 +0900 | [diff] [blame] | 21 | CONFIG_ENTRY_OFFSET ?= 0x00001000 |
Paul Mundt | cf00e20 | 2006-12-07 17:00:32 +0900 | [diff] [blame] | 22 | |
Magnus Damm | 9e24c7e | 2009-10-26 10:12:39 +0000 | [diff] [blame] | 23 | suffix-y := bin |
Paul Mundt | c7b16ef | 2010-01-13 13:29:19 +0900 | [diff] [blame^] | 24 | suffix-$(CONFIG_KERNEL_GZIP) := gz |
| 25 | suffix-$(CONFIG_KERNEL_BZIP2) := bz2 |
| 26 | suffix-$(CONFIG_KERNEL_LZMA) := lzma |
| 27 | suffix-$(CONFIG_KERNEL_LZO) := lzo |
Paul Mundt | ef9b542 | 2009-07-21 17:24:36 +0900 | [diff] [blame] | 28 | |
Paul Mundt | c7b16ef | 2010-01-13 13:29:19 +0900 | [diff] [blame^] | 29 | targets := zImage vmlinux.srec romImage uImage uImage.srec uImage.gz \ |
| 30 | uImage.bz2 uImage.lzma uImage.lzo uImage.bin |
| 31 | extra-y += vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2 vmlinux.bin.lzma \ |
| 32 | vmlinux.bin.lzo |
Magnus Damm | 3c92832 | 2009-07-29 15:04:05 +0000 | [diff] [blame] | 33 | subdir- := compressed romimage |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
| 35 | $(obj)/zImage: $(obj)/compressed/vmlinux FORCE |
| 36 | $(call if_changed,objcopy) |
Paul Mundt | cf00e20 | 2006-12-07 17:00:32 +0900 | [diff] [blame] | 37 | @echo ' Kernel: $@ is ready' |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
| 39 | $(obj)/compressed/vmlinux: FORCE |
| 40 | $(Q)$(MAKE) $(build)=$(obj)/compressed $@ |
| 41 | |
Magnus Damm | 3c92832 | 2009-07-29 15:04:05 +0000 | [diff] [blame] | 42 | $(obj)/romImage: $(obj)/romimage/vmlinux FORCE |
| 43 | $(call if_changed,objcopy) |
| 44 | @echo ' Kernel: $@ is ready' |
| 45 | |
| 46 | $(obj)/romimage/vmlinux: $(obj)/zImage FORCE |
| 47 | $(Q)$(MAKE) $(build)=$(obj)/romimage $@ |
| 48 | |
Yoshihiro Shimoda | 2f47f44 | 2009-03-10 15:49:54 +0900 | [diff] [blame] | 49 | KERNEL_MEMORY := 0x00000000 |
| 50 | ifeq ($(CONFIG_PMB_FIXED),y) |
| 51 | KERNEL_MEMORY := $(shell /bin/bash -c 'printf "0x%08x" \ |
| 52 | $$[$(CONFIG_MEMORY_START) & 0x1fffffff]') |
Chris Smith | 664718a | 2008-09-05 16:24:13 +0900 | [diff] [blame] | 53 | endif |
Yoshihiro Shimoda | 2f47f44 | 2009-03-10 15:49:54 +0900 | [diff] [blame] | 54 | ifeq ($(CONFIG_29BIT),y) |
| 55 | KERNEL_MEMORY := $(shell /bin/bash -c 'printf "0x%08x" \ |
| 56 | $$[$(CONFIG_MEMORY_START)]') |
| 57 | endif |
| 58 | |
| 59 | KERNEL_LOAD := $(shell /bin/bash -c 'printf "0x%08x" \ |
| 60 | $$[$(CONFIG_PAGE_OFFSET) + \ |
| 61 | $(KERNEL_MEMORY) + \ |
| 62 | $(CONFIG_ZERO_PAGE_OFFSET)]') |
Thomas Betker | 453ec9c | 2007-11-30 18:22:10 +0900 | [diff] [blame] | 63 | |
Paul Mundt | 66b5bf4 | 2008-03-14 17:19:38 +0900 | [diff] [blame] | 64 | KERNEL_ENTRY := $(shell /bin/bash -c 'printf "0x%08x" \ |
Paul Mundt | 6fc5153 | 2007-12-17 16:08:49 +0900 | [diff] [blame] | 65 | $$[$(CONFIG_PAGE_OFFSET) + \ |
Yoshihiro Shimoda | 2f47f44 | 2009-03-10 15:49:54 +0900 | [diff] [blame] | 66 | $(KERNEL_MEMORY) + \ |
Yoshihiro Shimoda | 82cb1f6 | 2008-07-23 16:49:06 +0900 | [diff] [blame] | 67 | $(CONFIG_ZERO_PAGE_OFFSET) + $(CONFIG_ENTRY_OFFSET)]') |
Paul Mundt | cf00e20 | 2006-12-07 17:00:32 +0900 | [diff] [blame] | 68 | |
| 69 | quiet_cmd_uimage = UIMAGE $@ |
| 70 | cmd_uimage = $(CONFIG_SHELL) $(MKIMAGE) -A sh -O linux -T kernel \ |
Paul Mundt | ef9b542 | 2009-07-21 17:24:36 +0900 | [diff] [blame] | 71 | -C $(2) -a $(KERNEL_LOAD) -e $(KERNEL_ENTRY) \ |
Paul Mundt | cf00e20 | 2006-12-07 17:00:32 +0900 | [diff] [blame] | 72 | -n 'Linux-$(KERNELRELEASE)' -d $< $@ |
| 73 | |
Thomas Betker | 453ec9c | 2007-11-30 18:22:10 +0900 | [diff] [blame] | 74 | $(obj)/vmlinux.bin: vmlinux FORCE |
| 75 | $(call if_changed,objcopy) |
| 76 | |
| 77 | $(obj)/vmlinux.bin.gz: $(obj)/vmlinux.bin FORCE |
| 78 | $(call if_changed,gzip) |
| 79 | |
Paul Mundt | ef9b542 | 2009-07-21 17:24:36 +0900 | [diff] [blame] | 80 | $(obj)/vmlinux.bin.bz2: $(obj)/vmlinux.bin FORCE |
| 81 | $(call if_changed,bzip2) |
| 82 | |
| 83 | $(obj)/vmlinux.bin.lzma: $(obj)/vmlinux.bin FORCE |
| 84 | $(call if_changed,lzma) |
| 85 | |
Paul Mundt | c7b16ef | 2010-01-13 13:29:19 +0900 | [diff] [blame^] | 86 | $(obj)/vmlinux.bin.lzo: $(obj)/vmlinux.bin FORCE |
| 87 | $(call if_changed,lzo) |
| 88 | |
Paul Mundt | ef9b542 | 2009-07-21 17:24:36 +0900 | [diff] [blame] | 89 | $(obj)/uImage.bz2: $(obj)/vmlinux.bin.bz2 |
| 90 | $(call if_changed,uimage,bzip2) |
| 91 | |
| 92 | $(obj)/uImage.gz: $(obj)/vmlinux.bin.gz |
| 93 | $(call if_changed,uimage,gzip) |
| 94 | |
| 95 | $(obj)/uImage.lzma: $(obj)/vmlinux.bin.lzma |
| 96 | $(call if_changed,uimage,lzma) |
| 97 | |
Paul Mundt | c7b16ef | 2010-01-13 13:29:19 +0900 | [diff] [blame^] | 98 | $(obj)/uImage.lzo: $(obj)/vmlinux.bin.lzo |
| 99 | $(call if_changed,uimage,lzo) |
| 100 | |
Magnus Damm | 9e24c7e | 2009-10-26 10:12:39 +0000 | [diff] [blame] | 101 | $(obj)/uImage.bin: $(obj)/vmlinux.bin |
| 102 | $(call if_changed,uimage,none) |
| 103 | |
Paul Mundt | cf00e20 | 2006-12-07 17:00:32 +0900 | [diff] [blame] | 104 | OBJCOPYFLAGS_vmlinux.srec := -I binary -O srec |
| 105 | $(obj)/vmlinux.srec: $(obj)/compressed/vmlinux |
| 106 | $(call if_changed,objcopy) |
| 107 | |
| 108 | OBJCOPYFLAGS_uImage.srec := -I binary -O srec |
| 109 | $(obj)/uImage.srec: $(obj)/uImage |
| 110 | $(call if_changed,objcopy) |
| 111 | |
Paul Mundt | ef9b542 | 2009-07-21 17:24:36 +0900 | [diff] [blame] | 112 | $(obj)/uImage: $(obj)/uImage.$(suffix-y) |
| 113 | @ln -sf $(notdir $<) $@ |
| 114 | @echo ' Image $@ is ready' |
| 115 | |
| 116 | export CONFIG_PAGE_OFFSET CONFIG_MEMORY_START CONFIG_BOOT_LINK_OFFSET \ |
| 117 | CONFIG_ZERO_PAGE_OFFSET CONFIG_ENTRY_OFFSET KERNEL_MEMORY suffix-y |