diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-05-10 10:21:16 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-05-10 10:21:16 -0400 |
commit | f5b8fcb48b9eb1a02f6a3a679da913f6c467527c (patch) | |
tree | 4e67c46f5ebc0acf8c29ce01c711b84352a617f3 /arch/blackfin/boot | |
parent | a1f0bcccffe508b36f8eb0bd39771d4bedc683a8 (diff) | |
parent | 5ae89ee043ce96e3790e6c75f3807c8e37d98634 (diff) |
Merge tag 'for-linus' of git://github.com/realmz/blackfin-linux
Pull blackfin updates from Steven Miao.
* tag 'for-linus' of git://github.com/realmz/blackfin-linux:
bfin cache: dcplb map: add 16M dcplb map for BF60x
blackfin: smp: fix smp build after drop asm/system.h
blackfin: fix bootup core clock and system clock display
Platform Nand: Set the GPIO for NAND read as input
blackfin: rename vmImage to uImage after we move to buildroot
blackfin: twi: Remove bogus #endif
bf609: rsi: Add bf609 rsi MMR macro and board platform data.
blackfin: dmc: Improve DDR2 write through in DMC effict controller.
Diffstat (limited to 'arch/blackfin/boot')
-rw-r--r-- | arch/blackfin/boot/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/arch/blackfin/boot/Makefile b/arch/blackfin/boot/Makefile index f7d27d50d02c..3efaa094fb90 100644 --- a/arch/blackfin/boot/Makefile +++ b/arch/blackfin/boot/Makefile | |||
@@ -6,7 +6,7 @@ | |||
6 | # for more details. | 6 | # for more details. |
7 | # | 7 | # |
8 | 8 | ||
9 | targets := vmImage vmImage.bin vmImage.bz2 vmImage.gz vmImage.lzma vmImage.lzo vmImage.xip | 9 | targets := uImage uImage.bin uImage.bz2 uImage.gz uImage.lzma uImage.lzo uImage.xip |
10 | extra-y += vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2 vmlinux.bin.lzma vmlinux.bin.lzo vmlinux.bin.xip | 10 | extra-y += vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2 vmlinux.bin.lzma vmlinux.bin.lzo vmlinux.bin.xip |
11 | 11 | ||
12 | ifeq ($(CONFIG_RAMKERNEL),y) | 12 | ifeq ($(CONFIG_RAMKERNEL),y) |
@@ -39,22 +39,22 @@ quiet_cmd_mk_bin_xip = BIN $@ | |||
39 | $(obj)/vmlinux.bin.xip: $(obj)/vmlinux.bin FORCE | 39 | $(obj)/vmlinux.bin.xip: $(obj)/vmlinux.bin FORCE |
40 | $(call if_changed,mk_bin_xip) | 40 | $(call if_changed,mk_bin_xip) |
41 | 41 | ||
42 | $(obj)/vmImage.bin: $(obj)/vmlinux.bin | 42 | $(obj)/uImage.bin: $(obj)/vmlinux.bin |
43 | $(call if_changed,uimage,none) | 43 | $(call if_changed,uimage,none) |
44 | 44 | ||
45 | $(obj)/vmImage.bz2: $(obj)/vmlinux.bin.bz2 | 45 | $(obj)/uImage.bz2: $(obj)/vmlinux.bin.bz2 |
46 | $(call if_changed,uimage,bzip2) | 46 | $(call if_changed,uimage,bzip2) |
47 | 47 | ||
48 | $(obj)/vmImage.gz: $(obj)/vmlinux.bin.gz | 48 | $(obj)/uImage.gz: $(obj)/vmlinux.bin.gz |
49 | $(call if_changed,uimage,gzip) | 49 | $(call if_changed,uimage,gzip) |
50 | 50 | ||
51 | $(obj)/vmImage.lzma: $(obj)/vmlinux.bin.lzma | 51 | $(obj)/uImage.lzma: $(obj)/vmlinux.bin.lzma |
52 | $(call if_changed,uimage,lzma) | 52 | $(call if_changed,uimage,lzma) |
53 | 53 | ||
54 | $(obj)/vmImage.lzo: $(obj)/vmlinux.bin.lzo | 54 | $(obj)/uImage.lzo: $(obj)/vmlinux.bin.lzo |
55 | $(call if_changed,uimage,lzo) | 55 | $(call if_changed,uimage,lzo) |
56 | 56 | ||
57 | $(obj)/vmImage.xip: $(obj)/vmlinux.bin.xip | 57 | $(obj)/uImage.xip: $(obj)/vmlinux.bin.xip |
58 | $(call if_changed,uimage,none) | 58 | $(call if_changed,uimage,none) |
59 | 59 | ||
60 | suffix-y := bin | 60 | suffix-y := bin |
@@ -64,7 +64,7 @@ suffix-$(CONFIG_KERNEL_LZMA) := lzma | |||
64 | suffix-$(CONFIG_KERNEL_LZO) := lzo | 64 | suffix-$(CONFIG_KERNEL_LZO) := lzo |
65 | suffix-$(CONFIG_ROMKERNEL) := xip | 65 | suffix-$(CONFIG_ROMKERNEL) := xip |
66 | 66 | ||
67 | $(obj)/vmImage: $(obj)/vmImage.$(suffix-y) | 67 | $(obj)/uImage: $(obj)/uImage.$(suffix-y) |
68 | @ln -sf $(notdir $<) $@ | 68 | @ln -sf $(notdir $<) $@ |
69 | 69 | ||
70 | install: | 70 | install: |