Re: [U-Boot] [RFC PATCH 17/20] sandbox: Add basic config file

2011-09-26 Thread Simon Glass
Hi Mike, On Sun, Sep 25, 2011 at 9:52 PM, Mike Frysinger wrote: > On Friday, September 23, 2011 12:00:15 Simon Glass wrote: >> On Sat, Sep 17, 2011 at 5:22 PM, Mike Frysinger wrote: >> > On Saturday, September 17, 2011 12:48:56 Simon Glass wrote: >> >> +#define CONFIG_DRAM_SIZE     (128 << 20) >>

Re: [U-Boot] [RFC PATCH 17/20] sandbox: Add basic config file

2011-09-25 Thread Mike Frysinger
On Friday, September 23, 2011 12:00:15 Simon Glass wrote: > On Sat, Sep 17, 2011 at 5:22 PM, Mike Frysinger wrote: > > On Saturday, September 17, 2011 12:48:56 Simon Glass wrote: > >> +#define CONFIG_DRAM_SIZE (128 << 20) > > > > do you need any of this ? > > I want to have simulated DRAM, so

Re: [U-Boot] [RFC PATCH 17/20] sandbox: Add basic config file

2011-09-23 Thread Simon Glass
Hi Mike, On Sat, Sep 17, 2011 at 5:22 PM, Mike Frysinger wrote: > On Saturday, September 17, 2011 12:48:56 Simon Glass wrote: >> --- /dev/null >> +++ b/include/configs/sandbox.h > > missing #ifdef multiple include protection > >> +#define CONFIG_NR_DRAM_BANKS 1 >> +#define CONFIG_SYS_SDRAM_BASE  

Re: [U-Boot] [RFC PATCH 17/20] sandbox: Add basic config file

2011-09-17 Thread Mike Frysinger
On Saturday, September 17, 2011 12:48:56 Simon Glass wrote: > --- /dev/null > +++ b/include/configs/sandbox.h missing #ifdef multiple include protection > +#define CONFIG_NR_DRAM_BANKS 1 > +#define CONFIG_SYS_SDRAM_BASE0 > +#define CONFIG_DRAM_SIZE (128 << 20) do you need any of this

[U-Boot] [RFC PATCH 17/20] sandbox: Add basic config file

2011-09-17 Thread Simon Glass
This includes just a few basic features to illustrate the concept. Signed-off-by: Simon Glass --- include/configs/sandbox.h | 80 + 1 files changed, 80 insertions(+), 0 deletions(-) create mode 100644 include/configs/sandbox.h diff --git a/include/