From mboxrd@z Thu Jan 1 00:00:00 1970 From: Chee, Tien Fong Date: Tue, 24 Oct 2017 05:37:02 +0000 Subject: [U-Boot] [PATCH v3 20/20] arm: socfpga: Enable SPL booting U-boot In-Reply-To: <5ff6f6b6-7d28-999a-15b0-49df86dae6fd@kernel.org> References: <1507882137-27841-1-git-send-email-tien.fong.chee@intel.com> <1507882137-27841-21-git-send-email-tien.fong.chee@intel.com> <5ff6f6b6-7d28-999a-15b0-49df86dae6fd@kernel.org> Message-ID: <1508823419.2221.6.camel@intel.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit To: u-boot@lists.denx.de On Jum, 2017-10-20 at 10:21 -0500, Dinh Nguyen wrote: > > On 10/13/2017 03:08 AM, tien.fong.chee at intel.com wrote: > > > > From: Tien Fong Chee > > > > Enable SPL successfully boot to U-boot. > s/U-boot/U-Boot > > > > > > > Signed-off-by: Tien Fong Chee > > --- > >  configs/socfpga_arria10_defconfig | 57 > > +++++++++++++++++++++++++++++++++------ > >  1 file changed, 49 insertions(+), 8 deletions(-) > > > > diff --git a/configs/socfpga_arria10_defconfig > > b/configs/socfpga_arria10_defconfig > > index 4c73d73..c59d054 100644 > > --- a/configs/socfpga_arria10_defconfig > > +++ b/configs/socfpga_arria10_defconfig > > @@ -1,34 +1,75 @@ > >  CONFIG_ARM=y > >  CONFIG_ARCH_SOCFPGA=y > > -CONFIG_SYS_MALLOC_F_LEN=0x2000 > Why are you removing this? > > > > >  CONFIG_TARGET_SOCFPGA_ARRIA10_SOCDK=y > >  CONFIG_IDENT_STRING="socfpga_arria10" > >  CONFIG_DEFAULT_DEVICE_TREE="socfpga_arria10_socdk_sdmmc" > > -CONFIG_USE_BOOTARGS=y > > -CONFIG_BOOTARGS="console=ttyS0,115200" > Why remove this? > We using distro boot. Those configs would be defined at extlinux.conf. > Dinh