* [U-Boot] [PATCH] arm: put .hash, .got.plt and .machine_param back in binaries
@ 2013-12-13 7:44 Albert ARIBAUD
2013-12-13 7:59 ` Rajeshwari Birje
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Albert ARIBAUD @ 2013-12-13 7:44 UTC (permalink / raw)
To: u-boot
Some targets will build fine but not boot if sections .hash and
.got.plt are not present in the binary. Add them back.
Also, Exynos machines require .machine_param section in SPL.
Add it.
Signed-off-by: Albert ARIBAUD <albert.u.boot@aribaud.net>
---
This patch was prepared with the help of Rajeshwari Birge.
Please test, especially if you own an Exynos-based board.
arch/arm/config.mk | 2 +-
arch/arm/cpu/armv7/exynos/config.mk | 7 +++++++
arch/arm/cpu/u-boot.lds | 3 +--
spl/Makefile | 3 ++-
4 files changed, 11 insertions(+), 4 deletions(-)
create mode 100644 arch/arm/cpu/armv7/exynos/config.mk
diff --git a/arch/arm/config.mk b/arch/arm/config.mk
index fd3e5fb..5d39d39 100644
--- a/arch/arm/config.mk
+++ b/arch/arm/config.mk
@@ -105,4 +105,4 @@ PLATFORM_CPPFLAGS += $(call cc-option, -mword-relocations)
endif
# limit ourselves to the sections we want in the .bin.
-OBJCFLAGS += -j .text -j .rodata -j .data -j .u_boot_list -j .rel.dyn
+OBJCFLAGS += -j .text -j .rodata -j .hash -j .data -j .got.plt -j .u_boot_list -j .rel.dyn
diff --git a/arch/arm/cpu/armv7/exynos/config.mk b/arch/arm/cpu/armv7/exynos/config.mk
new file mode 100644
index 0000000..ee0d2da
--- /dev/null
+++ b/arch/arm/cpu/armv7/exynos/config.mk
@@ -0,0 +1,7 @@
+#
+# Copyright (C) Albert ARIBAUD <albert.u.boot@aribaud.net>
+#
+# SPDX-License-Identifier: GPL-2.0+
+#
+
+SPL_OBJCFLAGS += -j .machine_param
diff --git a/arch/arm/cpu/u-boot.lds b/arch/arm/cpu/u-boot.lds
index 9463a33..4da5d24 100644
--- a/arch/arm/cpu/u-boot.lds
+++ b/arch/arm/cpu/u-boot.lds
@@ -92,8 +92,6 @@ SECTIONS
}
.dynsym _end : { *(.dynsym) }
- .hash : { *(.hash) }
- .got.plt : { *(.got.plt) }
.dynbss : { *(.dynbss) }
.dynstr : { *(.dynstr*) }
.dynamic : { *(.dynamic*) }
@@ -101,4 +99,5 @@ SECTIONS
.interp : { *(.interp*) }
.gnu : { *(.gnu*) }
.ARM.exidx : { *(.ARM.exidx*) }
+ .gnu.linkonce.armexidx : { *(.gnu.linkonce.armexidx.*) }
}
diff --git a/spl/Makefile b/spl/Makefile
index 2a787af..b95582b 100644
--- a/spl/Makefile
+++ b/spl/Makefile
@@ -171,7 +171,8 @@ $(obj)$(BOARD)-spl.bin: $(obj)u-boot-spl.bin
endif
$(obj)$(SPL_BIN).bin: $(obj)$(SPL_BIN)
- $(OBJCOPY) $(OBJCFLAGS) -O binary $< $@
+ $(OBJCOPY) $(OBJCFLAGS) $(SPL_OBJCFLAGS) -O srec $< $(obj)$(SPL_BIN).srec
+ $(OBJCOPY) $(OBJCFLAGS) $(SPL_OBJCFLAGS) -O binary $< $@
GEN_UBOOT = \
cd $(obj) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) $(__START) \
--
1.8.3.2
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [U-Boot] [PATCH] arm: put .hash, .got.plt and .machine_param back in binaries
2013-12-13 7:44 [U-Boot] [PATCH] arm: put .hash, .got.plt and .machine_param back in binaries Albert ARIBAUD
@ 2013-12-13 7:59 ` Rajeshwari Birje
2013-12-13 8:15 ` Masahiro Yamada
2014-01-08 13:21 ` Albert ARIBAUD
2 siblings, 0 replies; 8+ messages in thread
From: Rajeshwari Birje @ 2013-12-13 7:59 UTC (permalink / raw)
To: u-boot
Hi Albert,
Tested on SMDK5250 and working fine.
Tested by: Rajeshwari S Shinde <rajeshwari.s@samsung.com>
Regards,
Rajeshwari.
On Fri, Dec 13, 2013 at 1:14 PM, Albert ARIBAUD
<albert.u.boot@aribaud.net> wrote:
> Some targets will build fine but not boot if sections .hash and
> .got.plt are not present in the binary. Add them back.
>
> Also, Exynos machines require .machine_param section in SPL.
> Add it.
>
> Signed-off-by: Albert ARIBAUD <albert.u.boot@aribaud.net>
> ---
> This patch was prepared with the help of Rajeshwari Birge.
> Please test, especially if you own an Exynos-based board.
>
> arch/arm/config.mk | 2 +-
> arch/arm/cpu/armv7/exynos/config.mk | 7 +++++++
> arch/arm/cpu/u-boot.lds | 3 +--
> spl/Makefile | 3 ++-
> 4 files changed, 11 insertions(+), 4 deletions(-)
> create mode 100644 arch/arm/cpu/armv7/exynos/config.mk
>
> diff --git a/arch/arm/config.mk b/arch/arm/config.mk
> index fd3e5fb..5d39d39 100644
> --- a/arch/arm/config.mk
> +++ b/arch/arm/config.mk
> @@ -105,4 +105,4 @@ PLATFORM_CPPFLAGS += $(call cc-option, -mword-relocations)
> endif
>
> # limit ourselves to the sections we want in the .bin.
> -OBJCFLAGS += -j .text -j .rodata -j .data -j .u_boot_list -j .rel.dyn
> +OBJCFLAGS += -j .text -j .rodata -j .hash -j .data -j .got.plt -j .u_boot_list -j .rel.dyn
> diff --git a/arch/arm/cpu/armv7/exynos/config.mk b/arch/arm/cpu/armv7/exynos/config.mk
> new file mode 100644
> index 0000000..ee0d2da
> --- /dev/null
> +++ b/arch/arm/cpu/armv7/exynos/config.mk
> @@ -0,0 +1,7 @@
> +#
> +# Copyright (C) Albert ARIBAUD <albert.u.boot@aribaud.net>
> +#
> +# SPDX-License-Identifier: GPL-2.0+
> +#
> +
> +SPL_OBJCFLAGS += -j .machine_param
> diff --git a/arch/arm/cpu/u-boot.lds b/arch/arm/cpu/u-boot.lds
> index 9463a33..4da5d24 100644
> --- a/arch/arm/cpu/u-boot.lds
> +++ b/arch/arm/cpu/u-boot.lds
> @@ -92,8 +92,6 @@ SECTIONS
> }
>
> .dynsym _end : { *(.dynsym) }
> - .hash : { *(.hash) }
> - .got.plt : { *(.got.plt) }
> .dynbss : { *(.dynbss) }
> .dynstr : { *(.dynstr*) }
> .dynamic : { *(.dynamic*) }
> @@ -101,4 +99,5 @@ SECTIONS
> .interp : { *(.interp*) }
> .gnu : { *(.gnu*) }
> .ARM.exidx : { *(.ARM.exidx*) }
> + .gnu.linkonce.armexidx : { *(.gnu.linkonce.armexidx.*) }
> }
> diff --git a/spl/Makefile b/spl/Makefile
> index 2a787af..b95582b 100644
> --- a/spl/Makefile
> +++ b/spl/Makefile
> @@ -171,7 +171,8 @@ $(obj)$(BOARD)-spl.bin: $(obj)u-boot-spl.bin
> endif
>
> $(obj)$(SPL_BIN).bin: $(obj)$(SPL_BIN)
> - $(OBJCOPY) $(OBJCFLAGS) -O binary $< $@
> + $(OBJCOPY) $(OBJCFLAGS) $(SPL_OBJCFLAGS) -O srec $< $(obj)$(SPL_BIN).srec
> + $(OBJCOPY) $(OBJCFLAGS) $(SPL_OBJCFLAGS) -O binary $< $@
>
> GEN_UBOOT = \
> cd $(obj) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) $(__START) \
> --
> 1.8.3.2
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
--
Regards,
Rajeshwari Shinde
^ permalink raw reply [flat|nested] 8+ messages in thread
* [U-Boot] [PATCH] arm: put .hash, .got.plt and .machine_param back in binaries
2013-12-13 7:44 [U-Boot] [PATCH] arm: put .hash, .got.plt and .machine_param back in binaries Albert ARIBAUD
2013-12-13 7:59 ` Rajeshwari Birje
@ 2013-12-13 8:15 ` Masahiro Yamada
2013-12-13 9:58 ` Albert ARIBAUD
2014-01-08 13:21 ` Albert ARIBAUD
2 siblings, 1 reply; 8+ messages in thread
From: Masahiro Yamada @ 2013-12-13 8:15 UTC (permalink / raw)
To: u-boot
Hello Albert.
> $(obj)$(SPL_BIN).bin: $(obj)$(SPL_BIN)
> - $(OBJCOPY) $(OBJCFLAGS) -O binary $< $@
> + $(OBJCOPY) $(OBJCFLAGS) $(SPL_OBJCFLAGS) -O srec $< $(obj)$(SPL_BIN).srec
> + $(OBJCOPY) $(OBJCFLAGS) $(SPL_OBJCFLAGS) -O binary $< $@
The new file .srec is not mentioned in the commit log.
Is it your intentional change?
If so, please describe them separetely.
Best Regards
Masahiro Yamada
^ permalink raw reply [flat|nested] 8+ messages in thread
* [U-Boot] [PATCH] arm: put .hash, .got.plt and .machine_param back in binaries
2013-12-13 8:15 ` Masahiro Yamada
@ 2013-12-13 9:58 ` Albert ARIBAUD
2013-12-26 3:44 ` Rajeshwari Birje
0 siblings, 1 reply; 8+ messages in thread
From: Albert ARIBAUD @ 2013-12-13 9:58 UTC (permalink / raw)
To: u-boot
Hi Masahiro,
On Fri, 13 Dec 2013 17:15:51 +0900, Masahiro Yamada
<yamada.m@jp.panasonic.com> wrote:
> Hello Albert.
>
>
> > $(obj)$(SPL_BIN).bin: $(obj)$(SPL_BIN)
> > - $(OBJCOPY) $(OBJCFLAGS) -O binary $< $@
> > + $(OBJCOPY) $(OBJCFLAGS) $(SPL_OBJCFLAGS) -O srec $< $(obj)$(SPL_BIN).srec
> > + $(OBJCOPY) $(OBJCFLAGS) $(SPL_OBJCFLAGS) -O binary $< $@
>
> The new file .srec is not mentioned in the commit log.
> Is it your intentional change?
>
> If so, please describe them separetely.
Thanks for spotting this.
Actually it is not intentional; I had added it in my tests so that I
could compare binaries from different builds more easily. Unless people
think it should stay, I will remove it through a v2 patch.
> Best Regards
> Masahiro Yamada
Amicalement,
--
Albert.
^ permalink raw reply [flat|nested] 8+ messages in thread
* [U-Boot] [PATCH] arm: put .hash, .got.plt and .machine_param back in binaries
2013-12-13 9:58 ` Albert ARIBAUD
@ 2013-12-26 3:44 ` Rajeshwari Birje
0 siblings, 0 replies; 8+ messages in thread
From: Rajeshwari Birje @ 2013-12-26 3:44 UTC (permalink / raw)
To: u-boot
Hi Albert,
Any idea when are you getting this patch in as it is effecting the SMDK5250
booting.
Regards,
Rajeshwari
On Fri, Dec 13, 2013 at 3:28 PM, Albert ARIBAUD
<albert.u.boot@aribaud.net>wrote:
> Hi Masahiro,
>
> On Fri, 13 Dec 2013 17:15:51 +0900, Masahiro Yamada
> <yamada.m@jp.panasonic.com> wrote:
>
> > Hello Albert.
> >
> >
> > > $(obj)$(SPL_BIN).bin: $(obj)$(SPL_BIN)
> > > - $(OBJCOPY) $(OBJCFLAGS) -O binary $< $@
> > > + $(OBJCOPY) $(OBJCFLAGS) $(SPL_OBJCFLAGS) -O srec $<
> $(obj)$(SPL_BIN).srec
> > > + $(OBJCOPY) $(OBJCFLAGS) $(SPL_OBJCFLAGS) -O binary $< $@
> >
> > The new file .srec is not mentioned in the commit log.
> > Is it your intentional change?
> >
> > If so, please describe them separetely.
>
> Thanks for spotting this.
>
> Actually it is not intentional; I had added it in my tests so that I
> could compare binaries from different builds more easily. Unless people
> think it should stay, I will remove it through a v2 patch.
>
> > Best Regards
> > Masahiro Yamada
>
> Amicalement,
> --
> Albert.
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
>
--
Regards,
Rajeshwari Shinde
^ permalink raw reply [flat|nested] 8+ messages in thread
* [U-Boot] [PATCH] arm: put .hash, .got.plt and .machine_param back in binaries
2013-12-13 7:44 [U-Boot] [PATCH] arm: put .hash, .got.plt and .machine_param back in binaries Albert ARIBAUD
2013-12-13 7:59 ` Rajeshwari Birje
2013-12-13 8:15 ` Masahiro Yamada
@ 2014-01-08 13:21 ` Albert ARIBAUD
2014-01-13 13:57 ` [U-Boot] [PATCH v3] " Albert ARIBAUD
2 siblings, 1 reply; 8+ messages in thread
From: Albert ARIBAUD @ 2014-01-08 13:21 UTC (permalink / raw)
To: u-boot
Some targets will build fine but not boot if sections .hash and
.got.plt are not present in the binary. Add them back.
Also, Exynos machines require .machine_param section in SPL.
Add it.
Signed-off-by: Albert ARIBAUD <albert.u.boot@aribaud.net>
---
Changes for v2:
- removed SREC format SPL generation
arch/arm/config.mk | 2 +-
arch/arm/cpu/armv7/exynos/config.mk | 7 +++++++
arch/arm/cpu/u-boot.lds | 3 +--
spl/Makefile | 2 +-
4 files changed, 10 insertions(+), 4 deletions(-)
create mode 100644 arch/arm/cpu/armv7/exynos/config.mk
diff --git a/arch/arm/config.mk b/arch/arm/config.mk
index fd3e5fb..5d39d39 100644
--- a/arch/arm/config.mk
+++ b/arch/arm/config.mk
@@ -105,4 +105,4 @@ PLATFORM_CPPFLAGS += $(call cc-option, -mword-relocations)
endif
# limit ourselves to the sections we want in the .bin.
-OBJCFLAGS += -j .text -j .rodata -j .data -j .u_boot_list -j .rel.dyn
+OBJCFLAGS += -j .text -j .rodata -j .hash -j .data -j .got.plt -j .u_boot_list -j .rel.dyn
diff --git a/arch/arm/cpu/armv7/exynos/config.mk b/arch/arm/cpu/armv7/exynos/config.mk
new file mode 100644
index 0000000..ee0d2da
--- /dev/null
+++ b/arch/arm/cpu/armv7/exynos/config.mk
@@ -0,0 +1,7 @@
+#
+# Copyright (C) Albert ARIBAUD <albert.u.boot@aribaud.net>
+#
+# SPDX-License-Identifier: GPL-2.0+
+#
+
+SPL_OBJCFLAGS += -j .machine_param
diff --git a/arch/arm/cpu/u-boot.lds b/arch/arm/cpu/u-boot.lds
index 9463a33..4da5d24 100644
--- a/arch/arm/cpu/u-boot.lds
+++ b/arch/arm/cpu/u-boot.lds
@@ -92,8 +92,6 @@ SECTIONS
}
.dynsym _end : { *(.dynsym) }
- .hash : { *(.hash) }
- .got.plt : { *(.got.plt) }
.dynbss : { *(.dynbss) }
.dynstr : { *(.dynstr*) }
.dynamic : { *(.dynamic*) }
@@ -101,4 +99,5 @@ SECTIONS
.interp : { *(.interp*) }
.gnu : { *(.gnu*) }
.ARM.exidx : { *(.ARM.exidx*) }
+ .gnu.linkonce.armexidx : { *(.gnu.linkonce.armexidx.*) }
}
diff --git a/spl/Makefile b/spl/Makefile
index 0caa982..a91bbd0 100644
--- a/spl/Makefile
+++ b/spl/Makefile
@@ -176,7 +176,7 @@ $(obj)$(BOARD)-spl.bin: $(obj)u-boot-spl.bin
endif
$(obj)$(SPL_BIN).bin: $(obj)$(SPL_BIN)
- $(OBJCOPY) $(OBJCFLAGS) -O binary $< $@
+ $(OBJCOPY) $(OBJCFLAGS) $(SPL_OBJCFLAGS) -O binary $< $@
GEN_UBOOT = \
cd $(obj) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) $(__START) \
--
1.8.3.2
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [U-Boot] [PATCH v3] arm: put .hash, .got.plt and .machine_param back in binaries
2014-01-08 13:21 ` Albert ARIBAUD
@ 2014-01-13 13:57 ` Albert ARIBAUD
2014-01-14 10:50 ` Albert ARIBAUD
0 siblings, 1 reply; 8+ messages in thread
From: Albert ARIBAUD @ 2014-01-13 13:57 UTC (permalink / raw)
To: u-boot
Some targets will build fine but not boot if sections .hash and
.got.plt are not present in the binary. Add them back.
Also, Exynos machines require .machine_param section in SPL.
Add it.
Signed-off-by: Albert ARIBAUD <albert.u.boot@aribaud.net>
---
V3: rebase
V2: remove SREC generation for SPL
arch/arm/config.mk | 2 +-
arch/arm/cpu/armv7/exynos/config.mk | 7 +++++++
arch/arm/cpu/u-boot.lds | 3 +--
spl/Makefile | 2 +-
4 files changed, 10 insertions(+), 4 deletions(-)
create mode 100644 arch/arm/cpu/armv7/exynos/config.mk
diff --git a/arch/arm/config.mk b/arch/arm/config.mk
index 329c7a7..cfa4209 100644
--- a/arch/arm/config.mk
+++ b/arch/arm/config.mk
@@ -109,5 +109,5 @@ endif
ifdef CONFIG_ARM64
OBJCFLAGS += -j .text -j .rodata -j .data -j .u_boot_list -j .rela.dyn
else
-OBJCFLAGS += -j .text -j .rodata -j .data -j .u_boot_list -j .rel.dyn
+OBJCFLAGS += -j .text -j .rodata -j .hash -j .data -j .got.plt -j .u_boot_list -j .rel.dyn
endif
diff --git a/arch/arm/cpu/armv7/exynos/config.mk b/arch/arm/cpu/armv7/exynos/config.mk
new file mode 100644
index 0000000..ee0d2da
--- /dev/null
+++ b/arch/arm/cpu/armv7/exynos/config.mk
@@ -0,0 +1,7 @@
+#
+# Copyright (C) Albert ARIBAUD <albert.u.boot@aribaud.net>
+#
+# SPDX-License-Identifier: GPL-2.0+
+#
+
+SPL_OBJCFLAGS += -j .machine_param
diff --git a/arch/arm/cpu/u-boot.lds b/arch/arm/cpu/u-boot.lds
index 9463a33..4da5d24 100644
--- a/arch/arm/cpu/u-boot.lds
+++ b/arch/arm/cpu/u-boot.lds
@@ -92,8 +92,6 @@ SECTIONS
}
.dynsym _end : { *(.dynsym) }
- .hash : { *(.hash) }
- .got.plt : { *(.got.plt) }
.dynbss : { *(.dynbss) }
.dynstr : { *(.dynstr*) }
.dynamic : { *(.dynamic*) }
@@ -101,4 +99,5 @@ SECTIONS
.interp : { *(.interp*) }
.gnu : { *(.gnu*) }
.ARM.exidx : { *(.ARM.exidx*) }
+ .gnu.linkonce.armexidx : { *(.gnu.linkonce.armexidx.*) }
}
diff --git a/spl/Makefile b/spl/Makefile
index 003956e..5e5472d 100644
--- a/spl/Makefile
+++ b/spl/Makefile
@@ -165,7 +165,7 @@ $(obj)$(BOARD)-spl.bin: $(obj)u-boot-spl.bin
endif
$(obj)$(SPL_BIN).bin: $(obj)$(SPL_BIN)
- $(OBJCOPY) $(OBJCFLAGS) -O binary $< $@
+ $(OBJCOPY) $(OBJCFLAGS) $(SPL_OBJCFLAGS) -O binary $< $@
GEN_UBOOT = \
cd $(obj) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) $(__START) \
--
1.8.3.2
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [U-Boot] [PATCH v3] arm: put .hash, .got.plt and .machine_param back in binaries
2014-01-13 13:57 ` [U-Boot] [PATCH v3] " Albert ARIBAUD
@ 2014-01-14 10:50 ` Albert ARIBAUD
0 siblings, 0 replies; 8+ messages in thread
From: Albert ARIBAUD @ 2014-01-14 10:50 UTC (permalink / raw)
To: u-boot
On Mon, 13 Jan 2014 14:57:05 +0100, Albert ARIBAUD
<albert.u.boot@aribaud.net> wrote:
> Some targets will build fine but not boot if sections .hash and
> .got.plt are not present in the binary. Add them back.
>
> Also, Exynos machines require .machine_param section in SPL.
> Add it.
>
> Signed-off-by: Albert ARIBAUD <albert.u.boot@aribaud.net>
> ---
> V3: rebase
> V2: remove SREC generation for SPL
>
> arch/arm/config.mk | 2 +-
> arch/arm/cpu/armv7/exynos/config.mk | 7 +++++++
> arch/arm/cpu/u-boot.lds | 3 +--
> spl/Makefile | 2 +-
> 4 files changed, 10 insertions(+), 4 deletions(-)
> create mode 100644 arch/arm/cpu/armv7/exynos/config.mk
>
> diff --git a/arch/arm/config.mk b/arch/arm/config.mk
> index 329c7a7..cfa4209 100644
> --- a/arch/arm/config.mk
> +++ b/arch/arm/config.mk
> @@ -109,5 +109,5 @@ endif
> ifdef CONFIG_ARM64
> OBJCFLAGS += -j .text -j .rodata -j .data -j .u_boot_list -j .rela.dyn
> else
> -OBJCFLAGS += -j .text -j .rodata -j .data -j .u_boot_list -j .rel.dyn
> +OBJCFLAGS += -j .text -j .rodata -j .hash -j .data -j .got.plt -j .u_boot_list -j .rel.dyn
> endif
> diff --git a/arch/arm/cpu/armv7/exynos/config.mk b/arch/arm/cpu/armv7/exynos/config.mk
> new file mode 100644
> index 0000000..ee0d2da
> --- /dev/null
> +++ b/arch/arm/cpu/armv7/exynos/config.mk
> @@ -0,0 +1,7 @@
> +#
> +# Copyright (C) Albert ARIBAUD <albert.u.boot@aribaud.net>
> +#
> +# SPDX-License-Identifier: GPL-2.0+
> +#
> +
> +SPL_OBJCFLAGS += -j .machine_param
> diff --git a/arch/arm/cpu/u-boot.lds b/arch/arm/cpu/u-boot.lds
> index 9463a33..4da5d24 100644
> --- a/arch/arm/cpu/u-boot.lds
> +++ b/arch/arm/cpu/u-boot.lds
> @@ -92,8 +92,6 @@ SECTIONS
> }
>
> .dynsym _end : { *(.dynsym) }
> - .hash : { *(.hash) }
> - .got.plt : { *(.got.plt) }
> .dynbss : { *(.dynbss) }
> .dynstr : { *(.dynstr*) }
> .dynamic : { *(.dynamic*) }
> @@ -101,4 +99,5 @@ SECTIONS
> .interp : { *(.interp*) }
> .gnu : { *(.gnu*) }
> .ARM.exidx : { *(.ARM.exidx*) }
> + .gnu.linkonce.armexidx : { *(.gnu.linkonce.armexidx.*) }
> }
> diff --git a/spl/Makefile b/spl/Makefile
> index 003956e..5e5472d 100644
> --- a/spl/Makefile
> +++ b/spl/Makefile
> @@ -165,7 +165,7 @@ $(obj)$(BOARD)-spl.bin: $(obj)u-boot-spl.bin
> endif
>
> $(obj)$(SPL_BIN).bin: $(obj)$(SPL_BIN)
> - $(OBJCOPY) $(OBJCFLAGS) -O binary $< $@
> + $(OBJCOPY) $(OBJCFLAGS) $(SPL_OBJCFLAGS) -O binary $< $@
>
> GEN_UBOOT = \
> cd $(obj) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) $(__START) \
Applied, with Rajeshwari's (hyphen-fixed) tested-by added, to
u-boot-arm/master.
Amicalement,
--
Albert.
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2014-01-14 10:50 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-13 7:44 [U-Boot] [PATCH] arm: put .hash, .got.plt and .machine_param back in binaries Albert ARIBAUD
2013-12-13 7:59 ` Rajeshwari Birje
2013-12-13 8:15 ` Masahiro Yamada
2013-12-13 9:58 ` Albert ARIBAUD
2013-12-26 3:44 ` Rajeshwari Birje
2014-01-08 13:21 ` Albert ARIBAUD
2014-01-13 13:57 ` [U-Boot] [PATCH v3] " Albert ARIBAUD
2014-01-14 10:50 ` Albert ARIBAUD
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox