projects
/
platform
/
upstream
/
kernel-adaptation-pc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b14769d
)
m68knommu: add missing linker __modver section
author
Greg Ungerer
<gerg@uclinux.org>
Tue, 8 Feb 2011 04:45:59 +0000
(14:45 +1000)
committer
Greg Ungerer
<gerg@uclinux.org>
Tue, 15 Feb 2011 23:43:17 +0000
(09:43 +1000)
Add missing linker section __modver to fix:
LD vmlinux
/usr/local/bin/../m68k-uclinux/bin/ld.real: error: no memory region specified for loadable section `__modver'
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
arch/m68knommu/kernel/vmlinux.lds.S
patch
|
blob
|
history
diff --git
a/arch/m68knommu/kernel/vmlinux.lds.S
b/arch/m68knommu/kernel/vmlinux.lds.S
index
ef33213
..
47e15eb
100644
(file)
--- a/
arch/m68knommu/kernel/vmlinux.lds.S
+++ b/
arch/m68knommu/kernel/vmlinux.lds.S
@@
-141,6
+141,12
@@
SECTIONS {
*(__param)
__stop___param = .;
+ /* Built-in module versions */
+ . = ALIGN(4) ;
+ __start___modver = .;
+ *(__modver)
+ __stop___modver = .;
+
. = ALIGN(4) ;
_etext = . ;
} > TEXT