Skip to content

Commit 65dab1d

Browse files
stffrdhrngregkh
authored andcommitted
openrisc: Add _text symbol to fix ksym build error
[ Upstream commit 086cc1c31a0ec075dac02425367c871bb65bc2c9 ] The build robot 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> Acked-by: Jonas Bonn <jonas@southpole.se> Signed-off-by: Sasha Levin <alexander.levin@verizon.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 4c1ea6a commit 65dab1d

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

arch/openrisc/kernel/vmlinux.lds.S

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ SECTIONS
3838
/* Read-only sections, merged into text segment: */
3939
. = LOAD_BASE ;
4040

41+
_text = .;
42+
4143
/* _s_kernel_ro must be page aligned */
4244
. = ALIGN(PAGE_SIZE);
4345
_s_kernel_ro = .;

0 commit comments

Comments
 (0)