All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/2] rockchip: rk3368: add ENV_MEM_LAYOUT to extra env settings
@ 2017-09-04 12:32 Andy Yan
  2017-09-04 12:32 ` [U-Boot] [PATCH 2/2] rockchip: rk3368: add the missing target and pinctrl config for sheep board Andy Yan
                   ` (3 more replies)
  0 siblings, 4 replies; 9+ messages in thread
From: Andy Yan @ 2017-09-04 12:32 UTC (permalink / raw)
  To: u-boot

Add the ENV_MEM_LAYOUT_SETTINGS to CONFIG_EXTRA_ENV_SETTINGS

Signed-off-by: Andy Yan <andy.yan@rock-chips.com>
---

 include/configs/rk3368_common.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/include/configs/rk3368_common.h b/include/configs/rk3368_common.h
index a89c69a..2ed1fb1 100644
--- a/include/configs/rk3368_common.h
+++ b/include/configs/rk3368_common.h
@@ -52,6 +52,7 @@
 #include <config_distro_bootcmd.h>
 
 #define CONFIG_EXTRA_ENV_SETTINGS \
+	ENV_MEM_LAYOUT_SETTINGS	\
 	BOOTENV
 
 #endif
-- 
2.7.4

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

* [U-Boot] [PATCH 2/2] rockchip: rk3368: add the missing target and pinctrl config for sheep board
  2017-09-04 12:32 [U-Boot] [PATCH 1/2] rockchip: rk3368: add ENV_MEM_LAYOUT to extra env settings Andy Yan
@ 2017-09-04 12:32 ` Andy Yan
  2017-09-09  4:51   ` Simon Glass
                     ` (3 more replies)
  2017-09-12 11:03 ` [U-Boot] [U-Boot, 1/2] rockchip: rk3368: add ENV_MEM_LAYOUT to extra env settings Philipp Tomsich
                   ` (2 subsequent siblings)
  3 siblings, 4 replies; 9+ messages in thread
From: Andy Yan @ 2017-09-04 12:32 UTC (permalink / raw)
  To: u-boot

Add the missing target and pinctrl config for rk3368 sheep board

Signed-off-by: Andy Yan <andy.yan@rock-chips.com>
---

 configs/sheep-rk3368_defconfig | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/configs/sheep-rk3368_defconfig b/configs/sheep-rk3368_defconfig
index da6b93a..b00ca47 100644
--- a/configs/sheep-rk3368_defconfig
+++ b/configs/sheep-rk3368_defconfig
@@ -2,6 +2,7 @@ CONFIG_ARM=y
 CONFIG_ARCH_ROCKCHIP=y
 CONFIG_SYS_MALLOC_F_LEN=0x1000
 CONFIG_ROCKCHIP_RK3368=y
+CONFIG_TARGET_SHEEP=y
 CONFIG_DEFAULT_DEVICE_TREE="rk3368-sheep"
 CONFIG_DEBUG_UART=y
 CONFIG_ENV_IS_NOWHERE=y
@@ -16,6 +17,7 @@ CONFIG_CLK=y
 CONFIG_MMC_DW=y
 CONFIG_MMC_DW_ROCKCHIP=y
 CONFIG_PINCTRL=y
+CONFIG_PINCTRL_ROCKCHIP_RK3368=y
 CONFIG_RAM=y
 CONFIG_DEBUG_UART_BASE=0xFF1b0000
 CONFIG_DEBUG_UART_CLOCK=24000000
-- 
2.7.4

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

* [U-Boot] [PATCH 2/2] rockchip: rk3368: add the missing target and pinctrl config for sheep board
  2017-09-04 12:32 ` [U-Boot] [PATCH 2/2] rockchip: rk3368: add the missing target and pinctrl config for sheep board Andy Yan
