diff options
author | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-01-17 16:15:55 -0500 |
---|---|---|
committer | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-01-17 16:15:55 -0500 |
commit | 8dea78da5cee153b8af9c07a2745f6c55057fe12 (patch) | |
tree | a8f4d49d63b1ecc92f2fddceba0655b2472c5bd9 /arch/frv/boot | |
parent | 406089d01562f1e2bf9f089fd7637009ebaad589 (diff) |
Patched in Tegra support.
Diffstat (limited to 'arch/frv/boot')
-rw-r--r-- | arch/frv/boot/Makefile | 10 |
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 | |||
17 | INITRD_PHYS = 0x02180000 | 17 | INITRD_PHYS = 0x02180000 |
18 | INITRD_VIRT = 0x02180000 | 18 | INITRD_VIRT = 0x02180000 |
19 | 19 | ||
20 | OBJCOPYFLAGS :=-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 | |||
34 | targets: $(obj)/Image | 32 | targets: $(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 | ||
42 | bzImage: zImage | 40 | bzImage: zImage |
43 | 41 | ||
44 | zImage: $(CONFIGURE) compressed/$(LINUX) | 42 | zImage: $(CONFIGURE) compressed/$(LINUX) |
45 | $(OBJCOPY) $(OBJCOPYFLAGS) -S compressed/$(LINUX) $@ | 43 | $(OBJCOPY) -O binary -R .note -R .comment -S compressed/$(LINUX) $@ |
46 | 44 | ||
47 | bootpImage: bootp/bootp | 45 | bootpImage: bootp/bootp |
48 | $(OBJCOPY) $(OBJCOPYFLAGS) -S bootp/bootp $@ | 46 | $(OBJCOPY) -O binary -R .note -R .comment -S bootp/bootp $@ |
49 | 47 | ||
50 | compressed/$(LINUX): $(LINUX) dep | 48 | compressed/$(LINUX): $(LINUX) dep |
51 | @$(MAKE) -C compressed $(LINUX) | 49 | @$(MAKE) -C compressed $(LINUX) |