diff options
| author | Simon Glass <sjg@chromium.org> | 2011-10-21 18:51:38 +0000 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2011-10-26 21:35:43 +0200 | 
| commit | 1aec244acf9daf0d4dad80fe86b2c2b7404251d6 (patch) | |
| tree | 072eec3dbe5035782067df42b6e7aa449b8b8002 /include/common.h | |
| parent | 58f317d1823c34b41990f21931d143a6606f5507 (diff) | |
| download | olio-uboot-2014.01-1aec244acf9daf0d4dad80fe86b2c2b7404251d6.tar.xz olio-uboot-2014.01-1aec244acf9daf0d4dad80fe86b2c2b7404251d6.zip | |
tftpput: add save_addr and save_size global variables
We need something akin to load_addr to handle saving data.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/common.h')
| -rw-r--r-- | include/common.h | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/include/common.h b/include/common.h index 9166ca1ed..825ab72c0 100644 --- a/include/common.h +++ b/include/common.h @@ -284,6 +284,8 @@ void flash_perror (int);  int	source (ulong addr, const char *fit_uname);  extern ulong load_addr;		/* Default Load Address */ +extern ulong save_addr;		/* Default Save Address */ +extern ulong save_size;		/* Default Save Size */  /* common/cmd_doc.c */  void	doc_probe(unsigned long physadr); |