@ 2017-09-09  4:51   ` Simon Glass
  2017-09-12 11:03   ` [U-Boot] [U-Boot, " Philipp Tomsich
                     ` (2 subsequent siblings)
  3 siblings, 0 replies; 9+ messages in thread
From: Simon Glass @ 2017-09-09  4:51 UTC (permalink / raw)
  To: u-boot

On 4 September 2017 at 06:32, Andy Yan <andy.yan@rock-chips.com> wrote:
> Add the missing target and pinctrl config for rk3368 sheep board
>
> Signed-off-by: Andy Yan <andy.yan@rock-chips.com>
> ---
>
>  configs/sheep-rk3368_defconfig | 2 ++
>  1 file changed, 2 insertions(+)

Reviewed-by: Simon Glass <sjg@chromium.org>

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

* [U-Boot] [U-Boot, 1/2] rockchip: rk3368: add ENV_MEM_LAYOUT to extra env settings
  2017-09-04 12:32 [U-Boot] [PATCH 1/2] rockchip: rk3368: add ENV_MEM_LAYOUT to extra env settings Andy Yan
  2017-09-04 12:32 ` [U-Boot] [PATCH 2/2] rockchip: rk3368: add the missing target and pinctrl config for sheep board Andy Yan
@ 2017-09-12 11:03 ` Philipp Tomsich
  2017-09-12 13:56 ` Philipp Tomsich
  2017-09-12 15:47 ` Philipp Tomsich
  3 siblings, 0 replies; 9+ messages in thread
From: Philipp Tomsich @ 2017-09-12 11:03 UTC (permalink / raw)
  To: u-boot

> Add the ENV_MEM_LAYOUT_SETTINGS to CONFIG_EXTRA_ENV_SETTINGS
> 
> Signed-off-by: Andy Yan <andy.yan@rock-chips.com>
> ---
> 
>  include/configs/rk3368_common.h | 1 +
>  1 file changed, 1 insertion(+)
> 

Acked-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>

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

* [U-Boot] [U-Boot, 2/2] rockchip: rk3368: add the missing target and pinctrl config for sheep board
  2017-09-04 12:32 ` [U-Boot] [PATCH 2/2] rockchip: rk3368: add the missing target and pinctrl config for sheep board Andy Yan
  2017-09-09  4:51   ` Simon Glass
@ 2017-09-12 11:03   ` Philipp Tomsich
  2017-09-12 13:56   ` Philipp Tomsich
  2017-09-12 15:47   ` Philipp Tomsich
  3 siblings, 0 replies; 9+ messages in thread
From: Philipp Tomsich @ 2017-09-12 11:03 UTC (permalink / raw)
  To: u-boot

> Add the missing target and pinctrl config for rk3368 sheep board
> 
> Signed-off-by: Andy Yan <andy.yan@rock-chips.com>
> Reviewed-by: Simon Glass <sjg@chromium.org>
> ---
> 
>  configs/sheep-rk3368_defconfig | 2 ++
>  1 file changed, 2 insertions(+)
> 

Acked-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>

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

* [U-Boot] [U-Boot, 2/2] rockchip: rk3368: add the missing target and pinctrl config for sheep board
  2017-09-04 12:32 ` [U-Boot] [PATCH 2/2] rockchip: rk3368: add the missing target and pinctrl config for sheep board Andy Yan
  2017-09-09  4:51   ` Simon Glass
  2017-09-12 11:03   ` [U-Boot] [U-Boot, " Philipp Tomsich
@ 2017-09-12 13:56   ` Philipp Tomsich
  2017-09-12 15:47   ` Philipp Tomsich
  3 siblings, 0 replies; 9+ messages in thread
From: Philipp Tomsich @ 2017-09-12 13:56 UTC (permalink / raw)
  To: u-boot

> Add the missing target and pinctrl config for rk3368 sheep board
> 
> Signed-off-by: Andy Yan <andy.yan@rock-chips.com>
> Reviewed-by: Simon Glass <sjg@chromium.org>
> Acked-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
> ---
> 
>  configs/sheep-rk3368_defconfig | 2 ++
>  1 file changed, 2 insertions(+)
> 

Applied to u-boot-rockchip, thanks!

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

* [U-Boot] [U-Boot, 1/2] rockchip: rk3368: add ENV_MEM_LAYOUT to extra env settings
  2017-09-04 12:32 [U-Boot] [PATCH 1/2] rockchip: rk3368: add ENV_MEM_LAYOUT to extra env settings Andy Yan
  2017-09-04 12:32 ` [U-Boot] [PATCH 2/2] rockchip: rk3368: add the missing target and pinctrl config for sheep board Andy Yan
  2017-09-12 11:03 ` [U-Boot] [U-Boot, 1/2] rockchip: rk3368: add ENV_MEM_LAYOUT to extra env settings Philipp Tomsich
@ 2017-09-12 13:56 ` Philipp Tomsich
  2017-09-12 15:47 ` Philipp Tomsich
  3 siblings, 0 replies; 9+ messages in thread
From: Philipp Tomsich @ 2017-09-12 13:56 UTC (permalink / raw)
  To: u-boot

> Add the ENV_MEM_LAYOUT_SETTINGS to CONFIG_EXTRA_ENV_SETTINGS
> 
> Signed-off-by: Andy Yan <andy.yan@rock-chips.com>
> Acked-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
> ---
> 
>  include/configs/rk3368_common.h | 1 +
>  1 file changed, 1 insertion(+)
> 

Applied to u-boot-rockchip, thanks!

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

* [U-Boot] [U-Boot, 1/2] rockchip: rk3368: add ENV_MEM_LAYOUT to extra env settings
  2017-09-04 12:32 [U-Boot] [PATCH 1/2] rockchip: rk3368: add ENV_MEM_LAYOUT to extra env settings Andy Yan
                   ` (2 preceding siblings ...)
  2017-09-12 13:56 ` Philipp Tomsich
@ 2017-09-12 15:47 ` Philipp Tomsich
  3 siblings, 0 replies; 9+ messages in thread
From: Philipp Tomsich @ 2017-09-12 15:47 UTC (permalink / raw)
  To: u-boot

> Add the ENV_MEM_LAYOUT_SETTINGS to CONFIG_EXTRA_ENV_SETTINGS
> 
> Signed-off-by: Andy Yan <andy.yan@rock-chips.com>
> Acked-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
> ---
> 
>  include/configs/rk3368_common.h | 1 +
>  1 file changed, 1 insertion(+)
> 

Acked-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>

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

* [U-Boot] [U-Boot, 2/2] rockchip: rk3368: add the missing target and pinctrl config for sheep board
  2017-09-04 12:32 ` [U-Boot] [PATCH 2/2] rockchip: rk3368: add the missing target and pinctrl config for sheep board Andy Yan
                     ` (2 preceding siblings ...)
  2017-09-12 13:56   ` Philipp Tomsich
@ 2017-09-12 15:47   ` Philipp Tomsich
  3 siblings, 0 replies; 9+ messages in thread
From: Philipp Tomsich @ 2017-09-12 15:47 UTC (permalink / raw)
  To: u-boot

> Add the missing target and pinctrl config for rk3368 sheep board
> 
> Signed-off-by: Andy Yan <andy.yan@rock-chips.com>
> Reviewed-by: Simon Glass <sjg@chromium.org>
> Acked-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
> ---
> 
>  configs/sheep-rk3368_defconfig | 2 ++
>  1 file changed, 2 insertions(+)
> 

Acked-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>

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

end of thread, other threads:[~2017-09-12 15:47 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-09-04 12:32 [U-Boot] [PATCH 1/2] rockchip: rk3368: add ENV_MEM_LAYOUT to extra env settings Andy Yan
2017-09-04 12:32 ` [U-Boot] [PATCH 2/2] rockchip: rk3368: add the missing target and pinctrl config for sheep board Andy Yan
2017-09-09  4:51   ` Simon Glass
2017-09-12 11:03   ` [U-Boot] [U-Boot, " Philipp Tomsich
2017-09-12 13:56   ` Philipp Tomsich
2017-09-12 15:47   ` Philipp Tomsich
2017-09-12 11:03 ` [U-Boot] [U-Boot, 1/2] rockchip: rk3368: add ENV_MEM_LAYOUT to extra env settings Philipp Tomsich
2017-09-12 13:56 ` Philipp Tomsich
2017-09-12 15:47 ` Philipp Tomsich

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.