Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # |
| 2 | # arch/arm/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) 1995-2000 Russell King |
| 9 | # |
| 10 | |
| 11 | SYSTEM =$(TOPDIR)/$(LINUX) |
| 12 | |
| 13 | ZTEXTADDR = 0x02080000 |
| 14 | PARAMS_PHYS = 0x0207c000 |
| 15 | INITRD_PHYS = 0x02180000 |
| 16 | INITRD_VIRT = 0x02180000 |
| 17 | |
| 18 | # |
| 19 | # If you don't define ZRELADDR above, |
| 20 | # then it defaults to ZTEXTADDR |
| 21 | # |
| 22 | ifeq ($(ZRELADDR),) |
| 23 | ZRELADDR = $(ZTEXTADDR) |
| 24 | endif |
| 25 | |
| 26 | export SYSTEM ZTEXTADDR ZBSSADDR ZRELADDR INITRD_PHYS INITRD_VIRT PARAMS_PHYS |
| 27 | |
| 28 | Image: $(obj)/Image |
| 29 | |
| 30 | targets: $(obj)/Image |
| 31 | |
| 32 | $(obj)/Image: vmlinux FORCE |
| 33 | $(OBJCOPY) -O binary -R .note -R .comment -S vmlinux $@ |
| 34 | |
| 35 | #$(obj)/Image: $(CONFIGURE) $(SYSTEM) |
| 36 | # $(OBJCOPY) -O binary -R .note -R .comment -g -S $(SYSTEM) $@ |
| 37 | |
| 38 | bzImage: zImage |
| 39 | |
| 40 | zImage: $(CONFIGURE) compressed/$(LINUX) |
| 41 | $(OBJCOPY) -O binary -R .note -R .comment -S compressed/$(LINUX) $@ |
| 42 | |
| 43 | bootpImage: bootp/bootp |
| 44 | $(OBJCOPY) -O binary -R .note -R .comment -S bootp/bootp $@ |
| 45 | |
| 46 | compressed/$(LINUX): $(TOPDIR)/$(LINUX) dep |
| 47 | @$(MAKE) -C compressed $(LINUX) |
| 48 | |
| 49 | bootp/bootp: zImage initrd |
| 50 | @$(MAKE) -C bootp bootp |
| 51 | |
| 52 | initrd: |
| 53 | @test "$(INITRD_VIRT)" != "" || (echo This architecture does not support INITRD; exit -1) |
| 54 | @test "$(INITRD)" != "" || (echo You must specify INITRD; exit -1) |
| 55 | |
| 56 | # |
| 57 | # installation |
| 58 | # |
| 59 | install: $(CONFIGURE) Image |
Sam Ravnborg | 63b794b | 2006-01-08 20:37:39 +0100 | [diff] [blame] | 60 | sh ./install.sh $(KERNELRELEASE) Image $(TOPDIR)/System.map "$(INSTALL_PATH)" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
| 62 | zinstall: $(CONFIGURE) zImage |
Sam Ravnborg | 63b794b | 2006-01-08 20:37:39 +0100 | [diff] [blame] | 63 | sh ./install.sh $(KERNELRELEASE) zImage $(TOPDIR)/System.map "$(INSTALL_PATH)" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | |
| 65 | # |
| 66 | # miscellany |
| 67 | # |
| 68 | mrproper clean: |
| 69 | $(RM) Image zImage bootpImage |
| 70 | # @$(MAKE) -C compressed clean |
| 71 | # @$(MAKE) -C bootp clean |
| 72 | |
| 73 | dep: |