aboutsummaryrefslogtreecommitdiffstats
path: root/arch/frv/boot
diff options
context:
space:
mode:
authorJonathan Herman <hermanjl@cs.unc.edu>2013-01-17 16:15:55 -0500
committerJonathan Herman <hermanjl@cs.unc.edu>2013-01-17 16:15:55 -0500
commit8dea78da5cee153b8af9c07a2745f6c55057fe12 (patch)
treea8f4d49d63b1ecc92f2fddceba0655b2472c5bd9 /arch/frv/boot
parent406089d01562f1e2bf9f089fd7637009ebaad589 (diff)
Patched in Tegra support.
Diffstat (limited to 'arch/frv/boot')
-rw-r--r--arch/frv/boot/Makefile10
1 files changed, 4 insertions, 6 deletions
diff --git a/arch/frv/boot/Makefile b/arch/frv/boot/Makefile
index 636d5bbcd53..6ae3254da01 100644
--- a/arch/frv/boot/Makefile
+++ b/arch/frv/boot/Makefile
@@ -17,8 +17,6 @@ PARAMS_PHYS = 0x0207c000
17INITRD_PHYS = 0x02180000 17INITRD_PHYS = 0x02180000
18INITRD_VIRT = 0x02180000 18INITRD_VIRT = 0x02180000
19 19
20OBJCOPYFLAGS :=-O binary -R .note -R .note.gnu.build-id -R .comment
21
22# 20#
23# If you don't define ZRELADDR above, 21# If you don't define ZRELADDR above,
24# then it defaults to ZTEXTADDR 22# then it defaults to ZTEXTADDR
@@ -34,18 +32,18 @@ Image: $(obj)/Image
34targets: $(obj)/Image 32targets: $(obj)/Image
35 33
36$(obj)/Image: vmlinux FORCE 34$(obj)/Image: vmlinux FORCE
37 $(OBJCOPY) $(OBJCOPYFLAGS) -S vmlinux $@ 35 $(OBJCOPY) -O binary -R .note -R .comment -S vmlinux $@
38 36
39#$(obj)/Image: $(CONFIGURE) $(SYSTEM) 37#$(obj)/Image: $(CONFIGURE) $(SYSTEM)
40# $(OBJCOPY) $(OBJCOPYFLAGS) -g -S $(SYSTEM) $@ 38# $(OBJCOPY) -O binary -R .note -R .comment -g -S $(SYSTEM) $@
41 39
42bzImage: zImage 40bzImage: zImage
43 41
44zImage: $(CONFIGURE) compressed/$(LINUX) 42zImage: $(CONFIGURE) compressed/$(LINUX)
45 $(OBJCOPY) $(OBJCOPYFLAGS) -S compressed/$(LINUX) $@ 43 $(OBJCOPY) -O binary -R .note -R .comment -S compressed/$(LINUX) $@
46 44
47bootpImage: bootp/bootp 45bootpImage: bootp/bootp
48 $(OBJCOPY) $(OBJCOPYFLAGS) -S bootp/bootp $@ 46 $(OBJCOPY) -O binary -R .note -R .comment -S bootp/bootp $@
49 47
50compressed/$(LINUX): $(LINUX) dep 48compressed/$(LINUX): $(LINUX) dep
51 @$(MAKE) -C compressed $(LINUX) 49 @$(MAKE) -C compressed $(LINUX)