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
nexedi
linux
Commits
41e69380
Commit
41e69380
authored
Jan 15, 2003
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://are.twiddle.net/axp-2.5
into home.transmeta.com:/home/torvalds/v2.5/linux
parents
688aaef8
ce19076b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
26 deletions
+16
-26
arch/alpha/vmlinux.lds.S
arch/alpha/vmlinux.lds.S
+16
-26
No files found.
arch/alpha/vmlinux.lds.S
View file @
41e69380
...
...
@@ -21,41 +21,30 @@ SECTIONS
*(.
gnu.warning
)
}
:
kernel
_etext
=
.
; /* End of text section */
RODATA
.
=
ALIGN
(
16
)
;
__start___ex_table
=
.
; /* Exception table */
__ex_table
:
{
*(
__ex_table
)
}
__stop___ex_table
=
.
;
.
=
ALIGN
(
8
)
;
__start___ksymtab
=
.
; /* Kernel symbol table */
__ksymtab
:
{
*(
__ksymtab
)
}
__stop___ksymtab
=
.
;
.
=
ALIGN
(
8
)
;
__start___gpl_ksymtab
=
.
; /* kernel symbol table - GPL-only symbols */
__gpl_ksymtab
:
{
*(
__gpl_ksymtab
)
}
__stop___gpl_ksymtab
=
.
;
.
=
ALIGN
(
8
)
;
__start___kallsyms
=
.
; /* All kernel symbols */
__kallsyms
:
{
*(
__kallsyms
)
}
__stop___kallsyms
=
.
;
RODATA
/
*
Will
be
freed
after
init
*/
.
=
ALIGN
(
8192
)
; /* Init code and data */
__init_begin
=
.
;
.
init.text
:
{
*(
.
init
.
text
)
}
.
init.data
:
{
*(
.
init
.
data
)
}
.
=
ALIGN
(
16
)
;
__setup_start
=
.
;
.
init.setup
:
{
*(
.
init
.
setup
)
}
__setup_end
=
.
;
.
=
ALIGN
(
8
)
;
__start___param
=
.
;
__param
:
{
*(
__param
)
}
__stop___param
=
.
;
.
=
ALIGN
(
8
)
;
__initcall_start
=
.
;
.
initcall.init
:
{
...
...
@@ -68,24 +57,23 @@ SECTIONS
*(.
initcall7.init
)
}
__initcall_end
=
.
;
.
=
ALIGN
(
8192
)
;
__initramfs_start
=
.
;
.
init.ramfs
:
{
*(
.
init
.
ramfs
)
}
__initramfs_end
=
.
;
.
=
ALIGN
(
64
)
;
__per_cpu_start
=
.
;
.
data.percpu
:
{
*(
.
data
.
percpu
)
}
__per_cpu_end
=
.
;
.
=
ALIGN
(
8192
)
;
.
=
ALIGN
(
2
*
8192
)
;
__init_end
=
.
;
/
*
Freed
after
init
ends
here
*/
/
*
writeable
*/
_data
=
.
;
.
data
:
{
/*
Data
*/
*(.
data
)
CONSTRUCTORS
}
/
*
Note
2
page
alignment
above
.
*/
.
data.
init_thread
:
{
*(
.
data
.
init_thread
)
}
.
=
ALIGN
(
8192
)
;
.
data.
page_aligned
:
{
*(
.
data
.
page_aligned
)
}
...
...
@@ -93,14 +81,17 @@ SECTIONS
.
=
ALIGN
(
64
)
;
.
data.
cacheline_aligned
:
{
*(
.
data
.
cacheline_aligned
)
}
_data
=
.
;
.
data
:
{
/*
Data
*/
*(.
data
)
CONSTRUCTORS
}
.
got
:
{
*(
.
got
)
}
.
sdata
:
{
*(
.
sdata
)
}
_edata
=
.
; /* End of data section */
.
=
ALIGN
(
2
*
8192
)
; /* Inititial task and stack */
.
data.
init_thread
:
{
*(
.
data
.
init_thread
)
}
__bss_start
=
.
;
.
sbss
:
{
*(
.
sbss
)
*(
.
scommon
)
}
.
bss
:
{
*(
.
bss
)
*(
COMMON
)
}
...
...
@@ -111,7 +102,6 @@ SECTIONS
/
*
Sections
to
be
discarded
*/
/
DISCARD
/
:
{
*(
.
exit
.
text
)
*(
.
exit
.
data
)
*(
.
exitcall
.
exit
)
}
.
mdebug
0
:
{
*(
.
mdebug
)
}
.
note
0
:
{
*(
.
note
)
}
.
comment
0
:
{
*(
.
comment
)
}
...
...
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