Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 81174262 authored by Greg Ungerer's avatar Greg Ungerer
Browse files

m68knommu: add missing linker __modver section



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: default avatarGreg Ungerer <gerg@uclinux.org>
parent b14769d9
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -141,6 +141,12 @@ SECTIONS {
		*(__param)
		__stop___param = .;

		/* Built-in module versions */
		. = ALIGN(4) ;
		__start___modver = .;
		*(__modver)
		__stop___modver = .;

		. = ALIGN(4) ;
		_etext = . ;
	} > TEXT