diff options
Diffstat (limited to 'board/cmi/u-boot.lds')
-rw-r--r-- | board/cmi/u-boot.lds | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/board/cmi/u-boot.lds b/board/cmi/u-boot.lds index 04cc87a..3188801 100644 --- a/board/cmi/u-boot.lds +++ b/board/cmi/u-boot.lds @@ -101,6 +101,11 @@ SECTIONS _edata = .; PROVIDE (edata = .); + __u_boot_cmd_start = .; + .u_boot_cmd : { *(.u_boot_cmd) } + __u_boot_cmd_end = .; + + __start___ex_table = .; __ex_table : { *(__ex_table) } __stop___ex_table = .; @@ -123,10 +128,10 @@ SECTIONS _end = . ; PROVIDE (end = .); - . = env_start; +/* . = env_start; .ppcenv : { common/environment.o (.ppcenv) } - +*/ } |