From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dinh Nguyen Date: Tue, 24 Jan 2017 21:31:59 -0600 Subject: [U-Boot] [PATCH v4 1/7] arm: socfpga: add env settings to common header In-Reply-To: <1485277563-18514-2-git-send-email-dwesterg@gmail.com> References: <1485277563-18514-1-git-send-email-dwesterg@gmail.com> <1485277563-18514-2-git-send-email-dwesterg@gmail.com> Message-ID: <2f76d433-3423-9af5-8568-15a167e00a6f@kernel.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 01/24/2017 11:05 AM, Dalon Westergreen wrote: > From: Dalon Westergreen > > Move repeated environment settings for socfpga boards > to a common header. > > The default values for the boot partition and the > OS filesystem partition have changed and as > as result the default uboot environment for socfpga > boards needs updating. > > Move to using CONFIG_DEFAULT_DEVICE_TREE for setting the > default linux devicetree used during linux boot. > > Signed-off-by: Dalon Westergreen > --- > include/configs/socfpga_common.h | 27 +++++++++++++++++++++++++++ > 1 file changed, 27 insertions(+) > > diff --git a/include/configs/socfpga_common.h b/include/configs/socfpga_common.h > index 6285266..bdd6e2f 100644 > --- a/include/configs/socfpga_common.h > +++ b/include/configs/socfpga_common.h > @@ -336,5 +336,32 @@ unsigned int cm_get_qspi_controller_clk_hz(void); > * Stack setup > */ > #define CONFIG_SPL_STACK CONFIG_SYS_INIT_SP_ADDR > + > +/* Extra Environment */ > +#ifndef CONFIG_EXTRA_ENV_SETTINGS > +#define CONFIG_EXTRA_ENV_SETTINGS \ > + "verify=n\0" \ > + "loadaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \ > + "bootimage=" CONFIG_BOOTFILE "\0" \ > + "fdt_addr=100\0" \ > + "fdtimage=" CONFIG_DEFAULT_FDT_FILE "\0" \ > + "ramboot=setenv bootargs " CONFIG_BOOTARGS ";" \ > + "bootm ${loadaddr} - ${fdt_addr}\0" \ > + "mmcroot=/dev/mmcblk0p3\0" \ Should this be mmcblk0p2? Dinh