All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] sifive-fu540: config: Add mmc0 as a boot target device
@ 2019-08-16 18:00 Alistair Francis
  2019-08-17 16:01 ` Bin Meng
  2019-08-20 15:38 ` Auer, Lukas
  0 siblings, 2 replies; 5+ messages in thread
From: Alistair Francis @ 2019-08-16 18:00 UTC (permalink / raw)
  To: u-boot

Add the mmc0 device as a BOOT_TARGET_DEVICES.

Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
---
 include/configs/sifive-fu540.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/include/configs/sifive-fu540.h b/include/configs/sifive-fu540.h
index 858b7a7da1..736ceb1f48 100644
--- a/include/configs/sifive-fu540.h
+++ b/include/configs/sifive-fu540.h
@@ -26,6 +26,7 @@
 #define CONFIG_ENV_SIZE			SZ_128K
 
 #define BOOT_TARGET_DEVICES(func) \
+	func(MMC, mmc, 0) \
 	func(DHCP, dhcp, na)
 
 #include <config_distro_bootcmd.h>
-- 
2.22.0

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

* [U-Boot] [PATCH] sifive-fu540: config: Add mmc0 as a boot target device
  2019-08-16 18:00 [U-Boot] [PATCH] sifive-fu540: config: Add mmc0 as a boot target device Alistair Francis
@ 2019-08-17 16:01 ` Bin Meng
  2019-08-20 15:38 ` Auer, Lukas
  1 sibling, 0 replies; 5+ messages in thread
From: Bin Meng @ 2019-08-17 16:01 UTC (permalink / raw)
  To: u-boot

On Sat, Aug 17, 2019 at 2:03 AM Alistair Francis
<alistair.francis@wdc.com> wrote:
>
> Add the mmc0 device as a BOOT_TARGET_DEVICES.
>
> Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
> ---
>  include/configs/sifive-fu540.h | 1 +
>  1 file changed, 1 insertion(+)
>

Reviewed-by: Bin Meng <bmeng.cn@gmail.com>

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

* [U-Boot] [PATCH] sifive-fu540: config: Add mmc0 as a boot target device
  2019-08-16 18:00 [U-Boot] [PATCH] sifive-fu540: config: Add mmc0 as a boot target device Alistair Francis
  2019-08-17 16:01 ` Bin Meng
@ 2019-08-20 15:38 ` Auer, Lukas
  2019-08-26 12:45   ` Bin Meng
  1 sibling, 1 reply; 5+ messages in thread
From: Auer, Lukas @ 2019-08-20 15:38 UTC (permalink / raw)
  To: u-boot

On Fri, 2019-08-16 at 11:00 -0700, Alistair Francis wrote:
> Add the mmc0 device as a BOOT_TARGET_DEVICES.
> 
> Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
> ---
>  include/configs/sifive-fu540.h | 1 +
>  1 file changed, 1 insertion(+)
> 

Reviewed-by: Lukas Auer <lukas.auer@aisec.fraunhofer.de>

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

* [U-Boot] [PATCH] sifive-fu540: config: Add mmc0 as a boot target device
  2019-08-20 15:38 ` Auer, Lukas
@ 2019-08-26 12:45   ` Bin Meng
  2019-08-28 17:49     ` Alistair Francis
  0 siblings, 1 reply; 5+ messages in thread
From: Bin Meng @ 2019-08-26 12:45 UTC (permalink / raw)
  To: u-boot

On Tue, Aug 20, 2019 at 11:38 PM Auer, Lukas
<lukas.auer@aisec.fraunhofer.de> wrote:
>
> On Fri, 2019-08-16 at 11:00 -0700, Alistair Francis wrote:
> > Add the mmc0 device as a BOOT_TARGET_DEVICES.
> >
> > Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
> > ---
> >  include/configs/sifive-fu540.h | 1 +
> >  1 file changed, 1 insertion(+)
> >
>
> Reviewed-by: Lukas Auer <lukas.auer@aisec.fraunhofer.de>

Reviewed-by: Bin Meng <bmeng.cn@gmail.com>

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

* [U-Boot] [PATCH] sifive-fu540: config: Add mmc0 as a boot target device
  2019-08-26 12:45   ` Bin Meng
@ 2019-08-28 17:49     ` Alistair Francis
  0 siblings, 0 replies; 5+ messages in thread
From: Alistair Francis @ 2019-08-28 17:49 UTC (permalink / raw)
  To: u-boot

On Mon, 2019-08-26 at 20:45 +0800, Bin Meng wrote:
> On Tue, Aug 20, 2019 at 11:38 PM Auer, Lukas
> <lukas.auer@aisec.fraunhofer.de> wrote:
> > On Fri, 2019-08-16 at 11:00 -0700, Alistair Francis wrote:
> > > Add the mmc0 device as a BOOT_TARGET_DEVICES.
> > > 
> > > Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
> > > ---
> > >  include/configs/sifive-fu540.h | 1 +
> > >  1 file changed, 1 insertion(+)
> > > 
> > 
> > Reviewed-by: Lukas Auer <lukas.auer@aisec.fraunhofer.de>
> 
> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>

Can this be merged into v2019.10?

Alistair

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

end of thread, other threads:[~2019-08-28 17:49 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-16 18:00 [U-Boot] [PATCH] sifive-fu540: config: Add mmc0 as a boot target device Alistair Francis
2019-08-17 16:01 ` Bin Meng
2019-08-20 15:38 ` Auer, Lukas
2019-08-26 12:45   ` Bin Meng
2019-08-28 17:49     ` Alistair Francis

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.