All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/3] Distroboot support for DE0-nano-SoC board
@ 2017-01-28 20:47 Frank Kunz
  2017-01-28 20:47 ` [U-Boot] [PATCH 1/3] socfpga: Enable abort for DE-nano-SoC SPL uboot load from MMC Frank Kunz
                   ` (3 more replies)
  0 siblings, 4 replies; 10+ messages in thread
From: Frank Kunz @ 2017-01-28 20:47 UTC (permalink / raw)
  To: u-boot

This adds common distribution boot environment variables for
DE0-nanos-SoC board. The current boot procedure is extended to run
the distribution boot as fallback.
The SOC ROM loader scans for the SPL in the special partition 0xa2 (partition mode)
if this is not found it scans the MMC card sector 0 (raw mode), for up to
four valid SPLs. When a partition table (MBR, GPT) is used with raw mode,
the first SPL must not be written to the MMC and the ROM loader uses the second SPL.

Frank Kunz (3):
  socfpga: Enable abort for DE-nano-SoC SPL uboot load from MMC
  socfpga: Add distoboot support for DE0-nano-SoC
  socfpga: Adapt environment storage for DE0-nano-SoC

 include/configs/socfpga_de0_nano_soc.h | 32 +++++++++++++++++++++++++++++++-
 1 file changed, 31 insertions(+), 1 deletion(-)

--
2.11.0

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

* [U-Boot] [PATCH 1/3] socfpga: Enable abort for DE-nano-SoC SPL uboot load from MMC
  2017-01-28 20:47 [U-Boot] [PATCH 0/3] Distroboot support for DE0-nano-SoC board Frank Kunz
@ 2017-01-28 20:47 ` Frank Kunz
  2017-01-28 20:47 ` [U-Boot] [PATCH 2/3] socfpga: Add distoboot support for DE0-nano-SoC Frank Kunz
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 10+ messages in thread
From: Frank Kunz @ 2017-01-28 20:47 UTC (permalink / raw)
  To: u-boot

This allows the SPL to scan the MMC for a valid uboot image on a second
sector location defined by CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR when
the default location "CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR + first
partition offset" does not contain a valid uboot image.

Signed-off-by: Frank Kunz <mailinglists@kunz-im-inter.net>
---
:100644 100644 6b9546e8f7... f7e2068782... M	include/configs/socfpga_de0_nano_soc.h
 include/configs/socfpga_de0_nano_soc.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/include/configs/socfpga_de0_nano_soc.h b/include/configs/socfpga_de0_nano_soc.h
index 6b9546e8f7..f7e2068782 100644
--- a/include/configs/socfpga_de0_nano_soc.h
+++ b/include/configs/socfpga_de0_nano_soc.h
@@ -14,6 +14,8 @@
 #define CONFIG_FAT_WRITE
 #define CONFIG_HW_WATCHDOG
 
+#define CONFIG_SPL_ABORT_ON_RAW_IMAGE
+
 /* Memory configurations */
 #define PHYS_SDRAM_1_SIZE		0x40000000	/* 1GiB */
 
-- 
2.11.0

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

* [U-Boot] [PATCH 2/3] socfpga: Add distoboot support for DE0-nano-SoC
  2017-01-28 20:47 [U-Boot] [PATCH 0/3] Distroboot support for DE0-nano-SoC board Frank Kunz
  2017-01-28 20:47 ` [U-Boot] [PATCH 1/3] socfpga: Enable abort for DE-nano-SoC SPL uboot load from MMC Frank Kunz
@ 2017-01-28 20:47 ` Frank Kunz
  2017-01-28 20:47 ` [U-Boot] [PATCH 3/3] socfpga: Adapt environment storage " Frank Kunz
  2017-01-28 20:53 ` [U-Boot] [PATCH 0/3] Distroboot support for DE0-nano-SoC board Marek Vasut
  3 siblings, 0 replies; 10+ messages in thread
From: Frank Kunz @ 2017-01-28 20:47 UTC (permalink / raw)
  To: u-boot

This enables common distroboot support as fall back when the "mmcboot"
command fails to load OS image. In fall back case MMC, PXE and DHCP boot
are probed.

