diff options
Diffstat (limited to 'board/dave')
-rw-r--r-- | board/dave/B2/u-boot.lds | 1 | ||||
-rw-r--r-- | board/dave/PPChameleonEVB/u-boot.lds | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/board/dave/B2/u-boot.lds b/board/dave/B2/u-boot.lds index f1bbd5d..e10ac43 100644 --- a/board/dave/B2/u-boot.lds +++ b/board/dave/B2/u-boot.lds @@ -44,6 +44,7 @@ SECTIONS . = ALIGN(4); .got : { *(.got) } + . = .; __u_boot_cmd_start = .; .u_boot_cmd : { *(.u_boot_cmd) } __u_boot_cmd_end = .; diff --git a/board/dave/PPChameleonEVB/u-boot.lds b/board/dave/PPChameleonEVB/u-boot.lds index 941f8df..4113ec6 100644 --- a/board/dave/PPChameleonEVB/u-boot.lds +++ b/board/dave/PPChameleonEVB/u-boot.lds @@ -115,11 +115,13 @@ 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 = .; |