2 # arch/arm/boot/Makefile
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
8 # Copyright (C) 1995-2000 Russell King
11 targets
:= Image zImage bootpImage
15 ZTEXTADDR
= 0x02080000
16 PARAMS_PHYS
= 0x0207c000
17 INITRD_PHYS
= 0x02180000
18 INITRD_VIRT
= 0x02180000
21 # If you don't define ZRELADDR above,
22 # then it defaults to ZTEXTADDR
25 ZRELADDR
= $(ZTEXTADDR
)
28 export SYSTEM ZTEXTADDR ZBSSADDR ZRELADDR INITRD_PHYS INITRD_VIRT PARAMS_PHYS
34 $(obj
)/Image
: vmlinux FORCE
35 $(OBJCOPY
) -O binary
-R .note
-R .comment
-S vmlinux
$@
37 #$(obj)/Image: $(CONFIGURE) $(SYSTEM)
38 # $(OBJCOPY) -O binary -R .note -R .comment -g -S $(SYSTEM) $@
42 zImage
: $(CONFIGURE
) compressed
/$(LINUX
)
43 $(OBJCOPY
) -O binary
-R .note
-R .comment
-S compressed
/$(LINUX
) $@
45 bootpImage
: bootp
/bootp
46 $(OBJCOPY
) -O binary
-R .note
-R .comment
-S bootp
/bootp
$@
48 compressed
/$(LINUX
): $(LINUX
) dep
49 @
$(MAKE
) -C compressed
$(LINUX
)
51 bootp
/bootp
: zImage initrd
52 @
$(MAKE
) -C bootp bootp
55 @
test "$(INITRD_VIRT)" != "" ||
(echo This architecture does not support INITRD
; exit
-1)
56 @
test "$(INITRD)" != "" ||
(echo You must specify INITRD
; exit
-1)
61 install: $(CONFIGURE
) Image
62 sh .
/install.sh
$(KERNELRELEASE
) Image System.map
"$(INSTALL_PATH)"
64 zinstall
: $(CONFIGURE
) zImage
65 sh .
/install.sh
$(KERNELRELEASE
) zImage System.map
"$(INSTALL_PATH)"
71 # @$(MAKE) -C compressed clean
72 # @$(MAKE) -C bootp clean