Skip to content

Commit

Permalink
removed underscore symbols in .ld files
Browse files Browse the repository at this point in the history
  • Loading branch information
jtauber committed Oct 11, 2009
1 parent c5033b0 commit 500fa00
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
4 changes: 0 additions & 4 deletions echo/kernel.ld
Expand Up @@ -12,7 +12,6 @@ SECTIONS

/* symbols to mark start of code segment */
code = .;
_code = .;

/* kernel code */
*(.text)
Expand All @@ -29,7 +28,6 @@ SECTIONS

/* symbols to mark start of data segment */
data = .;
_data = .;

/* kernel data */
*(.data)
Expand All @@ -43,7 +41,6 @@ SECTIONS

/* symbols to mark start of BSS segment */
bss = .;
_bss = .;

/* kernel BSS */
*(.bss)
Expand All @@ -56,5 +53,4 @@ SECTIONS

/* symbols to mark end of kernel */
end = .;
_end = .;
}
4 changes: 0 additions & 4 deletions oneplusone/kernel.ld
Expand Up @@ -12,7 +12,6 @@ SECTIONS

/* symbols to mark start of code segment */
code = .;
_code = .;

/* kernel code */
*(.text)
Expand All @@ -29,7 +28,6 @@ SECTIONS

/* symbols to mark start of data segment */
data = .;
_data = .;

/* kernel data */
*(.data)
Expand All @@ -43,7 +41,6 @@ SECTIONS

/* symbols to mark start of BSS segment */
bss = .;
_bss = .;

/* kernel BSS */
*(.bss)
Expand All @@ -56,5 +53,4 @@ SECTIONS

/* symbols to mark end of kernel */
end = .;
_end = .;
}

0 comments on commit 500fa00

Please sign in to comment.