Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # Makefile for making ELF bootable images for booting on CHRP |
| 2 | # using Open Firmware. |
| 3 | # |
| 4 | # Geert Uytterhoeven September 1997 |
| 5 | # |
| 6 | # Based on coffboot by Paul Mackerras |
| 7 | # Simplified for ppc64 by Todd Inglett |
| 8 | # |
| 9 | # NOTE: this code is built for 32 bit in ELF32 format even though |
| 10 | # it packages a 64 bit kernel. We do this to simplify the |
| 11 | # bootloader and increase compatibility with OpenFirmware. |
| 12 | # |
| 13 | # To this end we need to define BOOTCC, etc, as the tools |
David Gibson | b610b97 | 2007-05-29 15:37:12 +1000 | [diff] [blame] | 14 | # needed to build the 32 bit image. That's normally the same |
| 15 | # compiler for the rest of the kernel, with the -m32 flag added. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | # To make it easier to setup a cross compiler, |
| 17 | # CROSS32_COMPILE is setup as a prefix just like CROSS_COMPILE |
| 18 | # in the toplevel makefile. |
| 19 | |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 20 | all: $(obj)/zImage |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
David Gibson | b610b97 | 2007-05-29 15:37:12 +1000 | [diff] [blame] | 22 | BOOTCFLAGS := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \ |
| 23 | -fno-strict-aliasing -Os -msoft-float -pipe \ |
| 24 | -fomit-frame-pointer -fno-builtin -fPIC -nostdinc \ |
| 25 | -isystem $(shell $(CROSS32CC) -print-file-name=include) |
Olaf Hering | decd300 | 2005-08-08 13:24:38 +1000 | [diff] [blame] | 26 | BOOTAFLAGS := -D__ASSEMBLY__ $(BOOTCFLAGS) -traditional -nostdinc |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
Niels Kristian Bech Jensen | fda7ffd | 2006-07-02 13:02:27 +0200 | [diff] [blame] | 28 | ifeq ($(call cc-option-yn, -fstack-protector),y) |
| 29 | BOOTCFLAGS += -fno-stack-protector |
| 30 | endif |
| 31 | |
Olaf Hering | 7054036 | 2005-10-28 17:46:38 -0700 | [diff] [blame] | 32 | BOOTCFLAGS += -I$(obj) -I$(srctree)/$(obj) |
| 33 | |
Josh Boyer | 869680c | 2007-08-20 07:28:05 -0500 | [diff] [blame] | 34 | $(obj)/4xx.o: BOOTCFLAGS += -mcpu=440 |
David Gibson | 988519a | 2007-05-25 13:19:17 +1000 | [diff] [blame] | 35 | $(obj)/ebony.o: BOOTCFLAGS += -mcpu=440 |
Josh Boyer | 60e4175 | 2007-05-17 04:51:37 +1000 | [diff] [blame] | 36 | |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 37 | zlib := inffast.c inflate.c inftrees.c |
| 38 | zlibheader := inffast.h inffixed.h inflate.h inftrees.h infutil.h |
| 39 | zliblinuxheader := zlib.h zconf.h zutil.h |
| 40 | |
David Gibson | d25a9d6 | 2007-05-04 17:14:13 +1000 | [diff] [blame] | 41 | $(addprefix $(obj)/,$(zlib) gunzip_util.o main.o): \ |
| 42 | $(addprefix $(obj)/,$(zliblinuxheader)) $(addprefix $(obj)/,$(zlibheader)) |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 43 | |
David Gibson | cd197ff | 2007-03-05 14:24:52 +1100 | [diff] [blame] | 44 | src-wlib := string.S crt0.S stdio.c main.c flatdevtree.c flatdevtree_misc.c \ |
David Gibson | ad9d271 | 2007-03-05 14:24:52 +1100 | [diff] [blame] | 45 | ns16550.c serial.c simple_alloc.c div64.S util.S \ |
David Gibson | 2e60161 | 2007-06-13 14:52:54 +1000 | [diff] [blame] | 46 | gunzip_util.c elf_util.c $(zlib) devtree.c oflib.c ofconsole.c \ |
Scott Wood | d0f53fa | 2007-08-21 03:39:57 +1000 | [diff] [blame] | 47 | 4xx.c ebony.c mv64x60.c mpsc.c mv64x60_i2c.c cuboot.c bamboo.c \ |
| 48 | cpm-serial.c |
David Gibson | f6dfc80 | 2007-05-08 14:10:01 +1000 | [diff] [blame] | 49 | src-plat := of.c cuboot-83xx.c cuboot-85xx.c holly.c \ |
Geoff Levand | bafdb64 | 2007-07-04 09:07:18 +1000 | [diff] [blame] | 50 | cuboot-ebony.c treeboot-ebony.c prpmc2800.c \ |
Scott Wood | e5d8d54 | 2007-08-21 03:40:02 +1000 | [diff] [blame^] | 51 | ps3-head.S ps3-hvcall.S ps3.c treeboot-bamboo.c cuboot-8xx.c cuboot-pq2.c |
David Gibson | cd197ff | 2007-03-05 14:24:52 +1100 | [diff] [blame] | 52 | src-boot := $(src-wlib) $(src-plat) empty.c |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 53 | |
| 54 | src-boot := $(addprefix $(obj)/, $(src-boot)) |
| 55 | obj-boot := $(addsuffix .o, $(basename $(src-boot))) |
| 56 | obj-wlib := $(addsuffix .o, $(basename $(addprefix $(obj)/, $(src-wlib)))) |
| 57 | obj-plat := $(addsuffix .o, $(basename $(addprefix $(obj)/, $(src-plat)))) |
| 58 | |
Olaf Hering | 7054036 | 2005-10-28 17:46:38 -0700 | [diff] [blame] | 59 | quiet_cmd_copy_zlib = COPY $@ |
Segher Boessenkool | 67ccd2f | 2007-05-16 22:49:22 +1000 | [diff] [blame] | 60 | cmd_copy_zlib = sed "s@__attribute_used__@@;s@<linux/\([^>]*\).*@\"\1\"@" $< > $@ |
Olaf Hering | 7054036 | 2005-10-28 17:46:38 -0700 | [diff] [blame] | 61 | |
| 62 | quiet_cmd_copy_zlibheader = COPY $@ |
Segher Boessenkool | 67ccd2f | 2007-05-16 22:49:22 +1000 | [diff] [blame] | 63 | cmd_copy_zlibheader = sed "s@<linux/\([^>]*\).*@\"\1\"@" $< > $@ |
Olaf Hering | 7054036 | 2005-10-28 17:46:38 -0700 | [diff] [blame] | 64 | # stddef.h for NULL |
| 65 | quiet_cmd_copy_zliblinuxheader = COPY $@ |
Segher Boessenkool | 67ccd2f | 2007-05-16 22:49:22 +1000 | [diff] [blame] | 66 | cmd_copy_zliblinuxheader = sed "s@<linux/string.h>@\"string.h\"@;s@<linux/kernel.h>@<stddef.h>@;s@<linux/\([^>]*\).*@\"\1\"@" $< > $@ |
Olaf Hering | 7054036 | 2005-10-28 17:46:38 -0700 | [diff] [blame] | 67 | |
| 68 | $(addprefix $(obj)/,$(zlib)): $(obj)/%: $(srctree)/lib/zlib_inflate/% |
| 69 | $(call cmd,copy_zlib) |
| 70 | |
| 71 | $(addprefix $(obj)/,$(zlibheader)): $(obj)/%: $(srctree)/lib/zlib_inflate/% |
| 72 | $(call cmd,copy_zlibheader) |
| 73 | |
| 74 | $(addprefix $(obj)/,$(zliblinuxheader)): $(obj)/%: $(srctree)/include/linux/% |
| 75 | $(call cmd,copy_zliblinuxheader) |
| 76 | |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 77 | $(obj)/empty.c: |
| 78 | @touch $@ |
Olaf Hering | 7054036 | 2005-10-28 17:46:38 -0700 | [diff] [blame] | 79 | |
Geoff Levand | bafdb64 | 2007-07-04 09:07:18 +1000 | [diff] [blame] | 80 | $(obj)/zImage.lds $(obj)/zImage.coff.lds $(obj)/zImage.ps3.lds: $(obj)/%: $(srctree)/$(src)/%.S |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 81 | @cp $< $@ |
| 82 | |
| 83 | clean-files := $(zlib) $(zlibheader) $(zliblinuxheader) \ |
Geoff Levand | bafdb64 | 2007-07-04 09:07:18 +1000 | [diff] [blame] | 84 | empty.c zImage zImage.coff.lds zImage.ps3.lds zImage.lds |
Olaf Hering | 7054036 | 2005-10-28 17:46:38 -0700 | [diff] [blame] | 85 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | quiet_cmd_bootcc = BOOTCC $@ |
| 87 | cmd_bootcc = $(CROSS32CC) -Wp,-MD,$(depfile) $(BOOTCFLAGS) -c -o $@ $< |
| 88 | |
| 89 | quiet_cmd_bootas = BOOTAS $@ |
| 90 | cmd_bootas = $(CROSS32CC) -Wp,-MD,$(depfile) $(BOOTAFLAGS) -c -o $@ $< |
| 91 | |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 92 | quiet_cmd_bootar = BOOTAR $@ |
Milton Miller | 235fd83 | 2007-03-21 09:02:37 -0600 | [diff] [blame] | 93 | cmd_bootar = $(CROSS32AR) -cr $@.$$$$ $(filter-out FORCE,$^); mv $@.$$$$ $@ |
Geoff Levand | a24c848 | 2005-08-15 13:59:13 -0700 | [diff] [blame] | 94 | |
Milton Miller | 235fd83 | 2007-03-21 09:02:37 -0600 | [diff] [blame] | 95 | $(patsubst %.c,%.o, $(filter %.c, $(src-boot))): %.o: %.c FORCE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | $(call if_changed_dep,bootcc) |
Milton Miller | 235fd83 | 2007-03-21 09:02:37 -0600 | [diff] [blame] | 97 | $(patsubst %.S,%.o, $(filter %.S, $(src-boot))): %.o: %.S FORCE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | $(call if_changed_dep,bootas) |
| 99 | |
Milton Miller | 235fd83 | 2007-03-21 09:02:37 -0600 | [diff] [blame] | 100 | $(obj)/wrapper.a: $(obj-wlib) FORCE |
| 101 | $(call if_changed,bootar) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | |
Josh Boyer | 0cfcccb | 2006-10-13 10:07:01 -0500 | [diff] [blame] | 103 | hostprogs-y := addnote addRamDisk hack-coff mktree |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | |
Milton Miller | 235fd83 | 2007-03-21 09:02:37 -0600 | [diff] [blame] | 105 | targets += $(patsubst $(obj)/%,%,$(obj-boot) wrapper.a) |
David Gibson | cd197ff | 2007-03-05 14:24:52 +1100 | [diff] [blame] | 106 | extra-y := $(obj)/wrapper.a $(obj-plat) $(obj)/empty.o \ |
Geoff Levand | bafdb64 | 2007-07-04 09:07:18 +1000 | [diff] [blame] | 107 | $(obj)/zImage.lds $(obj)/zImage.coff.lds $(obj)/zImage.ps3.lds |
Paul Mackerras | 66a45dd | 2006-01-14 15:04:06 +1100 | [diff] [blame] | 108 | |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 109 | wrapper :=$(srctree)/$(src)/wrapper |
Milton Miller | 65b5803 | 2007-03-19 14:58:04 -0600 | [diff] [blame] | 110 | wrapperbits := $(extra-y) $(addprefix $(obj)/,addnote hack-coff mktree) \ |
Milton Miller | 235fd83 | 2007-03-21 09:02:37 -0600 | [diff] [blame] | 111 | $(wrapper) FORCE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 113 | ############# |
| 114 | # Bits for building various flavours of zImage |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 116 | ifneq ($(CROSS32_COMPILE),) |
Michael Ellerman | dcf9065 | 2006-09-30 11:54:09 +1000 | [diff] [blame] | 117 | CROSSWRAP := -C "$(CROSS32_COMPILE)" |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 118 | else |
| 119 | ifneq ($(CROSS_COMPILE),) |
Michael Ellerman | dcf9065 | 2006-09-30 11:54:09 +1000 | [diff] [blame] | 120 | CROSSWRAP := -C "$(CROSS_COMPILE)" |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 121 | endif |
| 122 | endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | |
Milton Miller | 9da82a6 | 2007-03-21 09:03:23 -0600 | [diff] [blame] | 124 | # args (to if_changed): 1 = (this rule), 2 = platform, 3 = dts 4=dtb 5=initrd |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 125 | quiet_cmd_wrap = WRAP $@ |
Milton Miller | 9da82a6 | 2007-03-21 09:03:23 -0600 | [diff] [blame] | 126 | cmd_wrap =$(CONFIG_SHELL) $(wrapper) -c -o $@ -p $2 $(CROSSWRAP) \ |
| 127 | $(if $3, -s $3)$(if $4, -d $4)$(if $5, -i $5) vmlinux |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 128 | |
Geoff Levand | 020533e | 2006-10-07 15:33:53 -0700 | [diff] [blame] | 129 | image-$(CONFIG_PPC_PSERIES) += zImage.pseries |
| 130 | image-$(CONFIG_PPC_MAPLE) += zImage.pseries |
| 131 | image-$(CONFIG_PPC_IBM_CELL_BLADE) += zImage.pseries |
Geoff Levand | 8a8944a | 2006-12-04 16:11:38 -0800 | [diff] [blame] | 132 | image-$(CONFIG_PPC_PS3) += zImage.ps3 |
Ishizaki Kou | c347b79 | 2007-02-02 16:47:17 +0900 | [diff] [blame] | 133 | image-$(CONFIG_PPC_CELLEB) += zImage.pseries |
Geoff Levand | 020533e | 2006-10-07 15:33:53 -0700 | [diff] [blame] | 134 | image-$(CONFIG_PPC_CHRP) += zImage.chrp |
Nicolas DET | 7839af3 | 2006-11-17 17:08:37 +0100 | [diff] [blame] | 135 | image-$(CONFIG_PPC_EFIKA) += zImage.chrp |
Geoff Levand | 020533e | 2006-10-07 15:33:53 -0700 | [diff] [blame] | 136 | image-$(CONFIG_PPC_PMAC) += zImage.pmac |
Mark A. Greer | b0e8020 | 2007-06-01 05:56:15 +1000 | [diff] [blame] | 137 | image-$(CONFIG_PPC_HOLLY) += zImage.holly |
Mark A. Greer | c368d92 | 2007-05-12 10:58:18 +1000 | [diff] [blame] | 138 | image-$(CONFIG_PPC_PRPMC2800) += zImage.prpmc2800 |
Stephen Rothwell | 0570d4e | 2007-05-28 16:12:59 +1000 | [diff] [blame] | 139 | image-$(CONFIG_PPC_ISERIES) += zImage.iseries |
Scott Wood | ac18c67 | 2007-05-03 04:00:00 +1000 | [diff] [blame] | 140 | image-$(CONFIG_DEFAULT_UIMAGE) += uImage |
| 141 | |
| 142 | ifneq ($(CONFIG_DEVICE_TREE),"") |
Scott Wood | 0b19581 | 2007-08-21 03:40:01 +1000 | [diff] [blame] | 143 | image-$(CONFIG_PPC_8xx) += cuImage.8xx |
Scott Wood | e5d8d54 | 2007-08-21 03:40:02 +1000 | [diff] [blame^] | 144 | image-$(CONFIG_8260) += cuImage.pq2 |
David Gibson | a6afacb | 2007-05-01 10:20:20 +1000 | [diff] [blame] | 145 | image-$(CONFIG_PPC_83xx) += cuImage.83xx |
| 146 | image-$(CONFIG_PPC_85xx) += cuImage.85xx |
David Gibson | f6dfc80 | 2007-05-08 14:10:01 +1000 | [diff] [blame] | 147 | image-$(CONFIG_EBONY) += treeImage.ebony cuImage.ebony |
Josh Boyer | 2ba4573 | 2007-08-20 07:30:32 -0500 | [diff] [blame] | 148 | image-$(CONFIG_BAMBOO) += treeImage.bamboo |
Scott Wood | ac18c67 | 2007-05-03 04:00:00 +1000 | [diff] [blame] | 149 | endif |
Geoff Levand | a24c848 | 2005-08-15 13:59:13 -0700 | [diff] [blame] | 150 | |
Paul Mackerras | 9216ad8 | 2006-01-15 13:00:08 +1100 | [diff] [blame] | 151 | # For 32-bit powermacs, build the COFF and miboot images |
| 152 | # as well as the ELF images. |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 153 | ifeq ($(CONFIG_PPC32),y) |
| 154 | image-$(CONFIG_PPC_PMAC) += zImage.coff zImage.miboot |
| 155 | endif |
Paul Mackerras | 66a45dd | 2006-01-14 15:04:06 +1100 | [diff] [blame] | 156 | |
Milton Miller | 5d7960f | 2007-03-21 09:03:10 -0600 | [diff] [blame] | 157 | initrd- := $(patsubst zImage%, zImage.initrd%, $(image-n) $(image-)) |
David Gibson | f6dfc80 | 2007-05-08 14:10:01 +1000 | [diff] [blame] | 158 | initrd-y := $(patsubst zImage%, zImage.initrd%, \ |
| 159 | $(patsubst treeImage%, treeImage.initrd%, $(image-y))) |
Milton Miller | 9da82a6 | 2007-03-21 09:03:23 -0600 | [diff] [blame] | 160 | initrd-y := $(filter-out $(image-y), $(initrd-y)) |
Milton Miller | 235fd83 | 2007-03-21 09:02:37 -0600 | [diff] [blame] | 161 | targets += $(image-y) $(initrd-y) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | |
Milton Miller | 9da82a6 | 2007-03-21 09:03:23 -0600 | [diff] [blame] | 163 | $(addprefix $(obj)/, $(initrd-y)): $(obj)/ramdisk.image.gz |
| 164 | |
Mark A. Greer | a00cec4 | 2007-06-01 05:55:35 +1000 | [diff] [blame] | 165 | # If CONFIG_WANT_DEVICE_TREE is set and CONFIG_DEVICE_TREE isn't an |
| 166 | # empty string, define 'dts' to be path to the dts |
| 167 | # CONFIG_DEVICE_TREE will have "" around it, make sure to strip them |
| 168 | ifeq ($(CONFIG_WANT_DEVICE_TREE),y) |
| 169 | ifneq ($(CONFIG_DEVICE_TREE),"") |
| 170 | dts = $(if $(shell echo $(CONFIG_DEVICE_TREE) | grep '^/'),\ |
| 171 | ,$(srctree)/$(src)/dts/)$(CONFIG_DEVICE_TREE:"%"=%) |
| 172 | endif |
| 173 | endif |
| 174 | |
Milton Miller | 9da82a6 | 2007-03-21 09:03:23 -0600 | [diff] [blame] | 175 | # Don't put the ramdisk on the pattern rule; when its missing make will try |
| 176 | # the pattern rule with less dependencies that also matches (even with the |
| 177 | # hard dependency listed). |
Mark A. Greer | a00cec4 | 2007-06-01 05:55:35 +1000 | [diff] [blame] | 178 | $(obj)/zImage.initrd.%: vmlinux $(wrapperbits) $(dts) |
| 179 | $(call if_changed,wrap,$*,$(dts),,$(obj)/ramdisk.image.gz) |
Milton Miller | 9da82a6 | 2007-03-21 09:03:23 -0600 | [diff] [blame] | 180 | |
Mark A. Greer | a00cec4 | 2007-06-01 05:55:35 +1000 | [diff] [blame] | 181 | $(obj)/zImage.%: vmlinux $(wrapperbits) $(dts) |
| 182 | $(call if_changed,wrap,$*,$(dts)) |
Milton Miller | 9da82a6 | 2007-03-21 09:03:23 -0600 | [diff] [blame] | 183 | |
Tony Breeds | 4bb0928 | 2007-07-04 14:04:31 +1000 | [diff] [blame] | 184 | # This cannot be in the root of $(src) as the zImage rule always adds a $(obj) |
| 185 | # prefix |
| 186 | $(obj)/vmlinux.strip: vmlinux |
| 187 | $(STRIP) -s -R .comment $< -o $@ |
| 188 | |
Stephen Rothwell | 0570d4e | 2007-05-28 16:12:59 +1000 | [diff] [blame] | 189 | $(obj)/zImage.iseries: vmlinux |
| 190 | $(STRIP) -s -R .comment $< -o $@ |
| 191 | |
Geoff Levand | bafdb64 | 2007-07-04 09:07:18 +1000 | [diff] [blame] | 192 | $(obj)/zImage.ps3: vmlinux $(wrapper) $(wrapperbits) $(srctree)/$(src)/dts/ps3.dts |
| 193 | $(STRIP) -s -R .comment $< -o vmlinux.strip |
| 194 | $(call cmd,wrap,ps3,$(srctree)/$(src)/dts/ps3.dts,,) |
Milton Miller | 9da82a6 | 2007-03-21 09:03:23 -0600 | [diff] [blame] | 195 | |
Geoff Levand | bafdb64 | 2007-07-04 09:07:18 +1000 | [diff] [blame] | 196 | $(obj)/zImage.initrd.ps3: vmlinux $(wrapper) $(wrapperbits) $(srctree)/$(src)/dts/ps3.dts $(obj)/ramdisk.image.gz |
| 197 | $(call cmd,wrap,ps3,$(srctree)/$(src)/dts/ps3.dts,,$(obj)/ramdisk.image.gz) |
Milton Miller | 9da82a6 | 2007-03-21 09:03:23 -0600 | [diff] [blame] | 198 | |
| 199 | $(obj)/uImage: vmlinux $(wrapperbits) |
| 200 | $(call if_changed,wrap,uboot) |
| 201 | |
David Gibson | d25a9d6 | 2007-05-04 17:14:13 +1000 | [diff] [blame] | 202 | $(obj)/cuImage.%: vmlinux $(dts) $(wrapperbits) |
David Gibson | a6afacb | 2007-05-01 10:20:20 +1000 | [diff] [blame] | 203 | $(call if_changed,wrap,cuboot-$*,$(dts)) |
Scott Wood | 0fdd717 | 2007-04-17 09:25:50 +1000 | [diff] [blame] | 204 | |
David Gibson | f6dfc80 | 2007-05-08 14:10:01 +1000 | [diff] [blame] | 205 | $(obj)/treeImage.initrd.%: vmlinux $(dts) $(wrapperbits) |
| 206 | $(call if_changed,wrap,treeboot-$*,$(dts),,$(obj)/ramdisk.image.gz) |
| 207 | |
David Gibson | 6a32d08 | 2007-05-15 12:40:23 +1000 | [diff] [blame] | 208 | $(obj)/treeImage.%: vmlinux $(dts) $(wrapperbits) |
| 209 | $(call if_changed,wrap,treeboot-$*,$(dts)) |
| 210 | |
Tony Breeds | 4bb0928 | 2007-07-04 14:04:31 +1000 | [diff] [blame] | 211 | # If there isn't a platform selected then just strip the vmlinux. |
| 212 | ifeq (,$(image-y)) |
| 213 | image-y := vmlinux.strip |
| 214 | endif |
| 215 | |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 216 | $(obj)/zImage: $(addprefix $(obj)/, $(image-y)) |
| 217 | @rm -f $@; ln $< $@ |
| 218 | $(obj)/zImage.initrd: $(addprefix $(obj)/, $(initrd-y)) |
| 219 | @rm -f $@; ln $< $@ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | |
Akinobu Mita | 928370c | 2007-04-10 21:05:31 +1000 | [diff] [blame] | 221 | install: $(CONFIGURE) $(addprefix $(obj)/, $(image-y)) |
Paul Mackerras | 2bf1181 | 2006-09-27 22:47:03 +1000 | [diff] [blame] | 222 | sh -x $(srctree)/$(src)/install.sh "$(KERNELRELEASE)" vmlinux System.map "$(INSTALL_PATH)" $< |
Paul Mackerras | 66a45dd | 2006-01-14 15:04:06 +1100 | [diff] [blame] | 223 | |
Milton Miller | 1383a34 | 2007-03-28 02:21:04 -0600 | [diff] [blame] | 224 | # anything not in $(targets) |
Geoff Levand | bafdb64 | 2007-07-04 09:07:18 +1000 | [diff] [blame] | 225 | clean-files += $(image-) $(initrd-) zImage zImage.initrd cuImage.* treeImage.* \ |
| 226 | otheros.bld |
Milton Miller | 1383a34 | 2007-03-28 02:21:04 -0600 | [diff] [blame] | 227 | |
| 228 | # clean up files cached by wrapper |
| 229 | clean-kernel := vmlinux.strip vmlinux.bin |
| 230 | clean-kernel += $(addsuffix .gz,$(clean-kernel)) |
| 231 | # If not absolute clean-files are relative to $(obj). |
| 232 | clean-files += $(addprefix $(objtree)/, $(clean-kernel)) |