diff options
author | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2013-04-12 05:14:31 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2013-04-14 16:07:54 +0200 |
commit | e7497891e34efe5cb2b3a3dc7c6c096c012ede28 (patch) | |
tree | 5bbaf068e7b0474594bda7a585e387d1d93aadb2 /board/ait | |
parent | 6ebc346111b30f854ead1c06a0afb37f8c704ce4 (diff) |
cam_enc_4xx: convert to CONFIG_SPL_MAX_FOOTPRINT
This target wants to check full SPL size, BSS included.
Remove CONFIG_SPL_MAX_SIZE definition and instead define
CONFIG_SPL_MAX_FOOTPRINT.
Signed-off-by: Albert ARIBAUD <albert.u.boot@aribaud.net>
Diffstat (limited to 'board/ait')
-rw-r--r-- | board/ait/cam_enc_4xx/u-boot-spl.lds | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/ait/cam_enc_4xx/u-boot-spl.lds b/board/ait/cam_enc_4xx/u-boot-spl.lds index be1027d9a5c..1daa1b3b909 100644 --- a/board/ait/cam_enc_4xx/u-boot-spl.lds +++ b/board/ait/cam_enc_4xx/u-boot-spl.lds @@ -25,7 +25,7 @@ */ MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE,\ - LENGTH = CONFIG_SPL_MAX_SIZE } + LENGTH = CONFIG_SPL_MAX_FOOTPRINT } OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm") OUTPUT_ARCH(arm) |