diff options
author | Paul Mundt <lethal@linux-sh.org> | 2009-05-09 11:55:45 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-05-09 11:55:45 -0400 |
commit | b20883562455060272126c36563a7d8edafc30d3 (patch) | |
tree | 5a5c814322e5ff0bb21c60c96b8d9dc29d6b9e75 /arch/sh/boot/compressed/Makefile_32 | |
parent | a2e76c80d93ec3c59a030b6ca37b9087033565c1 (diff) |
sh: Provide a BITS definition, use it in the arch/sh/boot/ Makefiles.
This introduces a BITS export that can handily be picked up by Makefiles
for cleaner sharing. Reflect its use in arch/sh/boot/compressed/ in
preparation for unifying the Makefiles.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/boot/compressed/Makefile_32')
-rw-r--r-- | arch/sh/boot/compressed/Makefile_32 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/sh/boot/compressed/Makefile_32 b/arch/sh/boot/compressed/Makefile_32 index 249255729d7c..9531bf1b7c2f 100644 --- a/arch/sh/boot/compressed/Makefile_32 +++ b/arch/sh/boot/compressed/Makefile_32 | |||
@@ -5,9 +5,9 @@ | |||
5 | # | 5 | # |
6 | 6 | ||
7 | targets := vmlinux vmlinux.bin vmlinux.bin.gz \ | 7 | targets := vmlinux vmlinux.bin vmlinux.bin.gz \ |
8 | head_32.o misc_32.o piggy.o | 8 | head_$(BITS).o misc_$(BITS).o piggy.o |
9 | 9 | ||
10 | OBJECTS = $(obj)/head_32.o $(obj)/misc_32.o | 10 | OBJECTS = $(obj)/head_$(BITS).o $(obj)/misc_$(BITS).o $(obj)/cache.o |
11 | 11 | ||
12 | ifdef CONFIG_SH_STANDARD_BIOS | 12 | ifdef CONFIG_SH_STANDARD_BIOS |
13 | OBJECTS += $(obj)/../../kernel/sh_bios.o | 13 | OBJECTS += $(obj)/../../kernel/sh_bios.o |
@@ -18,7 +18,7 @@ endif | |||
18 | # | 18 | # |
19 | IMAGE_OFFSET := $(shell /bin/bash -c 'printf "0x%08x" \ | 19 | IMAGE_OFFSET := $(shell /bin/bash -c 'printf "0x%08x" \ |
20 | $$[$(CONFIG_PAGE_OFFSET) + \ | 20 | $$[$(CONFIG_PAGE_OFFSET) + \ |
21 | $(CONFIG_MEMORY_START) + \ | 21 | $(KERNEL_MEMORY) + \ |
22 | $(CONFIG_BOOT_LINK_OFFSET)]') | 22 | $(CONFIG_BOOT_LINK_OFFSET)]') |
23 | 23 | ||
24 | LIBGCC := $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name) | 24 | LIBGCC := $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name) |