Signed-off-by: Frank Kunz <mailinglists@kunz-im-inter.net>
---
:100644 100644 f7e2068782... d58240e751... M	include/configs/socfpga_de0_nano_soc.h
 include/configs/socfpga_de0_nano_soc.h | 26 +++++++++++++++++++++++++-
 1 file changed, 25 insertions(+), 1 deletion(-)

diff --git a/include/configs/socfpga_de0_nano_soc.h b/include/configs/socfpga_de0_nano_soc.h
index f7e2068782..d58240e751 100644
--- a/include/configs/socfpga_de0_nano_soc.h
+++ b/include/configs/socfpga_de0_nano_soc.h
@@ -22,7 +22,7 @@
 /* Booting Linux */
 #define CONFIG_BOOTFILE		"fitImage"
 #define CONFIG_BOOTARGS		"console=ttyS0," __stringify(CONFIG_BAUDRATE)
-#define CONFIG_BOOTCOMMAND	"run mmcload; run mmcboot"
+#define CONFIG_BOOTCOMMAND	"run mmcload; run mmcboot; run distro_bootcmd"
 #define CONFIG_LOADADDR		0x01000000
 #define CONFIG_SYS_LOAD_ADDR	CONFIG_LOADADDR
 
@@ -35,6 +35,22 @@
 #define CONFIG_ENV_IS_IN_MMC
 
 /* Extra Environment */
+#ifndef CONFIG_SPL_BUILD
+#include <config_distro_defaults.h>
+
+#ifdef CONFIG_CMD_PXE
+#define BOOT_TARGET_DEVICES_PXE(func) func(PXE, pxe, na)
+#else
+#define BOOT_TARGET_DEVICES_PXE(func)
+#endif
+
+#define BOOT_TARGET_DEVICES(func) \
+	func(MMC, mmc, 0) \
+	BOOT_TARGET_DEVICES_PXE(func) \
+	func(DHCP, dhcp, na)
+
+#include <config_distro_bootcmd.h>
+
 #define CONFIG_EXTRA_ENV_SETTINGS \
 	"loadaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
 	"ramboot=setenv bootargs " CONFIG_BOOTARGS ";" \
@@ -50,6 +66,14 @@
 	"mmcload=mmc rescan;" \
 		"load mmc 0:1 ${loadaddr} ${bootimage};" \
 		"load mmc 0:1 ${fdt_addr} ${fdtimage}\0" \
+	"bootm_size=0xa000000\0" \
+	"kernel_addr_r="__stringify(CONFIG_SYS_LOAD_ADDR)"\0" \
+	"fdt_addr_r=0x02000000\0" \
+	"scriptaddr=0x02100000\0" \
+	"pxefile_addr_r=0x02200000\0" \
+	"ramdisk_addr_r=0x02300000\0" \
+	BOOTENV
+#endif
 
 /* The rest of the configuration is shared */
 #include <configs/socfpga_common.h>
-- 
2.11.0

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

* [U-Boot] [PATCH 3/3] socfpga: Adapt environment storage for DE0-nano-SoC
  2017-01-28 20:47 [U-Boot] [PATCH 0/3] Distroboot support for DE0-nano-SoC board Frank Kunz
  2017-01-28 20:47 ` [U-Boot] [PATCH 1/3] socfpga: Enable abort for DE-nano-SoC SPL uboot load from MMC Frank Kunz
  2017-01-28 20:47 ` [U-Boot] [PATCH 2/3] socfpga: Add distoboot support for DE0-nano-SoC Frank Kunz
@ 2017-01-28 20:47 ` Frank Kunz
  2017-01-28 20:53 ` [U-Boot] [PATCH 0/3] Distroboot support for DE0-nano-SoC board Marek Vasut
  3 siblings, 0 replies; 10+ messages in thread
From: Frank Kunz @ 2017-01-28 20:47 UTC (permalink / raw)
  To: u-boot

Increase environment size and locate storage location on MMC after GPT.

Signed-off-by: Frank Kunz <mailinglists@kunz-im-inter.net>
---
:100644 100644 d58240e751... 5d0542bd8f... M	include/configs/socfpga_de0_nano_soc.h
 include/configs/socfpga_de0_nano_soc.h | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/include/configs/socfpga_de0_nano_soc.h b/include/configs/socfpga_de0_nano_soc.h
