public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/2] imx8mq_evk: Move CONFIG_ENV_IS_IN_MMC to Kconfig
@ 2019-02-28 11:46 Fabio Estevam
  2019-02-28 11:46 ` [U-Boot] [PATCH 2/2] imx8mq_evk: Add myself as a co-maintainer Fabio Estevam
  2019-03-01  0:59 ` [U-Boot] [PATCH 1/2] imx8mq_evk: Move CONFIG_ENV_IS_IN_MMC to Kconfig Peng Fan
  0 siblings, 2 replies; 4+ messages in thread
From: Fabio Estevam @ 2019-02-28 11:46 UTC (permalink / raw)
  To: u-boot

Currently the command "saveenv" is not available.

The CONFIG_ENV_IS_IN_MMC symbol has been converted to Kconfig,
so fix the problem by moving it to the defconfig.

Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
 configs/imx8mq_evk_defconfig | 1 +
 include/configs/imx8mq_evk.h | 1 -
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/configs/imx8mq_evk_defconfig b/configs/imx8mq_evk_defconfig
index 53025e45bc..889d8f1484 100644
--- a/configs/imx8mq_evk_defconfig
+++ b/configs/imx8mq_evk_defconfig
@@ -22,6 +22,7 @@ CONFIG_CMD_EXT4_WRITE=y
 CONFIG_CMD_FAT=y
 CONFIG_OF_CONTROL=y
 CONFIG_DEFAULT_DEVICE_TREE="fsl-imx8mq-evk"
+CONFIG_ENV_IS_IN_MMC=y
 CONFIG_SAVED_DRAM_TIMING_BASE=0x40000000
 CONFIG_DM_GPIO=y
 CONFIG_DM_I2C=y
diff --git a/include/configs/imx8mq_evk.h b/include/configs/imx8mq_evk.h
index f0430224cb..a9e38a70e6 100644
--- a/include/configs/imx8mq_evk.h
+++ b/include/configs/imx8mq_evk.h
@@ -187,7 +187,6 @@
 #define CONFIG_ENV_OVERWRITE
 #define CONFIG_ENV_OFFSET               (64 * SZ_64K)
 #define CONFIG_ENV_SIZE			0x1000
-#define CONFIG_ENV_IS_IN_MMC
 #define CONFIG_SYS_MMC_ENV_DEV		1   /* USDHC2 */
 #define CONFIG_MMCROOT			"/dev/mmcblk1p2"  /* USDHC2 */
 
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [U-Boot] [PATCH 2/2] imx8mq_evk: Add myself as a co-maintainer
  2019-02-28 11:46 [U-Boot] [PATCH 1/2] imx8mq_evk: Move CONFIG_ENV_IS_IN_MMC to Kconfig Fabio Estevam
@ 2019-02-28 11:46 ` Fabio Estevam
  2019-03-01  1:00   ` Peng Fan
  2019-03-01  0:59 ` [U-Boot] [PATCH 1/2] imx8mq_evk: Move CONFIG_ENV_IS_IN_MMC to Kconfig Peng Fan
  1 sibling, 1 reply; 4+ messages in thread
From: Fabio Estevam @ 2019-02-28 11:46 UTC (permalink / raw)
  To: u-boot

I would like to help maintaining this board.

Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
 board/freescale/imx8mq_evk/MAINTAINERS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/board/freescale/imx8mq_evk/MAINTAINERS b/board/freescale/imx8mq_evk/MAINTAINERS
index a2e320cb10..a00bb4ef78 100644
--- a/board/freescale/imx8mq_evk/MAINTAINERS
+++ b/board/freescale/imx8mq_evk/MAINTAINERS
@@ -1,5 +1,6 @@
 i.MX8MQ EVK BOARD
 M:	Peng Fan <peng.fan@nxp.com>
+M:	Fabio Estevam <festevam@gmail.com>
 S:	Maintained
 F:	board/freescale/imx8mq_evk/
 F:	include/configs/imx8mq_evk.h
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [U-Boot] [PATCH 1/2] imx8mq_evk: Move CONFIG_ENV_IS_IN_MMC to Kconfig
  2019-02-28 11:46 [U-Boot] [PATCH 1/2] imx8mq_evk: Move CONFIG_ENV_IS_IN_MMC to Kconfig Fabio Estevam
  2019-02-28 11:46 ` [U-Boot] [PATCH 2/2] imx8mq_evk: Add myself as a co-maintainer Fabio Estevam
