diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/common.h | 5 | ||||
| -rw-r--r-- | include/image.h | 1 | 
2 files changed, 5 insertions, 1 deletions
| diff --git a/include/common.h b/include/common.h index 5e3c5eeee..d0bf1e8ab 100644 --- a/include/common.h +++ b/include/common.h @@ -340,6 +340,11 @@ int	envmatch     (uchar *, int);  char	*getenv	     (const char *);  int	getenv_f     (const char *name, char *buf, unsigned len);  ulong getenv_ulong(const char *name, int base, ulong default_val); +/* + * Read an environment variable as a boolean + * Return -1 if variable does not exist (default to true) + */ +int getenv_yesno(const char *var);  int	saveenv	     (void);  int	setenv	     (const char *, const char *);  int setenv_ulong(const char *varname, ulong value); diff --git a/include/image.h b/include/image.h index f54d98330..b958b18a4 100644 --- a/include/image.h +++ b/include/image.h @@ -460,7 +460,6 @@ static inline void image_set_name(image_header_t *hdr, const char *name)  int image_check_hcrc(const image_header_t *hdr);  int image_check_dcrc(const image_header_t *hdr);  #ifndef USE_HOSTCC -int getenv_yesno(char *var);  ulong getenv_bootm_low(void);  phys_size_t getenv_bootm_size(void);  phys_size_t getenv_bootm_mapsize(void); |