index d58240e751..5d0542bd8f 100644
--- a/include/configs/socfpga_de0_nano_soc.h
+++ b/include/configs/socfpga_de0_nano_soc.h
@@ -13,9 +13,13 @@
 #define CONFIG_DOS_PARTITION
 #define CONFIG_FAT_WRITE
 #define CONFIG_HW_WATCHDOG
-
 #define CONFIG_SPL_ABORT_ON_RAW_IMAGE
 
+/* U-Boot env settings */
+#define CONFIG_ENV_SIZE (8*1024)
+#define CONFIG_SYS_MMC_ENV_DEV 0	/* device 0 */
+#define CONFIG_ENV_OFFSET (34*512)	/* just after the GPT */
+
 /* Memory configurations */
 #define PHYS_SDRAM_1_SIZE		0x40000000	/* 1GiB */
 
-- 
2.11.0

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

* [U-Boot] [PATCH 0/3] Distroboot support for DE0-nano-SoC board
  2017-01-28 20:47 [U-Boot] [PATCH 0/3] Distroboot support for DE0-nano-SoC board Frank Kunz
                   ` (2 preceding siblings ...)
  2017-01-28 20:47 ` [U-Boot] [PATCH 3/3] socfpga: Adapt environment storage " Frank Kunz
@ 2017-01-28 20:53 ` Marek Vasut
  2017-01-28 21:25   ` Westergreen, Dalon
  3 siblings, 1 reply; 10+ messages in thread
From: Marek Vasut @ 2017-01-28 20:53 UTC (permalink / raw)
  To: u-boot

On 01/28/2017 09:47 PM, Frank Kunz wrote:
> This adds common distribution boot environment variables for
> DE0-nanos-SoC board. The current boot procedure is extended to run
> the distribution boot as fallback.
> The SOC ROM loader scans for the SPL in the special partition 0xa2 (partition mode)
> if this is not found it scans the MMC card sector 0 (raw mode), for up to
> four valid SPLs. When a partition table (MBR, GPT) is used with raw mode,
> the first SPL must not be written to the MMC and the ROM loader uses the second SPL.
> 
> Frank Kunz (3):
>   socfpga: Enable abort for DE-nano-SoC SPL uboot load from MMC
>   socfpga: Add distoboot support for DE0-nano-SoC
>   socfpga: Adapt environment storage for DE0-nano-SoC
> 
>  include/configs/socfpga_de0_nano_soc.h | 32 +++++++++++++++++++++++++++++++-
>  1 file changed, 31 insertions(+), 1 deletion(-)

CCing Dalon, he sent a series
[PATCH v7 0/7] arm: socfpga: update default u-boot environment

Can you two coordinate the efforts ? I think it'd make sense to wait for
his series to reach v8 and then rebase on top of it. I would also like
Dalon to do a v8 which just extracts the common env, so we can
merge that first and then look into the more intrusive bits.

-- 
Best regards,
Marek Vasut

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

* [U-Boot] [PATCH 0/3] Distroboot support for DE0-nano-SoC board
  2017-01-28 20:53 ` [U-Boot] [PATCH 0/3] Distroboot support for DE0-nano-SoC board Marek Vasut
@ 2017-01-28 21:25   ` Westergreen, Dalon
  2017-01-28 21:33     ` Frank Kunz
  2017-01-28 22:30     ` Marek Vasut
  0 siblings, 2 replies; 10+ messages in thread
From: Westergreen, Dalon @ 2017-01-28 21:25 UTC (permalink / raw)
  To: u-boot

On Sat, 2017-01-28 at 21:53 +0100, Marek Vasut wrote:
> On 01/28/2017 09:47 PM, Frank Kunz wrote:
> > 
> > This adds common distribution boot environment variables for
> > DE0-nanos-SoC board. The current boot procedure is extended to run
> > the distribution boot as fallback.
> > The SOC ROM loader scans for the SPL in the special partition 0xa2
> > (partition mode)
> > if this is not found it scans the MMC card sector 0 (raw mode), for up to
> > four valid SPLs. When a partition table (MBR, GPT) is used with raw mode,
> > the first SPL must not be written to the MMC and the ROM loader uses the
> > second SPL.
> > 
> > Frank Kunz (3):
> > ? socfpga: Enable abort for DE-nano-SoC SPL uboot load from MMC
> > ? socfpga: Add distoboot support for DE0-nano-SoC
> > ? socfpga: Adapt environment storage for DE0-nano-SoC
> > 
> > ?include/configs/socfpga_de0_nano_soc.h | 32
> > +++++++++++++++++++++++++++++++-
> > ?1 file changed, 31 insertions(+), 1 deletion(-)
> 
> CCing Dalon, he sent a series
> [PATCH v7 0/7] arm: socfpga: update default u-boot environment
> 
> Can you two coordinate the efforts ? I think it'd make sense to wait for
> his series to reach v8 and then rebase on top of it. I would also like
> Dalon to do a v8 which just extracts the common env, so we can
> merge that first and then look into the more intrusive bits.
> 
Cool, i can submit a v8 which just moves the env to a common location.
I have reservations about the use use of raw mode while an MBR is
present. ?It is definitely not an intended use, although it does
work. If you like i can just merge the two patch sets into v8?

thanks,
dalon

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

* [U-Boot] [PATCH 0/3] Distroboot support for DE0-nano-SoC board
  2017-01-28 21:25   ` Westergreen, Dalon
@ 2017-01-28 21:33     ` Frank Kunz
  2017-01-28 22:30     ` Marek Vasut
  1 sibling, 0 replies; 10+ messages in thread
From: Frank Kunz @ 2017-01-28 21:33 UTC (permalink / raw)
  To: u-boot

Am 28.01.2017 um 22:25 schrieb Westergreen, Dalon:
> On Sat, 2017-01-28 at 21:53 +0100, Marek Vasut wrote:
>> On 01/28/2017 09:47 PM, Frank Kunz wrote:
>>>
>>> This adds common distribution boot environment variables for
>>> DE0-nanos-SoC board. The current boot procedure is extended to run
>>> the distribution boot as fallback.
>>> The SOC ROM loader scans for the SPL in the special partition 0xa2
>>> (partition mode)
>>> if this is not found it scans the MMC card sector 0 (raw mode), for up to
>>> four valid SPLs. When a partition table (MBR, GPT) is used with raw mode,
>>> the first SPL must not be written to the MMC and the ROM loader uses the
>>> second SPL.
>>>
>>> Frank Kunz (3):
>>>   socfpga: Enable abort for DE-nano-SoC SPL uboot load from MMC
>>>   socfpga: Add distoboot support for DE0-nano-SoC
>>>   socfpga: Adapt environment storage for DE0-nano-SoC
>>>
>>>  include/configs/socfpga_de0_nano_soc.h | 32
>>> +++++++++++++++++++++++++++++++-
>>>  1 file changed, 31 insertions(+), 1 deletion(-)
>>
>> CCing Dalon, he sent a series
>> [PATCH v7 0/7] arm: socfpga: update default u-boot environment
>>
>> Can you two coordinate the efforts ? I think it'd make sense to wait for
>> his series to reach v8 and then rebase on top of it. I would also like
>> Dalon to do a v8 which just extracts the common env, so we can
>> merge that first and then look into the more intrusive bits.
>>
> Cool, i can submit a v8 which just moves the env to a common location.
> I have reservations about the use use of raw mode while an MBR is
> present.  It is definitely not an intended use, although it does
> work. If you like i can just merge the two patch sets into v8?
> 
I'm fine with that. Looking forward to v8 then.

Br,
Frank

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

* [U-Boot] [PATCH 0/3] Distroboot support for DE0-nano-SoC board
  2017-01-28 21:25   ` Westergreen, Dalon
  2017-01-28 21:33     ` Frank Kunz
@ 2017-01-28 22:30     ` Marek Vasut
  2017-01-28 22:47       ` Dalon Westergreen
  1 sibling, 1 reply; 10+ messages in thread
From: Marek Vasut @ 2017-01-28 22:30 UTC (permalink / raw)
  To: u-boot

On 01/28/2017 10:25 PM, Westergreen, Dalon wrote:
> On Sat, 2017-01-28 at 21:53 +0100, Marek Vasut wrote:
>> On 01/28/2017 09:47 PM, Frank Kunz wrote:
>>>
>>> This adds common distribution boot environment variables for
>>> DE0-nanos-SoC board. The current boot procedure is extended to run
>>> the distribution boot as fallback.
>>> The SOC ROM loader scans for the SPL in the special partition 0xa2
>>> (partition mode)
>>> if this is not found it scans the MMC card sector 0 (raw mode), for up to
>>> four valid SPLs. When a partition table (MBR, GPT) is used with raw mode,
>>> the first SPL must not be written to the MMC and the ROM loader uses the
>>> second SPL.
>>>
>>> Frank Kunz (3):
>>>   socfpga: Enable abort for DE-nano-SoC SPL uboot load from MMC
>>>   socfpga: Add distoboot support for DE0-nano-SoC
>>>   socfpga: Adapt environment storage for DE0-nano-SoC
>>>
>>>  include/configs/socfpga_de0_nano_soc.h | 32
>>> +++++++++++++++++++++++++++++++-
>>>  1 file changed, 31 insertions(+), 1 deletion(-)
>>
>> CCing Dalon, he sent a series
>> [PATCH v7 0/7] arm: socfpga: update default u-boot environment
>>
>> Can you two coordinate the efforts ? I think it'd make sense to wait for
>> his series to reach v8 and then rebase on top of it. I would also like
>> Dalon to do a v8 which just extracts the common env, so we can
>> merge that first and then look into the more intrusive bits.
>>
> Cool, i can submit a v8 which just moves the env to a common location.
> I have reservations about the use use of raw mode while an MBR is
> present.  It is definitely not an intended use, although it does
> work. If you like i can just merge the two patch sets into v8?

No, please just keep the stuff separate, so we can get something in
and then move on to the next thing.

-- 
Best regards,
Marek Vasut

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

* [U-Boot] [PATCH 0/3] Distroboot support for DE0-nano-SoC board
  2017-01-28 22:30     ` Marek Vasut
@ 2017-01-28 22:47       ` Dalon Westergreen
  2017-01-28 22:49         ` Marek Vasut
  0 siblings, 1 reply; 10+ messages in thread
From: Dalon Westergreen @ 2017-01-28 22:47 UTC (permalink / raw)
  To: u-boot

On Sat, 2017-01-28 at 23:30 +0100, Marek Vasut wrote:
> On 01/28/2017 10:25 PM, Westergreen, Dalon wrote:
> > 
> > On Sat, 2017-01-28 at 21:53 +0100, Marek Vasut wrote:
> > > 
> > > On 01/28/2017 09:47 PM, Frank Kunz wrote:
> > > > 
> > > > 
> > > > This adds common distribution boot environment variables for
> > > > DE0-nanos-SoC board. The current boot procedure is extended to run
> > > > the distribution boot as fallback.
> > > > The SOC ROM loader scans for the SPL in the special partition 0xa2
> > > > (partition mode)
> > > > if this is not found it scans the MMC card sector 0 (raw mode), for up
> > > > to
> > > > four valid SPLs. When a partition table (MBR, GPT) is used with raw
> > > > mode,
> > > > the first SPL must not be written to the MMC and the ROM loader uses the
> > > > second SPL.
> > > > 
> > > > Frank Kunz (3):
> > > > ? socfpga: Enable abort for DE-nano-SoC SPL uboot load from MMC
> > > > ? socfpga: Add distoboot support for DE0-nano-SoC
> > > > ? socfpga: Adapt environment storage for DE0-nano-SoC
> > > > 
> > > > ?include/configs/socfpga_de0_nano_soc.h | 32
> > > > +++++++++++++++++++++++++++++++-
> > > > ?1 file changed, 31 insertions(+), 1 deletion(-)
> > > 
> > > CCing Dalon, he sent a series
> > > [PATCH v7 0/7] arm: socfpga: update default u-boot environment
> > > 
> > > Can you two coordinate the efforts ? I think it'd make sense to wait for
> > > his series to reach v8 and then rebase on top of it. I would also like
> > > Dalon to do a v8 which just extracts the common env, so we can
> > > merge that first and then look into the more intrusive bits.
> > > 
> > Cool, i can submit a v8 which just moves the env to a common location.
> > I have reservations about the use use of raw mode while an MBR is
> > present.??It is definitely not an intended use, although it does
> > work. If you like i can just merge the two patch sets into v8?
> 
> No, please just keep the stuff separate, so we can get something in
> and then move on to the next thing.
> 
Will do, it should be identical to the v6 patches. ?I also have tested
a patch to support searching for the a2 partition to load the uboot image
which i will send afterwards

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

* [U-Boot] [PATCH 0/3] Distroboot support for DE0-nano-SoC board
  2017-01-28 22:47       ` Dalon Westergreen
@ 2017-01-28 22:49         ` Marek Vasut
  0 siblings, 0 replies; 10+ messages in thread
From: Marek Vasut @ 2017-01-28 22:49 UTC (permalink / raw)
  To: u-boot

On 01/28/2017 11:47 PM, Dalon Westergreen wrote:
> On Sat, 2017-01-28 at 23:30 +0100, Marek Vasut wrote:
>> On 01/28/2017 10:25 PM, Westergreen, Dalon wrote:
>>>
>>> On Sat, 2017-01-28 at 21:53 +0100, Marek Vasut wrote:
>>>>
>>>> On 01/28/2017 09:47 PM, Frank Kunz wrote:
>>>>>
>>>>>
>>>>> This adds common distribution boot environment variables for
>>>>> DE0-nanos-SoC board. The current boot procedure is extended to run
>>>>> the distribution boot as fallback.
>>>>> The SOC ROM loader scans for the SPL in the special partition 0xa2
>>>>> (partition mode)
>>>>> if this is not found it scans the MMC card sector 0 (raw mode), for up
>>>>> to
>>>>> four valid SPLs. When a partition table (MBR, GPT) is used with raw
>>>>> mode,
>>>>> the first SPL must not be written to the MMC and the ROM loader uses the
>>>>> second SPL.
>>>>>
>>>>> Frank Kunz (3):
>>>>>   socfpga: Enable abort for DE-nano-SoC SPL uboot load from MMC
>>>>>   socfpga: Add distoboot support for DE0-nano-SoC
>>>>>   socfpga: Adapt environment storage for DE0-nano-SoC
>>>>>
>>>>>  include/configs/socfpga_de0_nano_soc.h | 32
>>>>> +++++++++++++++++++++++++++++++-
>>>>>  1 file changed, 31 insertions(+), 1 deletion(-)
>>>>
>>>> CCing Dalon, he sent a series
>>>> [PATCH v7 0/7] arm: socfpga: update default u-boot environment
>>>>
>>>> Can you two coordinate the efforts ? I think it'd make sense to wait for
>>>> his series to reach v8 and then rebase on top of it. I would also like
>>>> Dalon to do a v8 which just extracts the common env, so we can
>>>> merge that first and then look into the more intrusive bits.
>>>>
>>> Cool, i can submit a v8 which just moves the env to a common location.
>>> I have reservations about the use use of raw mode while an MBR is
>>> present.  It is definitely not an intended use, although it does
>>> work. If you like i can just merge the two patch sets into v8?
>>
>> No, please just keep the stuff separate, so we can get something in
>> and then move on to the next thing.
>>
> Will do, it should be identical to the v6 patches.  I also have tested
> a patch to support searching for the a2 partition to load the uboot image
> which i will send afterwards
> 
Cool, thanks! btw we just missed the MW (closes on today), but I'll try
to add at least the cleanup, which should be harmless.

-- 
Best regards,
Marek Vasut

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

end of thread, other threads:[~2017-01-28 22:49 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-01-28 20:47 [U-Boot] [PATCH 0/3] Distroboot support for DE0-nano-SoC board Frank Kunz
2017-01-28 20:47 ` [U-Boot] [PATCH 1/3] socfpga: Enable abort for DE-nano-SoC SPL uboot load from MMC Frank Kunz
2017-01-28 20:47 ` [U-Boot] [PATCH 2/3] socfpga: Add distoboot support for DE0-nano-SoC Frank Kunz
2017-01-28 20:47 ` [U-Boot] [PATCH 3/3] socfpga: Adapt environment storage " Frank Kunz
2017-01-28 20:53 ` [U-Boot] [PATCH 0/3] Distroboot support for DE0-nano-SoC board Marek Vasut
2017-01-28 21:25   ` Westergreen, Dalon
2017-01-28 21:33     ` Frank Kunz
2017-01-28 22:30     ` Marek Vasut
2017-01-28 22:47       ` Dalon Westergreen
2017-01-28 22:49         ` Marek Vasut

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.