diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2017-01-02 20:00:59 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2017-01-02 20:00:59 +0300 |
commit | 71a332e5603e000b907e66d172eae0e7a8c2c653 (patch) | |
tree | 79b5080144229e774edf0ea49464fc136e8872da /arch | |
parent | 0c744ea4f77d72b3dcebb7a8f2684633ec79be88 (diff) | |
parent | 086cc1c31a0ec075dac02425367c871bb65bc2c9 (diff) | |
download | linux-71a332e5603e000b907e66d172eae0e7a8c2c653.tar.xz |
Merge tag 'openrisc-for-linus' of git://github.com/openrisc/linux
Pull Openrisc fix from Stafford Horne:
"There was nothing much interesting here except a build fix pointed out
by the test robots. Highlight:
- Defined _text symbol to fix build error"
* tag 'openrisc-for-linus' of git://github.com/openrisc/linux:
openrisc: Add _text symbol to fix ksym build error
Diffstat (limited to 'arch')
-rw-r--r-- | arch/openrisc/kernel/vmlinux.lds.S | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/openrisc/kernel/vmlinux.lds.S b/arch/openrisc/kernel/vmlinux.lds.S index ef31fc24344e..552544616b9d 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 = .; |