diff options
author | Simon Glass <sjg@chromium.org> | 2012-02-15 15:51:12 -0800 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2012-03-12 11:03:42 -0400 |
commit | 7b06b66cd7f9f4d33cfd3e68046c094a43024cda (patch) | |
tree | f44d5a839a918a8a1113f0dd0e2bed72bc65f98f /include | |
parent | f7b2af0a228645f972cc882534b68d32c739f5e9 (diff) | |
download | u-boot-imx-7b06b66cd7f9f4d33cfd3e68046c094a43024cda.zip u-boot-imx-7b06b66cd7f9f4d33cfd3e68046c094a43024cda.tar.gz u-boot-imx-7b06b66cd7f9f4d33cfd3e68046c094a43024cda.tar.bz2 |
sandbox: config: enable fdt and snprintf() options
Enable fdt code and safe snprintf() options for sandbox.
Signed-off-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/sandbox.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/configs/sandbox.h b/include/configs/sandbox.h index 10565e6..6790216 100644 --- a/include/configs/sandbox.h +++ b/include/configs/sandbox.h @@ -28,6 +28,12 @@ /* Number of bits in a C 'long' on this architecture */ #define CONFIG_SANDBOX_BITS_PER_LONG 64 +#define CONFIG_OF_CONTROL +#define CONFIG_OF_LIBFDT +#define CONFIG_LMB + +#define CONFIG_SYS_VSNPRINTF + /* * Size of malloc() pool, although we don't actually use this yet. */ |