Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
7a040ebc
Commit
7a040ebc
authored
Jan 16, 2003
by
Jeff Dike
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added gpl_ksymtab and kallsyms sections to the linker scripts.
parent
dbb3cc44
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
0 deletions
+17
-0
arch/um/dyn.lds.S
arch/um/dyn.lds.S
+8
-0
arch/um/uml.lds.S
arch/um/uml.lds.S
+9
-0
No files found.
arch/um/dyn.lds.S
View file @
7a040ebc
...
...
@@ -74,6 +74,14 @@ SECTIONS
__ksymtab
:
{
*(
__ksymtab
)
}
__stop___ksymtab
=
.
;
__start___gpl_ksymtab
=
.
; /* Kernel symbol table: GPL-only symbols */
__gpl_ksymtab
:
{
*(
__gpl_ksymtab
)
}
__stop___gpl_ksymtab
=
.
;
__start___kallsyms
=
.
; /* All kernel symbols */
__kallsyms
:
{
*(
__kallsyms
)
}
__stop___kallsyms
=
.
;
PROVIDE
(
__etext
=
.
)
;
PROVIDE
(
_etext
=
.
)
;
PROVIDE
(
etext
=
.
)
;
...
...
arch/um/uml.lds.S
View file @
7a040ebc
...
...
@@ -44,6 +44,15 @@ SECTIONS
__start___ksymtab
=
.
; /* Kernel symbol table */
__ksymtab
:
{
*(
__ksymtab
)
}
__stop___ksymtab
=
.
;
__start___gpl_ksymtab
=
.
; /* Kernel symbol table: GPL-only symbols */
__gpl_ksymtab
:
{
*(
__gpl_ksymtab
)
}
__stop___gpl_ksymtab
=
.
;
__start___kallsyms
=
.
; /* All kernel symbols */
__kallsyms
:
{
*(
__kallsyms
)
}
__stop___kallsyms
=
.
;
.
fini
:
{
*(
.
fini
)
}
=
0x9090
.
rodata
:
{
*(
.
rodata
)
*(
.
gnu
.
linkonce
.
r
*)
}
.
rodata1
:
{
*(
.
rodata1
)
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment