aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm26/boot/Makefile
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
commit1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch)
tree0bba044c4ce775e45a88a51686b5d9f90697ea9d /arch/arm26/boot/Makefile
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
Diffstat (limited to 'arch/arm26/boot/Makefile')
-rw-r--r--arch/arm26/boot/Makefile80
1 files changed, 80 insertions, 0 deletions
diff --git a/arch/arm26/boot/Makefile b/arch/arm26/boot/Makefile
new file mode 100644
index 000000000000..b5c2277654d4
--- /dev/null
+++ b/arch/arm26/boot/Makefile
@@ -0,0 +1,80 @@
1#
2# arch/arm26/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-2002 Russell King
9#
10
11# Note: the following conditions must always be true:
12# ZRELADDR == virt_to_phys(TEXTADDR)
13# PARAMS_PHYS must be with 4MB of ZRELADDR
14# INITRD_PHYS must be in RAM
15
16 zreladdr-y := 0x02080000
17params_phys-y := 0x0207c000
18initrd_phys-y := 0x02180000
19
20ZRELADDR := 0x02080000
21ZTEXTADDR := 0x0207c000
22PARAMS_PHYS := $(params_phys-y)
23INITRD_PHYS := 0x02180000
24
25# We now have a PIC decompressor implementation. Decompressors running
26# from RAM should not define ZTEXTADDR. Decompressors running directly
27# from ROM or Flash must define ZTEXTADDR (preferably via the config)
28# FIXME: Previous assignment to ztextaddr-y is lost here. See SHARK
29ifeq ($(CONFIG_ZBOOT_ROM),y)
30ZTEXTADDR := $(CONFIG_ZBOOT_ROM_TEXT)
31ZBSSADDR := $(CONFIG_ZBOOT_ROM_BSS)
32else
33ZTEXTADDR := 0
34ZBSSADDR := ALIGN(4)
35endif
36
37export ZTEXTADDR ZBSSADDR ZRELADDR INITRD_PHYS PARAMS_PHYS
38
39targets := Image zImage bootpImage xipImage
40
41$(obj)/Image: vmlinux FORCE
42 $(call if_changed,objcopy)
43 @echo ' Kernel: $@ is ready'
44
45$(obj)/zImage: $(obj)/compressed/vmlinux FORCE
46 $(call if_changed,objcopy)
47 @echo ' Kernel: $@ is ready'
48
49$(obj)/compressed/vmlinux: vmlinux FORCE
50 $(Q)$(MAKE) $(build)=$(obj)/compressed $@
51
52ifeq ($(CONFIG_XIP_KERNEL),y)
53$(obj)/xipImage: vmlinux FORCE
54# $(OBJCOPY) -S -O binary -R .data -R .comment vmlinux vmlinux-text.bin
55# FIXME - where has .pci_fixup crept in from?
56 $(OBJCOPY) -S -O binary -R .data -R .pci_fixup -R .comment vmlinux vmlinux-text.bin
57 $(OBJCOPY) -S -O binary -R .init -R .text -R __ex_table -R .pci_fixup -R __ksymtab -R __ksymtab_gpl -R __kcrctab -R __kcrctab_gpl -R __param -R .comment vmlinux vmlinux-data.bin
58 cat vmlinux-text.bin vmlinux-data.bin > $@
59 $(RM) -f vmlinux-text.bin vmlinux-data.bin
60 @echo ' Kernel: $@ is ready'
61endif
62
63.PHONY: initrd
64initrd:
65 @test "$(INITRD_PHYS)" != "" || \
66 (echo This machine does not support INITRD; exit -1)
67 @test "$(INITRD)" != "" || \
68 (echo You must specify INITRD; exit -1)
69
70install: $(obj)/Image
71 $(CONFIG_SHELL) $(obj)/install.sh \
72 $(KERNELRELEASE) \
73 $(obj)/Image System.map "$(INSTALL_PATH)"
74
75zinstall: $(obj)/zImage
76 $(CONFIG_SHELL) $(obj)/install.sh \
77 $(KERNELRELEASE) \
78 $(obj)/zImage System.map "$(INSTALL_PATH)"
79
80subdir- := compressed