All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] ARM: at91: at91sam9rlek: add hush parser to defconfig
@ 2015-02-03 10:19 Josh Wu
  2015-02-04  5:10 ` Bo Shen
  2015-03-18 22:37 ` [U-Boot] " Andreas Bießmann
  0 siblings, 2 replies; 4+ messages in thread
From: Josh Wu @ 2015-02-03 10:19 UTC (permalink / raw)
  To: u-boot

HUSH parser will handle the variable easier. That will be helpful for
write a complicated U-Boot commands or varaibles.

Signed-off-by: Josh Wu <josh.wu@atmel.com>
---

 configs/at91sam9rlek_dataflash_defconfig | 1 +
 configs/at91sam9rlek_mmc_defconfig       | 1 +
 configs/at91sam9rlek_nandflash_defconfig | 1 +
 3 files changed, 3 insertions(+)

diff --git a/configs/at91sam9rlek_dataflash_defconfig b/configs/at91sam9rlek_dataflash_defconfig
index 90516e0..c811ad5 100644
--- a/configs/at91sam9rlek_dataflash_defconfig
+++ b/configs/at91sam9rlek_dataflash_defconfig
@@ -1,3 +1,4 @@
 CONFIG_SYS_EXTRA_OPTIONS="AT91SAM9RL,SYS_USE_DATAFLASH"
 CONFIG_ARM=y
 CONFIG_TARGET_AT91SAM9RLEK=y
+CONFIG_HUSH_PARSER=y
diff --git a/configs/at91sam9rlek_mmc_defconfig b/configs/at91sam9rlek_mmc_defconfig
index b93c881..8704140 100644
--- a/configs/at91sam9rlek_mmc_defconfig
+++ b/configs/at91sam9rlek_mmc_defconfig
@@ -1,3 +1,4 @@
 CONFIG_SYS_EXTRA_OPTIONS="AT91SAM9RL,SYS_USE_MMC"
 CONFIG_ARM=y
 CONFIG_TARGET_AT91SAM9RLEK=y
+CONFIG_HUSH_PARSER=y
diff --git a/configs/at91sam9rlek_nandflash_defconfig b/configs/at91sam9rlek_nandflash_defconfig
index 0e2edfd..e3de043 100644
--- a/configs/at91sam9rlek_nandflash_defconfig
+++ b/configs/at91sam9rlek_nandflash_defconfig
@@ -1,3 +1,4 @@
 CONFIG_SYS_EXTRA_OPTIONS="AT91SAM9RL,SYS_USE_NANDFLASH"
 CONFIG_ARM=y
 CONFIG_TARGET_AT91SAM9RLEK=y
+CONFIG_HUSH_PARSER=y
-- 
1.9.1

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

* [U-Boot] [PATCH] ARM: at91: at91sam9rlek: add hush parser to defconfig
  2015-02-03 10:19 [U-Boot] [PATCH] ARM: at91: at91sam9rlek: add hush parser to defconfig Josh Wu
@ 2015-02-04  5:10 ` Bo Shen
  2015-02-04  5:17   ` Josh Wu
  2015-03-18 22:37 ` [U-Boot] " Andreas Bießmann
  1 sibling, 1 reply; 4+ messages in thread
From: Bo Shen @ 2015-02-04  5:10 UTC (permalink / raw)
  To: u-boot

Hi Josh,

On 02/03/2015 06:19 PM, Josh Wu wrote:
> HUSH parser will handle the variable easier. That will be helpful for
> write a complicated U-Boot commands or varaibles.

You are on the way to Kconfig. :)
Thanks.

> Signed-off-by: Josh Wu <josh.wu@atmel.com>

Acked-by: Bo Shen <voice.shen@atmel.com>

> ---
>
>   configs/at91sam9rlek_dataflash_defconfig | 1 +
>   configs/at91sam9rlek_mmc_defconfig       | 1 +
>   configs/at91sam9rlek_nandflash_defconfig | 1 +
>   3 files changed, 3 insertions(+)
>
> diff --git a/configs/at91sam9rlek_dataflash_defconfig b/configs/at91sam9rlek_dataflash_defconfig
> index 90516e0..c811ad5 100644
> --- a/configs/at91sam9rlek_dataflash_defconfig
> +++ b/configs/at91sam9rlek_dataflash_defconfig
> @@ -1,3 +1,4 @@
>   CONFIG_SYS_EXTRA_OPTIONS="AT91SAM9RL,SYS_USE_DATAFLASH"
>   CONFIG_ARM=y
>   CONFIG_TARGET_AT91SAM9RLEK=y
> +CONFIG_HUSH_PARSER=y
> diff --git a/configs/at91sam9rlek_mmc_defconfig b/configs/at91sam9rlek_mmc_defconfig
> index b93c881..8704140 100644
> --- a/configs/at91sam9rlek_mmc_defconfig
> +++ b/configs/at91sam9rlek_mmc_defconfig
> @@ -1,3 +1,4 @@
>   CONFIG_SYS_EXTRA_OPTIONS="AT91SAM9RL,SYS_USE_MMC"
>   CONFIG_ARM=y
>   CONFIG_TARGET_AT91SAM9RLEK=y
> +CONFIG_HUSH_PARSER=y
> diff --git a/configs/at91sam9rlek_nandflash_defconfig b/configs/at91sam9rlek_nandflash_defconfig
> index 0e2edfd..e3de043 100644
> --- a/configs/at91sam9rlek_nandflash_defconfig
> +++ b/configs/at91sam9rlek_nandflash_defconfig
> @@ -1,3 +1,4 @@
>   CONFIG_SYS_EXTRA_OPTIONS="AT91SAM9RL,SYS_USE_NANDFLASH"
>   CONFIG_ARM=y
>   CONFIG_TARGET_AT91SAM9RLEK=y
> +CONFIG_HUSH_PARSER=y
>

Best Regards,
Bo Shen

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

* [U-Boot] [PATCH] ARM: at91: at91sam9rlek: add hush parser to defconfig
  2015-02-04  5:10 ` Bo Shen
