Simon Glass | f2faffe | 2017-11-13 18:55:06 -0700 | [diff] [blame] | 1 | #include <config.h> |
| 2 | |
Stephen Warren | 3cdb5fa | 2017-12-19 18:30:34 -0700 | [diff] [blame] | 3 | #ifdef CONFIG_SPL_TEXT_BASE |
| 4 | #define U_BOOT_OFFSET (CONFIG_SYS_TEXT_BASE - CONFIG_SPL_TEXT_BASE) |
| 5 | #else |
| 6 | #define U_BOOT_OFFSET 0 |
| 7 | #endif |
| 8 | |
Simon Glass | f2faffe | 2017-11-13 18:55:06 -0700 | [diff] [blame] | 9 | / { |
| 10 | binman { |
| 11 | multiple-images; |
| 12 | image1 { |
| 13 | filename = "u-boot-tegra.bin"; |
| 14 | pad-byte = <0xff>; |
| 15 | u-boot-spl { |
| 16 | }; |
| 17 | u-boot { |
Simon Glass | 3ab9598 | 2018-08-01 15:22:37 -0600 | [diff] [blame] | 18 | offset = <(U_BOOT_OFFSET)>; |
Simon Glass | f2faffe | 2017-11-13 18:55:06 -0700 | [diff] [blame] | 19 | }; |
| 20 | }; |
| 21 | |
| 22 | /* Same as image1 - some tools still expect the -dtb suffix */ |
| 23 | image2 { |
| 24 | filename = "u-boot-dtb-tegra.bin"; |
| 25 | pad-byte = <0xff>; |
| 26 | u-boot-spl { |
| 27 | }; |
| 28 | u-boot { |
Simon Glass | 3ab9598 | 2018-08-01 15:22:37 -0600 | [diff] [blame] | 29 | offset = <(U_BOOT_OFFSET)>; |
Simon Glass | f2faffe | 2017-11-13 18:55:06 -0700 | [diff] [blame] | 30 | }; |
| 31 | }; |
| 32 | |
| 33 | image3 { |
| 34 | filename = "u-boot-nodtb-tegra.bin"; |
| 35 | pad-byte = <0xff>; |
| 36 | u-boot-spl { |
| 37 | }; |
| 38 | u-boot-nodtb { |
Simon Glass | 3ab9598 | 2018-08-01 15:22:37 -0600 | [diff] [blame] | 39 | offset = <(U_BOOT_OFFSET)>; |
Simon Glass | f2faffe | 2017-11-13 18:55:06 -0700 | [diff] [blame] | 40 | }; |
| 41 | }; |
| 42 | }; |
| 43 | }; |