Heiko Schocher | 4dd8349 | 2011-11-01 20:00:35 +0000 | [diff] [blame] | 1 | # |
| 2 | # (C Copyright 2011 |
| 3 | # Heiko Schocher DENX Software Engineering hs@denx.de. |
| 4 | # |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | # SPDX-License-Identifier: GPL-2.0+ |
Heiko Schocher | 4dd8349 | 2011-11-01 20:00:35 +0000 | [diff] [blame] | 6 | # |
| 7 | # Refer doc/README.ublimage for more details about how-to configure |
| 8 | # and create ublimage boot image |
| 9 | # |
| 10 | # The syntax is taken as close as possible with the kwbimage |
| 11 | |
| 12 | # UBL special mode : one of |
| 13 | # safe (the board has no nand neither onenand) |
| 14 | MODE safe |
| 15 | |
| 16 | # Entry point address for the user bootloader (absolute address) |
| 17 | # nand spl TEXT_BASE = 0x20 !! |
| 18 | ENTRY 0x00000020 |
| 19 | |
| 20 | # Number of pages (size of user bootloader in number of pages) |
| 21 | # @ nand spl 6 pages |
| 22 | PAGES 6 |
| 23 | |
| 24 | # Block number where user bootloader is present |
Heiko Schocher | 6be6db5 | 2012-01-16 21:20:09 +0000 | [diff] [blame] | 25 | START_BLOCK 0 |
Heiko Schocher | 4dd8349 | 2011-11-01 20:00:35 +0000 | [diff] [blame] | 26 | |
| 27 | # Page number where user bootloader is present |
| 28 | # Page 0 is always UBL header |
| 29 | START_PAGE 0 |
| 30 | |
| 31 | LD_ADDR 0x20 |