Re: [meta-freescale] [u-boot-fslc][PATCH 1/2] Revert "Revert conversion for config_distro_bootcmd.h"

2016-10-17 Thread Fabio Estevam
On Mon, Oct 17, 2016 at 5:29 PM, Fabio Berton
 wrote:
> We're adding back this. Look at patches that I sent to meta-fsl-arm-extra
> that add support to extlinux.

Then why are you reverting this then?
-- 
___
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale


Re: [meta-freescale] [u-boot-fslc][PATCH 1/2] Revert "Revert conversion for config_distro_bootcmd.h"

2016-10-17 Thread Fabio Berton
We're adding back this. Look at patches that I sent to meta-fsl-arm-extra
that add support to extlinux.

On Mon, Oct 17, 2016 at 5:22 PM, Fabio Estevam  wrote:

> On Mon, Oct 17, 2016 at 5:16 PM, Fabio Berton
>  wrote:
> > This reverts commit 6ed7ce72c7945ae972ebf0adb47c2b58c377b3cf.
>
> Why not add distro config support instead?
>
-- 
___
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale


Re: [meta-freescale] [u-boot-fslc][PATCH 1/2] Revert "Revert conversion for config_distro_bootcmd.h"

2016-10-17 Thread Fabio Estevam
On Mon, Oct 17, 2016 at 5:16 PM, Fabio Berton
 wrote:
> This reverts commit 6ed7ce72c7945ae972ebf0adb47c2b58c377b3cf.

Why not add distro config support instead?
-- 
___
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale


[meta-freescale] [u-boot-fslc][PATCH 1/2] Revert "Revert conversion for config_distro_bootcmd.h"

2016-10-17 Thread Fabio Berton
This reverts commit 6ed7ce72c7945ae972ebf0adb47c2b58c377b3cf.

Signed-off-by: Fabio Berton 

Conflicts:
include/configs/wandboard.h
---
 include/configs/mx6cuboxi.h | 88 +
 include/configs/wandboard.h | 80 ++---
 2 files changed, 43 insertions(+), 125 deletions(-)

diff --git a/include/configs/mx6cuboxi.h b/include/configs/mx6cuboxi.h
index a605d8c..366b5b9 100644
--- a/include/configs/mx6cuboxi.h
+++ b/include/configs/mx6cuboxi.h
@@ -8,6 +8,7 @@
 #ifndef __MX6CUBOXI_CONFIG_H
 #define __MX6CUBOXI_CONFIG_H
 
+#include 
 #include "mx6_common.h"
 
 #define CONFIG_SPL_LIBCOMMON_SUPPORT
@@ -76,23 +77,26 @@
 
 #define CONFIG_MXC_UART_BASE   UART1_BASE
 #define CONFIG_CONSOLE_DEV "ttymxc0"
-#define CONFIG_MMCROOT "/dev/mmcblk0p2"
 #define CONFIG_SYS_FSL_USDHC_NUM   1
 #define CONFIG_SYS_MMC_ENV_DEV 0   /* SDHC2 */
 
 #define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
+#ifndef CONFIG_SPL_BUILD
 #define CONFIG_EXTRA_ENV_SETTINGS \
-   "script=boot.scr\0" \
-   "image=zImage\0" \
"fdtfile=undefined\0" \
"fdt_addr_r=0x1800\0" \
-   "boot_fdt=try\0" \
+   "fdt_addr=0x1800\0" \
+   "kernel_addr_r=" __stringify(CONFIG_LOADADDR) "\0"  \
+   "pxefile_addr_r=" __stringify(CONFIG_LOADADDR) "\0" \
+   "scriptaddr=" __stringify(CONFIG_LOADADDR) "\0" \
+   "ramdisk_addr_r=0x1300\0" \
+   "ramdiskaddr=0x1300\0" \
+   "initrd_high=0x\0" \
+   "fdt_high=0x\0" \
"ip_dyn=yes\0" \
"console=" CONFIG_CONSOLE_DEV "\0" \
"bootm_size=0x1000\0" \
"mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \
-   "mmcpart=1\0" \
-   "mmcroot=" CONFIG_MMCROOT " rootwait rw\0" \
"update_sd_firmware=" \
"if test ${ip_dyn} = yes; then " \
"setenv get_cmd dhcp; " \
@@ -106,53 +110,6 @@
"mmc write ${loadaddr} 0x2 ${fw_sz}; " \
"fi; "  \
"fi\0" \
-   "mmcargs=setenv bootargs console=${console},${baudrate} " \
-   "root=${mmcroot}\0" \
-   "loadbootscript=" \
-   "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
-   "bootscript=echo Running bootscript from mmc ...; " \
-   "source\0" \
-   "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
-   "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr_r} ${fdtfile}\0" \
-   "mmcboot=echo Booting from mmc ...; " \
-   "run mmcargs; " \
-   "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
-   "if run loadfdt; then " \
-   "bootz ${loadaddr} - ${fdt_addr_r}; " \
-   "else " \
-   "if test ${boot_fdt} = try; then " \
-   "bootz; " \
-   "else " \
-   "echo WARN: Cannot load the DT; " \
-   "fi; " \
-   "fi; " \
-   "else " \
-   "bootz; " \
-   "fi;\0" \
-   "netargs=setenv bootargs console=${console},${baudrate} " \
-   "root=/dev/nfs " \
-   "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
-   "netboot=echo Booting from net ...; " \
-   "run netargs; " \
-   "if test ${ip_dyn} = yes; then " \
-   "setenv get_cmd dhcp; " \
-   "else " \
-   "setenv get_cmd tftp; " \
-   "fi; " \
-   "${get_cmd} ${image}; " \
-   "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
-   "if ${get_cmd} ${fdt_addr_r} ${fdtfile}; then " \
-   "bootz ${loadaddr} - ${fdt_addr_r}; " \
-   "else " \
-   "if test ${boot_fdt} = try; then " \
-   "bootz; " \
-   "else " \
-   "echo WARN: Cannot load the DT; " \
-   "fi; " \
-   "fi; " \
-   "else " \
-   "bootz; " \
-   "fi;\0" \
"findfdt="\
"if test $board_name = HUMMINGBOARD && test $board_rev = MX6Q ; 
then " \
"setenv fdtfile imx6q-hummingboard.dtb; fi; " \
@@ -164,20 +121,23 @@
"setenv fdtfile imx6dl-cubox-i.dtb; fi; " \
"if test $fdtfile = undefined; then " \
"echo WARNING: Could not determine dtb to use; fi; \0" \
+   BOOTENV
 
 #define CONFIG_BOOTCOMMAND \
"run findfdt; " \
-   "mmc dev ${mmcdev};" \
-   "if mmc rescan; then " \
-   "if run