diff options
| author | Grant Likely <grant.likely@linaro.org> | 2011-03-28 09:58:43 +0000 | 
|---|---|---|
| committer | Gerald Van Baren <gvb@unssw.com> | 2011-04-25 21:11:20 -0400 | 
| commit | c3624e6ed0a36f54aa0b3e7f32d30a6fde434f51 (patch) | |
| tree | 9a9de9718b28b0a526708466f5eb12782352607d /include/image.h | |
| parent | 590d3cacb98cb377b127869b58507d2afe9c904a (diff) | |
| download | olio-uboot-2014.01-c3624e6ed0a36f54aa0b3e7f32d30a6fde434f51.tar.xz olio-uboot-2014.01-c3624e6ed0a36f54aa0b3e7f32d30a6fde434f51.zip | |
Default to bootm_size() when CONFIG_SYS_BOOTMAPSZ is not defined
This patch adds a function getenv_bootm_mapsize() for obtaining the
size of the early mapped region accessible by the kernel during early
boot.  It defaults to CONFIG_SYS_BOOTMAPSZ, or if not defined,
defaults to getenv_bootm_size(), which in turn defaults to the size of
RAM.
getenv_bootm_mapsize() can also be overridden with a "bootm_mapsize"
environmental variable.
Signed-off-by: Grant Likely <grant.likely@linaro.org>
Diffstat (limited to 'include/image.h')
| -rw-r--r-- | include/image.h | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/include/image.h b/include/image.h index 792de2510..8c4055731 100644 --- a/include/image.h +++ b/include/image.h @@ -451,6 +451,7 @@ int image_check_dcrc (const image_header_t *hdr);  int getenv_yesno (char *var);  ulong getenv_bootm_low(void);  phys_size_t getenv_bootm_size(void); +phys_size_t getenv_bootm_mapsize(void);  void memmove_wd (void *to, void *from, size_t len, ulong chunksz);  #endif |