diff options
author | Wolfgang Denk <wd@denx.de> | 2012-03-17 21:46:33 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2012-03-17 21:46:33 +0100 |
commit | 6ae38b8c583c61f00c2fe9904cafa81932c7faaf (patch) | |
tree | 5a600d4098039983b97b5ba6ff9edf559cb805d5 /arch/sandbox/include/asm/global_data.h | |
parent | df25d49959da75cfaa1e4708669ef550d0000ce6 (diff) | |
parent | 9d72e67b79a454dcd6847bcd80c9929e0ec9054d (diff) |
Merge branch 'sandbox' of git://git.denx.de/u-boot-blackfin
* 'sandbox' of git://git.denx.de/u-boot-blackfin:
sandbox: mark os_exit as noreturn
sandbox: add getopt support
sandbox: allow processing before main loop
sandbox: add concept of sandbox state
sandbox: disable fortification
sandbox: u-boot.lds: tweak style
sandbox: add get_{tbclk,ticks}
sandbox: enable GPIO driver
sandbox: gpio: add basic driver for simulating GPIOs
sandbox: add flags for open() call
sandbox: config: enable fdt and snprintf() options
sandbox: fdt: add support for CONFIG_OF_CONTROL
sandbox: add lseek helper
sandbox: add ifdef protection to os.h
sandbox: add required header to os.c
sandbox: sort header files in os.c
Diffstat (limited to 'arch/sandbox/include/asm/global_data.h')
-rw-r--r-- | arch/sandbox/include/asm/global_data.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/sandbox/include/asm/global_data.h b/arch/sandbox/include/asm/global_data.h index 8d47191f92..01a706362e 100644 --- a/arch/sandbox/include/asm/global_data.h +++ b/arch/sandbox/include/asm/global_data.h @@ -45,6 +45,7 @@ typedef struct global_data { unsigned long fb_base; /* base address of frame buffer */ u8 *ram_buf; /* emulated RAM buffer */ phys_size_t ram_size; /* RAM size */ + const void *fdt_blob; /* Our device tree, NULL if none */ void **jt; /* jump table */ char env_buf[32]; /* buffer for getenv() before reloc. */ } gd_t; |