From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Roese Date: Fri, 27 Nov 2015 04:18:01 +0100 Subject: [U-Boot] [PATCH] arm: socfpga: Remove fsloadcmd from environment In-Reply-To: <1448591271-2165-1-git-send-email-clsee@altera.com> References: <1448591271-2165-1-git-send-email-clsee@altera.com> Message-ID: <5657CB69.2020406@denx.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 27.11.2015 03:27, Chin Liang See wrote: > Remove fsloadcmd / ext2load as we are using load command > which use the corresponding latest file system command. > > Signed-off-by: Chin Liang See > Cc: Dinh Nguyen > Cc: Dinh Nguyen > Cc: Pavel Machek > Cc: Marek Vasut > Cc: Stefan Roese > --- > include/configs/socfpga_arria5_socdk.h | 1 - > include/configs/socfpga_cyclone5_socdk.h | 1 - > include/configs/socfpga_de0_nano_soc.h | 1 - > include/configs/socfpga_sockit.h | 1 - > include/configs/socfpga_socrates.h | 1 - > 5 files changed, 5 deletions(-) > > diff --git a/include/configs/socfpga_arria5_socdk.h b/include/configs/socfpga_arria5_socdk.h > index 0506336..9337a58 100644 > --- a/include/configs/socfpga_arria5_socdk.h > +++ b/include/configs/socfpga_arria5_socdk.h > @@ -81,7 +81,6 @@ > "fdt_addr=100\0" \ > "fdtimage=socfpga.dtb\0" \ > "fdtimagesize=0x7000\0" \ > - "fsloadcmd=ext2load\0" \ > "bootm ${loadaddr} - ${fdt_addr}\0" \ > "mmcroot=/dev/mmcblk0p2\0" \ > "mmcboot=setenv bootargs " CONFIG_BOOTARGS \ > diff --git a/include/configs/socfpga_cyclone5_socdk.h b/include/configs/socfpga_cyclone5_socdk.h > index d7369ee..3b2cfb0 100644 > --- a/include/configs/socfpga_cyclone5_socdk.h > +++ b/include/configs/socfpga_cyclone5_socdk.h > @@ -81,7 +81,6 @@ > "fdt_addr=100\0" \ > "fdtimage=socfpga.dtb\0" \ > "fdtimagesize=0x7000\0" \ > - "fsloadcmd=ext2load\0" \ > "bootm ${loadaddr} - ${fdt_addr}\0" \ > "mmcroot=/dev/mmcblk0p2\0" \ > "mmcboot=setenv bootargs " CONFIG_BOOTARGS \ > diff --git a/include/configs/socfpga_de0_nano_soc.h b/include/configs/socfpga_de0_nano_soc.h > index b371a9b..16e146c 100644 > --- a/include/configs/socfpga_de0_nano_soc.h > +++ b/include/configs/socfpga_de0_nano_soc.h > @@ -74,7 +74,6 @@ > "bootimage=zImage\0" \ > "fdt_addr=100\0" \ > "fdtimage=socfpga.dtb\0" \ > - "fsloadcmd=ext2load\0" \ > "bootm ${loadaddr} - ${fdt_addr}\0" \ > "mmcroot=/dev/mmcblk0p2\0" \ > "mmcboot=setenv bootargs " CONFIG_BOOTARGS \ > diff --git a/include/configs/socfpga_sockit.h b/include/configs/socfpga_sockit.h > index d26f53d..5bcee05 100644 > --- a/include/configs/socfpga_sockit.h > +++ b/include/configs/socfpga_sockit.h > @@ -79,7 +79,6 @@ > "bootimage=zImage\0" \ > "fdt_addr=100\0" \ > "fdtimage=socfpga.dtb\0" \ > - "fsloadcmd=ext2load\0" \ > "bootm ${loadaddr} - ${fdt_addr}\0" \ > "mmcroot=/dev/mmcblk0p2\0" \ > "mmcboot=setenv bootargs " CONFIG_BOOTARGS \ > diff --git a/include/configs/socfpga_socrates.h b/include/configs/socfpga_socrates.h > index 6331251..16a2a86 100644 > --- a/include/configs/socfpga_socrates.h > +++ b/include/configs/socfpga_socrates.h > @@ -75,7 +75,6 @@ > "bootimage=zImage\0" \ > "fdt_addr=100\0" \ > "fdtimage=socfpga.dtb\0" \ > - "fsloadcmd=ext2load\0" \ > "bootm ${loadaddr} - ${fdt_addr}\0" \ > "mmcroot=/dev/mmcblk0p2\0" \ > "mmcboot=setenv bootargs " CONFIG_BOOTARGS \ Reviewed-by: Stefan Roese Thanks, Stefan