public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] openrisc: Add _text symbol to fix ksym build error
@ 2016-12-14 12:55 Stafford Horne
  2016-12-14 12:58 ` [OpenRISC] " Geert Uytterhoeven
  0 siblings, 1 reply; 3+ messages in thread
From: Stafford Horne @ 2016-12-14 12:55 UTC (permalink / raw)
  To: linux-kernel
  Cc: openrisc, stefan.kristiansson, jonas, linux, fengguang.wu,
	Stafford Horne

The build report reports:

   .tmp_kallsyms1.o: In function `kallsyms_relative_base':
>> (.rodata+0x8a18): undefined reference to `_text'

This is when using 'make alldefconfig'. Adding this _text symbol to mark
the start of the kernel as in other architecture fixes this.

Signed-off-by: Stafford Horne <shorne@gmail.com>
---
 arch/openrisc/kernel/vmlinux.lds.S | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/arch/openrisc/kernel/vmlinux.lds.S b/arch/openrisc/kernel/vmlinux.lds.S
index ef31fc2..58eaca0 100644
--- a/arch/openrisc/kernel/vmlinux.lds.S
+++ b/arch/openrisc/kernel/vmlinux.lds.S
@@ -44,6 +44,8 @@ SECTIONS
         /* Read-only sections, merged into text segment: */
         . = LOAD_BASE ;
 
+	_text = .;
+
 	/* _s_kernel_ro must be page aligned */
 	. = ALIGN(PAGE_SIZE);
 	_s_kernel_ro = .;
@@ -66,6 +68,7 @@ SECTIONS
 	 * fixup is definitely necessary
 	 */
 
+	_data = .;
 	_sdata = .;
 
 	/* Page alignment required for RO_DATA_SECTION */
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [OpenRISC] [PATCH] openrisc: Add _text symbol to fix ksym build error
  2016-12-14 12:55 [PATCH] openrisc: Add _text symbol to fix ksym build error Stafford Horne
@ 2016-12-14 12:58 ` Geert Uytterhoeven
  2016-12-14 13:12   ` Stafford Horne
  0 siblings, 1 reply; 3+ messages in thread
From: Geert Uytterhoeven @ 2016-12-14 12:58 UTC (permalink / raw)
  To: Stafford Horne
  Cc: linux-kernel@vger.kernel.org, Jonas Bonn, openrisc, Wu Fengguang,
	Guenter Roeck

Hi Stafford,

On Wed, Dec 14, 2016 at 1:55 PM, Stafford Horne <shorne@gmail.com> wrote:
> The build report reports:
>
>    .tmp_kallsyms1.o: In function `kallsyms_relative_base':
>>> (.rodata+0x8a18): undefined reference to `_text'
>
> This is when using 'make alldefconfig'. Adding this _text symbol to mark
> the start of the kernel as in other architecture fixes this.
>
> Signed-off-by: Stafford Horne <shorne@gmail.com>
> ---
>  arch/openrisc/kernel/vmlinux.lds.S | 3 +++
>  1 file changed, 3 insertions(+)
>
> diff --git a/arch/openrisc/kernel/vmlinux.lds.S b/arch/openrisc/kernel/vmlinux.lds.S
> index ef31fc2..58eaca0 100644
> --- a/arch/openrisc/kernel/vmlinux.lds.S
> +++ b/arch/openrisc/kernel/vmlinux.lds.S
> @@ -44,6 +44,8 @@ SECTIONS
>          /* Read-only sections, merged into text segment: */
>          . = LOAD_BASE ;
>
> +       _text = .;
> +
>         /* _s_kernel_ro must be page aligned */
>         . = ALIGN(PAGE_SIZE);
>         _s_kernel_ro = .;
> @@ -66,6 +68,7 @@ SECTIONS
>          * fixup is definitely necessary
>          */
>
> +       _data = .;

This change is not mentioned in the patch description.
Is it required? Does it fix something different?

>         _sdata = .;
>
>         /* Page alignment required for RO_DATA_SECTION */

Gr{oetje,eeting}s,

                        Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [OpenRISC] [PATCH] openrisc: Add _text symbol to fix ksym build error
  2016-12-14 12:58 ` [OpenRISC] " Geert Uytterhoeven
@ 2016-12-14 13:12   ` Stafford Horne
  0 siblings, 0 replies; 3+ messages in thread
From: Stafford Horne @ 2016-12-14 13:12 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: linux-kernel@vger.kernel.org, Jonas Bonn, openrisc, Wu Fengguang,
	Guenter Roeck

Hi Geert,

On Wed, Dec 14, 2016 at 01:58:32PM +0100, Geert Uytterhoeven wrote:
> Hi Stafford,
> 
> On Wed, Dec 14, 2016 at 1:55 PM, Stafford Horne <shorne@gmail.com> wrote:
> > The build report reports:
> >
> >    .tmp_kallsyms1.o: In function `kallsyms_relative_base':
> >>> (.rodata+0x8a18): undefined reference to `_text'
> >
> > This is when using 'make alldefconfig'. Adding this _text symbol to mark
> > the start of the kernel as in other architecture fixes this.
> >
> > Signed-off-by: Stafford Horne <shorne@gmail.com>
> > ---
> >  arch/openrisc/kernel/vmlinux.lds.S | 3 +++
> >  1 file changed, 3 insertions(+)
> >
> > diff --git a/arch/openrisc/kernel/vmlinux.lds.S b/arch/openrisc/kernel/vmlinux.lds.S
> > index ef31fc2..58eaca0 100644
> > --- a/arch/openrisc/kernel/vmlinux.lds.S
> > +++ b/arch/openrisc/kernel/vmlinux.lds.S
> > @@ -44,6 +44,8 @@ SECTIONS
> >          /* Read-only sections, merged into text segment: */
> >          . = LOAD_BASE ;
> >
> > +       _text = .;
> > +
> >         /* _s_kernel_ro must be page aligned */
> >         . = ALIGN(PAGE_SIZE);
> >         _s_kernel_ro = .;
> > @@ -66,6 +68,7 @@ SECTIONS
> >          * fixup is definitely necessary
> >          */
> >
> > +       _data = .;
> 
> This change is not mentioned in the patch description.
> Is it required? Does it fix something different?

Good point.

I was just adding what I saw as missing in others. Also what I read in
include/asm-generic/sections.h.  However, when I read a bit closer it
mentions its only optional.

I will remove, it does not fix anything.

-Stafford

> >         _sdata = .;
> >
> >         /* Page alignment required for RO_DATA_SECTION */
> 
> Gr{oetje,eeting}s,
> 
>                         Geert
> 
> --
> Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
> 
> In personal conversations with technical people, I call myself a hacker. But
> when I'm talking to journalists I just say "programmer" or something like that.
>                                 -- Linus Torvalds

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-12-14 15:32 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-12-14 12:55 [PATCH] openrisc: Add _text symbol to fix ksym build error Stafford Horne
2016-12-14 12:58 ` [OpenRISC] " Geert Uytterhoeven
2016-12-14 13:12   ` Stafford Horne

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox