Skip to content
Snippets Groups Projects
Commit 662e5cb3 authored by Shinya Kuribayashi's avatar Shinya Kuribayashi
Browse files

[MIPS] u-boot.lds: Cleanup __u_boot_cmd_{start,end}

parent 5947f699
No related branches found
No related tags found
No related merge requests found
...@@ -54,10 +54,11 @@ SECTIONS ...@@ -54,10 +54,11 @@ SECTIONS
.sdata : { *(.sdata) } .sdata : { *(.sdata) }
. = .; .u_boot_cmd : {
__u_boot_cmd_start = .; __u_boot_cmd_start = .;
.u_boot_cmd : { *(.u_boot_cmd) } *(.u_boot_cmd)
__u_boot_cmd_end = .; __u_boot_cmd_end = .;
}
uboot_end_data = .; uboot_end_data = .;
num_got_entries = (__got_end - __got_start) >> 2; num_got_entries = (__got_end - __got_start) >> 2;
......
...@@ -54,9 +54,11 @@ SECTIONS ...@@ -54,9 +54,11 @@ SECTIONS
.sdata : { *(.sdata) } .sdata : { *(.sdata) }
__u_boot_cmd_start = .; .u_boot_cmd : {
.u_boot_cmd : { *(.u_boot_cmd) } __u_boot_cmd_start = .;
__u_boot_cmd_end = .; *(.u_boot_cmd)
__u_boot_cmd_end = .;
}
uboot_end_data = .; uboot_end_data = .;
num_got_entries = (__got_end - __got_start) >> 2; num_got_entries = (__got_end - __got_start) >> 2;
......
...@@ -54,10 +54,11 @@ SECTIONS ...@@ -54,10 +54,11 @@ SECTIONS
.sdata : { *(.sdata) } .sdata : { *(.sdata) }
. = .; .u_boot_cmd : {
__u_boot_cmd_start = .; __u_boot_cmd_start = .;
.u_boot_cmd : { *(.u_boot_cmd) } *(.u_boot_cmd)
__u_boot_cmd_end = .; __u_boot_cmd_end = .;
}
uboot_end_data = .; uboot_end_data = .;
num_got_entries = (__got_end - __got_start) >> 2; num_got_entries = (__got_end - __got_start) >> 2;
......
...@@ -54,9 +54,11 @@ SECTIONS ...@@ -54,9 +54,11 @@ SECTIONS
.sdata : { *(.sdata) } .sdata : { *(.sdata) }
__u_boot_cmd_start = .; .u_boot_cmd : {
.u_boot_cmd : { *(.u_boot_cmd) } __u_boot_cmd_start = .;
__u_boot_cmd_end = .; *(.u_boot_cmd)
__u_boot_cmd_end = .;
}
uboot_end_data = .; uboot_end_data = .;
num_got_entries = (__got_end - __got_start) >> 2; num_got_entries = (__got_end - __got_start) >> 2;
......
...@@ -64,10 +64,11 @@ SECTIONS ...@@ -64,10 +64,11 @@ SECTIONS
.sdata : { *(.sdata) } .sdata : { *(.sdata) }
. = .; .u_boot_cmd : {
__u_boot_cmd_start = .; __u_boot_cmd_start = .;
.u_boot_cmd : { *(.u_boot_cmd) } *(.u_boot_cmd)
__u_boot_cmd_end = .; __u_boot_cmd_end = .;
}
uboot_end_data = .; uboot_end_data = .;
num_got_entries = (__got_end - __got_start) >> 2; num_got_entries = (__got_end - __got_start) >> 2;
......
...@@ -54,10 +54,11 @@ SECTIONS ...@@ -54,10 +54,11 @@ SECTIONS
.sdata : { *(.sdata) } .sdata : { *(.sdata) }
. = .; .u_boot_cmd : {
__u_boot_cmd_start = .; __u_boot_cmd_start = .;
.u_boot_cmd : { *(.u_boot_cmd) } *(.u_boot_cmd)
__u_boot_cmd_end = .; __u_boot_cmd_end = .;
}
uboot_end_data = .; uboot_end_data = .;
num_got_entries = (__got_end - __got_start) >> 2; num_got_entries = (__got_end - __got_start) >> 2;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment