diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2008-12-31 07:35:57 -0500 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2008-12-31 07:35:57 -0500 |
commit | 2ca1a615835d9f4990f42102ab1f2ef434e7e89c (patch) | |
tree | 726cf3d5f29a6c66c44e4bd68e7ebed2fd83d059 /arch/sparc64/boot/Makefile | |
parent | e12f0102ac81d660c9f801d0a0e10ccf4537a9de (diff) | |
parent | 6a94cb73064c952255336cc57731904174b2c58f (diff) |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
Conflicts:
arch/x86/kernel/io_apic.c
Diffstat (limited to 'arch/sparc64/boot/Makefile')
-rw-r--r-- | arch/sparc64/boot/Makefile | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/arch/sparc64/boot/Makefile b/arch/sparc64/boot/Makefile deleted file mode 100644 index 0458b5244f09..000000000000 --- a/arch/sparc64/boot/Makefile +++ /dev/null | |||
@@ -1,33 +0,0 @@ | |||
1 | # Makefile for the Sparc64 boot stuff. | ||
2 | # | ||
3 | # Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu) | ||
4 | # Copyright (C) 1997 Jakub Jelinek (jj@sunsite.mff.cuni.cz) | ||
5 | |||
6 | ROOT_IMG := /usr/src/root.img | ||
7 | ELFTOAOUT := elftoaout | ||
8 | |||
9 | hostprogs-y := piggyback | ||
10 | targets := image tftpboot.img vmlinux.aout | ||
11 | |||
12 | quiet_cmd_elftoaout = ELF2AOUT $@ | ||
13 | cmd_elftoaout = $(ELFTOAOUT) vmlinux -o $@ | ||
14 | quiet_cmd_piggy = PIGGY $@ | ||
15 | cmd_piggy = $(obj)/piggyback $@ System.map $(ROOT_IMG) | ||
16 | quiet_cmd_strip = STRIP $@ | ||
17 | cmd_strip = $(STRIP) -R .comment -R .note -K sun4u_init -K _end -K _start vmlinux -o $@ | ||
18 | |||
19 | |||
20 | # Actual linking | ||
21 | $(obj)/image: vmlinux FORCE | ||
22 | $(call if_changed,strip) | ||
23 | @echo ' kernel: $@ is ready' | ||
24 | |||
25 | $(obj)/tftpboot.img: vmlinux $(obj)/piggyback System.map $(ROOT_IMG) FORCE | ||
26 | $(call if_changed,elftoaout) | ||
27 | $(call if_changed,piggy) | ||
28 | @echo ' kernel: $@ is ready' | ||
29 | |||
30 | $(obj)/vmlinux.aout: vmlinux FORCE | ||
31 | $(call if_changed,elftoaout) | ||
32 | @echo ' kernel: $@ is ready' | ||
33 | |||