@ 2015-02-04  5:17   ` Josh Wu
  0 siblings, 0 replies; 4+ messages in thread
From: Josh Wu @ 2015-02-04  5:17 UTC (permalink / raw)
  To: u-boot

On 2/4/2015 1:10 PM, Bo Shen wrote:
> Hi Josh,
>
> On 02/03/2015 06:19 PM, Josh Wu wrote:
>> HUSH parser will handle the variable easier. That will be helpful for
>> write a complicated U-Boot commands or varaibles.
>
> You are on the way to Kconfig. :)
Yep. Seems a long way to go  ;-)

> Thanks.
>
>> Signed-off-by: Josh Wu <josh.wu@atmel.com>
>
> Acked-by: Bo Shen <voice.shen@atmel.com>
>
>> ---
>>
>>   configs/at91sam9rlek_dataflash_defconfig | 1 +
>>   configs/at91sam9rlek_mmc_defconfig       | 1 +
>>   configs/at91sam9rlek_nandflash_defconfig | 1 +
>>   3 files changed, 3 insertions(+)
>>
>> diff --git a/configs/at91sam9rlek_dataflash_defconfig 
>> b/configs/at91sam9rlek_dataflash_defconfig
>> index 90516e0..c811ad5 100644
>> --- a/configs/at91sam9rlek_dataflash_defconfig
>> +++ b/configs/at91sam9rlek_dataflash_defconfig
>> @@ -1,3 +1,4 @@
>>   CONFIG_SYS_EXTRA_OPTIONS="AT91SAM9RL,SYS_USE_DATAFLASH"
>>   CONFIG_ARM=y
>>   CONFIG_TARGET_AT91SAM9RLEK=y
>> +CONFIG_HUSH_PARSER=y
>> diff --git a/configs/at91sam9rlek_mmc_defconfig 
>> b/configs/at91sam9rlek_mmc_defconfig
>> index b93c881..8704140 100644
>> --- a/configs/at91sam9rlek_mmc_defconfig
>> +++ b/configs/at91sam9rlek_mmc_defconfig
>> @@ -1,3 +1,4 @@
>>   CONFIG_SYS_EXTRA_OPTIONS="AT91SAM9RL,SYS_USE_MMC"
>>   CONFIG_ARM=y
>>   CONFIG_TARGET_AT91SAM9RLEK=y
>> +CONFIG_HUSH_PARSER=y
>> diff --git a/configs/at91sam9rlek_nandflash_defconfig 
>> b/configs/at91sam9rlek_nandflash_defconfig
>> index 0e2edfd..e3de043 100644
>> --- a/configs/at91sam9rlek_nandflash_defconfig
>> +++ b/configs/at91sam9rlek_nandflash_defconfig
>> @@ -1,3 +1,4 @@
>>   CONFIG_SYS_EXTRA_OPTIONS="AT91SAM9RL,SYS_USE_NANDFLASH"
>>   CONFIG_ARM=y
>>   CONFIG_TARGET_AT91SAM9RLEK=y
>> +CONFIG_HUSH_PARSER=y
>>
>
> Best Regards,
> Bo Shen

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

* [U-Boot] ARM: at91: at91sam9rlek: add hush parser to defconfig
  2015-02-03 10:19 [U-Boot] [PATCH] ARM: at91: at91sam9rlek: add hush parser to defconfig Josh Wu
  2015-02-04  5:10 ` Bo Shen
@ 2015-03-18 22:37 ` Andreas Bießmann
  1 sibling, 0 replies; 4+ messages in thread
From: Andreas Bießmann @ 2015-03-18 22:37 UTC (permalink / raw)
  To: u-boot

Dear Josh Wu,

Josh Wu <Josh.wu@atmel.com> writes:
>HUSH parser will handle the variable easier. That will be helpful for
>write a complicated U-Boot commands or varaibles.
>
>Signed-off-by: Josh Wu <josh.wu@atmel.com>
>Acked-by: Bo Shen <voice.shen@atmel.com>
>---
> configs/at91sam9rlek_dataflash_defconfig | 1 +
> configs/at91sam9rlek_mmc_defconfig       | 1 +
> configs/at91sam9rlek_nandflash_defconfig | 1 +
> 3 files changed, 3 insertions(+)

applied to u-boot-atmel/master, thanks!

Best regards,
Andreas Bie?mann

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

end of thread, other threads:[~2015-03-18 22:37 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-03 10:19 [U-Boot] [PATCH] ARM: at91: at91sam9rlek: add hush parser to defconfig Josh Wu
2015-02-04  5:10 ` Bo Shen
2015-02-04  5:17   ` Josh Wu
2015-03-18 22:37 ` [U-Boot] " Andreas Bießmann

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.