@ 2019-03-01  0:59 ` Peng Fan
  1 sibling, 0 replies; 4+ messages in thread
From: Peng Fan @ 2019-03-01  0:59 UTC (permalink / raw)
  To: u-boot



> -----Original Message-----
> From: Fabio Estevam [mailto:festevam at gmail.com]
> Sent: 2019年2月28日 19:46
> To: sbabic at denx.de
> Cc: Peng Fan <peng.fan@nxp.com>; u-boot at lists.denx.de; dl-uboot-imx
> <uboot-imx@nxp.com>; spencercw at gmail.com; baruch at tkos.co.il; Fabio
> Estevam <festevam@gmail.com>
> Subject: [PATCH 1/2] imx8mq_evk: Move CONFIG_ENV_IS_IN_MMC to
> Kconfig
> 
> Currently the command "saveenv" is not available.
> 
> The CONFIG_ENV_IS_IN_MMC symbol has been converted to Kconfig, so fix
> the problem by moving it to the defconfig.
> 
> Signed-off-by: Fabio Estevam <festevam@gmail.com>
> ---
>  configs/imx8mq_evk_defconfig | 1 +
>  include/configs/imx8mq_evk.h | 1 -
>  2 files changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/configs/imx8mq_evk_defconfig b/configs/imx8mq_evk_defconfig
> index 53025e45bc..889d8f1484 100644
> --- a/configs/imx8mq_evk_defconfig
> +++ b/configs/imx8mq_evk_defconfig
> @@ -22,6 +22,7 @@ CONFIG_CMD_EXT4_WRITE=y  CONFIG_CMD_FAT=y
> CONFIG_OF_CONTROL=y
> CONFIG_DEFAULT_DEVICE_TREE="fsl-imx8mq-evk"
> +CONFIG_ENV_IS_IN_MMC=y
>  CONFIG_SAVED_DRAM_TIMING_BASE=0x40000000
>  CONFIG_DM_GPIO=y
>  CONFIG_DM_I2C=y
> diff --git a/include/configs/imx8mq_evk.h b/include/configs/imx8mq_evk.h
> index f0430224cb..a9e38a70e6 100644
> --- a/include/configs/imx8mq_evk.h
> +++ b/include/configs/imx8mq_evk.h
> @@ -187,7 +187,6 @@
>  #define CONFIG_ENV_OVERWRITE
>  #define CONFIG_ENV_OFFSET               (64 * SZ_64K)
>  #define CONFIG_ENV_SIZE			0x1000
> -#define CONFIG_ENV_IS_IN_MMC
>  #define CONFIG_SYS_MMC_ENV_DEV		1   /* USDHC2 */
>  #define CONFIG_MMCROOT			"/dev/mmcblk1p2"  /* USDHC2

Reviewed-by: Peng Fan <peng.fan@nxp.com>

> */
> 
> --
> 2.17.1

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [U-Boot] [PATCH 2/2] imx8mq_evk: Add myself as a co-maintainer
  2019-02-28 11:46 ` [U-Boot] [PATCH 2/2] imx8mq_evk: Add myself as a co-maintainer Fabio Estevam
@ 2019-03-01  1:00   ` Peng Fan
  0 siblings, 0 replies; 4+ messages in thread
From: Peng Fan @ 2019-03-01  1:00 UTC (permalink / raw)
  To: u-boot



> -----Original Message-----
> From: Fabio Estevam [mailto:festevam at gmail.com]
> Sent: 2019年2月28日 19:46
> To: sbabic at denx.de
> Cc: Peng Fan <peng.fan@nxp.com>; u-boot at lists.denx.de; dl-uboot-imx
> <uboot-imx@nxp.com>; spencercw at gmail.com; baruch at tkos.co.il; Fabio
> Estevam <festevam@gmail.com>
> Subject: [PATCH 2/2] imx8mq_evk: Add myself as a co-maintainer
> 
> I would like to help maintaining this board.
> 
> Signed-off-by: Fabio Estevam <festevam@gmail.com>

Acked-by: Peng Fan <peng.fan@nxp.com>

> ---
>  board/freescale/imx8mq_evk/MAINTAINERS | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/board/freescale/imx8mq_evk/MAINTAINERS
> b/board/freescale/imx8mq_evk/MAINTAINERS
> index a2e320cb10..a00bb4ef78 100644
> --- a/board/freescale/imx8mq_evk/MAINTAINERS
> +++ b/board/freescale/imx8mq_evk/MAINTAINERS
> @@ -1,5 +1,6 @@
>  i.MX8MQ EVK BOARD
>  M:	Peng Fan <peng.fan@nxp.com>
> +M:	Fabio Estevam <festevam@gmail.com>
>  S:	Maintained
>  F:	board/freescale/imx8mq_evk/
>  F:	include/configs/imx8mq_evk.h
> --
> 2.17.1

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-03-01  1:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-02-28 11:46 [U-Boot] [PATCH 1/2] imx8mq_evk: Move CONFIG_ENV_IS_IN_MMC to Kconfig Fabio Estevam
2019-02-28 11:46 ` [U-Boot] [PATCH 2/2] imx8mq_evk: Add myself as a co-maintainer Fabio Estevam
2019-03-01  1:00   ` Peng Fan
2019-03-01  0:59 ` [U-Boot] [PATCH 1/2] imx8mq_evk: Move CONFIG_ENV_IS_IN_MMC to Kconfig Peng Fan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox