public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [U-boot] [Patch] ks2_evm: config: enable fatload command
@ 2014-10-29 14:28 Ivan Khoronzhuk
  2014-11-04 14:54 ` Tom Rini
  2014-11-04 16:06 ` [U-Boot] [U-boot] [Patch v2] " Ivan Khoronzhuk
  0 siblings, 2 replies; 6+ messages in thread
From: Ivan Khoronzhuk @ 2014-10-29 14:28 UTC (permalink / raw)
  To: u-boot

The keystone2 evm can boot from USB partition with FAT32 FS, so
enable fatload command usage.

Acked-by: Murali Karicheri <m-karicheri2@ti.com>
Signed-off-by: Ivan Khoronzhuk <ivan.khoronzhuk@ti.com>
---
 include/configs/ks2_evm.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/include/configs/ks2_evm.h b/include/configs/ks2_evm.h
index b30e72f..e5e628f 100644
--- a/include/configs/ks2_evm.h
+++ b/include/configs/ks2_evm.h
@@ -225,6 +225,7 @@
 #define CONFIG_CMD_SF
 #define CONFIG_CMD_EEPROM
 #define CONFIG_CMD_USB
+#define CONFIG_CMD_FAT
 
 /* U-Boot general configuration */
 #define CONFIG_SYS_GENERIC_BOARD
-- 
1.8.3.2

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

* [U-Boot] [U-boot] [Patch] ks2_evm: config: enable fatload command
  2014-10-29 14:28 [U-Boot] [U-boot] [Patch] ks2_evm: config: enable fatload command Ivan Khoronzhuk
@ 2014-11-04 14:54 ` Tom Rini
  2014-11-04 14:55   ` Ivan Khoronzhuk
  2014-11-04 16:06 ` [U-Boot] [U-boot] [Patch v2] " Ivan Khoronzhuk
  1 sibling, 1 reply; 6+ messages in thread
From: Tom Rini @ 2014-11-04 14:54 UTC (permalink / raw)
  To: u-boot

On Wed, Oct 29, 2014 at 04:28:56PM +0200, Ivan Khoronzhuk wrote:

> The keystone2 evm can boot from USB partition with FAT32 FS, so
> enable fatload command usage.
> 
> Acked-by: Murali Karicheri <m-karicheri2@ti.com>
> Signed-off-by: Ivan Khoronzhuk <ivan.khoronzhuk@ti.com>
> ---
>  include/configs/ks2_evm.h | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/include/configs/ks2_evm.h b/include/configs/ks2_evm.h
> index b30e72f..e5e628f 100644
> --- a/include/configs/ks2_evm.h
> +++ b/include/configs/ks2_evm.h
> @@ -225,6 +225,7 @@
>  #define CONFIG_CMD_SF
>  #define CONFIG_CMD_EEPROM
>  #define CONFIG_CMD_USB
> +#define CONFIG_CMD_FAT

Please also add CONFIG_CMD_FS_GENERIC so that you can just use 'load',
etc and it just works with various fs types.

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20141104/c6db8e2d/attachment.pgp>

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

* [U-Boot] [U-boot] [Patch] ks2_evm: config: enable fatload command
  2014-11-04 14:54 ` Tom Rini
@ 2014-11-04 14:55   ` Ivan Khoronzhuk
  0 siblings, 0 replies; 6+ messages in thread
From: Ivan Khoronzhuk @ 2014-11-04 14:55 UTC (permalink / raw)
  To: u-boot

On 11/04/2014 04:54 PM, Tom Rini wrote:
> On Wed, Oct 29, 2014 at 04:28:56PM +0200, Ivan Khoronzhuk wrote:
>
>> The keystone2 evm can boot from USB partition with FAT32 FS, so
>> enable fatload command usage.
>>
>> Acked-by: Murali Karicheri <m-karicheri2@ti.com>
>> Signed-off-by: Ivan Khoronzhuk <ivan.khoronzhuk@ti.com>
>> ---
>>   include/configs/ks2_evm.h | 1 +
>>   1 file changed, 1 insertion(+)
>>
>> diff --git a/include/configs/ks2_evm.h b/include/configs/ks2_evm.h
>> index b30e72f..e5e628f 100644
>> --- a/include/configs/ks2_evm.h
>> +++ b/include/configs/ks2_evm.h
>> @@ -225,6 +225,7 @@
>>   #define CONFIG_CMD_SF
>>   #define CONFIG_CMD_EEPROM
>>   #define CONFIG_CMD_USB
>> +#define CONFIG_CMD_FAT
> Please also add CONFIG_CMD_FS_GENERIC so that you can just use 'load',
> etc and it just works with various fs types.
>
Ok
Thanks.

-- 
Regards,
Ivan Khoronzhuk

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

* [U-Boot] [U-boot] [Patch v2] ks2_evm: config: enable fatload command
  2014-10-29 14:28 [U-Boot] [U-boot] [Patch] ks2_evm: config: enable fatload command Ivan Khoronzhuk
  2014-11-04 14:54 ` Tom Rini
@ 2014-11-04 16:06 ` Ivan Khoronzhuk
  2014-11-04 16:46   ` Tom Rini
  2014-11-05 21:32   ` [U-Boot] [U-Boot, U-boot, " Tom Rini
  1 sibling, 2 replies; 6+ messages in thread
From: Ivan Khoronzhuk @ 2014-11-04 16:06 UTC (permalink / raw)
  To: u-boot

The keystone2 evm can boot from USB partition with FAT32 FS, so
enable generic load command and fatload command usage.

Acked-by: Murali Karicheri <m-karicheri2@ti.com>
Signed-off-by: Ivan Khoronzhuk <ivan.khoronzhuk@ti.com>
---

v2..v1:
	- enabled generic load command

 include/configs/ks2_evm.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/include/configs/ks2_evm.h b/include/configs/ks2_evm.h
index b30e72f..bddbb1c 100644
--- a/include/configs/ks2_evm.h
+++ b/include/configs/ks2_evm.h
@@ -225,6 +225,8 @@
 #define CONFIG_CMD_SF
 #define CONFIG_CMD_EEPROM
 #define CONFIG_CMD_USB
+#define CONFIG_CMD_FAT
+#define CONFIG_CMD_FS_GENERIC
 
 /* U-Boot general configuration */
 #define CONFIG_SYS_GENERIC_BOARD
-- 
1.9.1

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

* [U-Boot] [U-boot] [Patch v2] ks2_evm: config: enable fatload command
  2014-11-04 16:06 ` [U-Boot] [U-boot] [Patch v2] " Ivan Khoronzhuk
@ 2014-11-04 16:46   ` Tom Rini
  2014-11-05 21:32   ` [U-Boot] [U-Boot, U-boot, " Tom Rini
  1 sibling, 0 replies; 6+ messages in thread
From: Tom Rini @ 2014-11-04 16:46 UTC (permalink / raw)
  To: u-boot

On Tue, Nov 04, 2014 at 06:06:27PM +0200, Ivan Khoronzhuk wrote:

> The keystone2 evm can boot from USB partition with FAT32 FS, so
> enable generic load command and fatload command usage.
> 
> Acked-by: Murali Karicheri <m-karicheri2@ti.com>
> Signed-off-by: Ivan Khoronzhuk <ivan.khoronzhuk@ti.com>

Reviewed-by: Tom Rini <trini@ti.com>

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20141104/1369870a/attachment.pgp>

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

* [U-Boot] [U-Boot, U-boot, v2] ks2_evm: config: enable fatload command
  2014-11-04 16:06 ` [U-Boot] [U-boot] [Patch v2] " Ivan Khoronzhuk
  2014-11-04 16:46   ` Tom Rini
@ 2014-11-05 21:32   ` Tom Rini
  1 sibling, 0 replies; 6+ messages in thread
From: Tom Rini @ 2014-11-05 21:32 UTC (permalink / raw)
  To: u-boot

On Tue, Nov 04, 2014 at 06:06:27PM +0200, Khoronzhuk, Ivan wrote:

> The keystone2 evm can boot from USB partition with FAT32 FS, so
> enable generic load command and fatload command usage.
> 
> Acked-by: Murali Karicheri <m-karicheri2@ti.com>
> Signed-off-by: Ivan Khoronzhuk <ivan.khoronzhuk@ti.com>
> Reviewed-by: Tom Rini <trini@ti.com>

Applied to u-boot-ti/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20141105/766c56ef/attachment.pgp>

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

end of thread, other threads:[~2014-11-05 21:32 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-29 14:28 [U-Boot] [U-boot] [Patch] ks2_evm: config: enable fatload command Ivan Khoronzhuk
2014-11-04 14:54 ` Tom Rini
2014-11-04 14:55   ` Ivan Khoronzhuk
2014-11-04 16:06 ` [U-Boot] [U-boot] [Patch v2] " Ivan Khoronzhuk
2014-11-04 16:46   ` Tom Rini
2014-11-05 21:32   ` [U-Boot] [U-Boot, U-boot, " Tom Rini

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