diff options
| author | Simon Glass <sjg@chromium.org> | 2011-10-10 08:22:14 +0000 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2011-10-17 22:45:50 +0200 | 
| commit | 744d9859a71c515118457fecb7a58674b600e81a (patch) | |
| tree | 47f1788b7253239bd0fa42cfc28f3762e786fab2 /include/common.h | |
| parent | e72f0b1521135f48aec7cc92eeb1e052ea6a10e9 (diff) | |
| download | olio-uboot-2014.01-744d9859a71c515118457fecb7a58674b600e81a.tar.xz olio-uboot-2014.01-744d9859a71c515118457fecb7a58674b600e81a.zip | |
sandbox: Add architecture header files
This adds required header files for the sandbox architecture, and a basic
description of what sandbox is (README.sandbox).
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/common.h')
| -rw-r--r-- | include/common.h | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/include/common.h b/include/common.h index 77a29c8b1..4c3e3a68d 100644 --- a/include/common.h +++ b/include/common.h @@ -311,6 +311,9 @@ int	setenv	     (const char *, const char *);  #ifdef CONFIG_X86		/* x86 version to be fixed! */  # include <asm/u-boot-x86.h>  #endif /* CONFIG_X86 */ +#ifdef CONFIG_SANDBOX +# include <asm/u-boot-sandbox.h>	/* TODO(sjg) what needs to be fixed? */ +#endif  #ifdef CONFIG_AUTO_COMPLETE  int env_complete(char *var, int maxv, char *cmdv[], int maxsz, char *buf); |