diff options
| author | Simon Glass <[email protected]> | 2017-11-13 18:54:59 -0700 |
|---|---|---|
| committer | Simon Glass <[email protected]> | 2017-12-12 19:53:45 -0700 |
| commit | f689890d8ec52c8b9d005fbf7f6df00dcf9895db (patch) | |
| tree | 436e8ae220835791a97cf7357b1107b593d06a44 /tools/binman/test | |
| parent | 5cfcf7e0fdb265672dd8ee7d3e881190ed06ff98 (diff) | |
binman: Adjust size of test SPL binary
This is only 3 bytes long which is not enough to hold two symbol values,
needed to test the binman symbols feature. Increase it to 15 bytes.
Using very small regions is useful since we can easily compare them in
tests and errors are fairly easy to diagnose.
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'tools/binman/test')
| -rw-r--r-- | tools/binman/test/21_image_pad.dts | 2 | ||||
| -rw-r--r-- | tools/binman/test/24_sorted.dts | 4 | ||||
| -rw-r--r-- | tools/binman/test/28_pack_4gb_outside.dts | 4 | ||||
| -rw-r--r-- | tools/binman/test/29_x86-rom.dts | 6 |
4 files changed, 8 insertions, 8 deletions
diff --git a/tools/binman/test/21_image_pad.dts b/tools/binman/test/21_image_pad.dts index daf8385f6d5..bf39dc1b6f7 100644 --- a/tools/binman/test/21_image_pad.dts +++ b/tools/binman/test/21_image_pad.dts @@ -10,7 +10,7 @@ }; u-boot { - pos = <12>; + pos = <20>; }; }; }; diff --git a/tools/binman/test/24_sorted.dts b/tools/binman/test/24_sorted.dts index 9f4151c932b..43a7831341c 100644 --- a/tools/binman/test/24_sorted.dts +++ b/tools/binman/test/24_sorted.dts @@ -7,11 +7,11 @@ binman { sort-by-pos; u-boot { - pos = <10>; + pos = <22>; }; u-boot-spl { - pos = <5>; + pos = <1>; }; }; }; diff --git a/tools/binman/test/28_pack_4gb_outside.dts b/tools/binman/test/28_pack_4gb_outside.dts index ff468c7d41d..18d6bb5b8af 100644 --- a/tools/binman/test/28_pack_4gb_outside.dts +++ b/tools/binman/test/28_pack_4gb_outside.dts @@ -7,13 +7,13 @@ binman { sort-by-pos; end-at-4gb; - size = <16>; + size = <32>; u-boot { pos = <0>; }; u-boot-spl { - pos = <0xfffffff7>; + pos = <0xffffffeb>; }; }; }; diff --git a/tools/binman/test/29_x86-rom.dts b/tools/binman/test/29_x86-rom.dts index 075ede36ab3..d49078e19e2 100644 --- a/tools/binman/test/29_x86-rom.dts +++ b/tools/binman/test/29_x86-rom.dts @@ -7,13 +7,13 @@ binman { sort-by-pos; end-at-4gb; - size = <16>; + size = <32>; u-boot { - pos = <0xfffffff0>; + pos = <0xffffffe0>; }; u-boot-spl { - pos = <0xfffffff7>; + pos = <0xffffffeb>; }; }; }; |
