Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] docs/manual: fixing one liners for vagrant
@ 2016-02-07 12:40 Angelo Compagnucci
  2016-02-07 23:22 ` Arnout Vandecappelle
  2016-02-08 12:34 ` Thomas Petazzoni
  0 siblings, 2 replies; 4+ messages in thread
From: Angelo Compagnucci @ 2016-02-07 12:40 UTC (permalink / raw)
  To: buildroot

* Changing back wget to curl cause wget it's not available
  on mac os x.
* Braking up too long windows one liner.

Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com>
---
 docs/manual/getting.txt | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/docs/manual/getting.txt b/docs/manual/getting.txt
index bb63cab..549938a 100644
--- a/docs/manual/getting.txt
+++ b/docs/manual/getting.txt
@@ -19,13 +19,15 @@ If you want to setup an isolated buildroot environment on Linux or Mac
 Os X, paste this line onto your terminal:
 
 --------------------
-wget https://buildroot.org/downloads/Vagrantfile; vagrant up
+curl -O https://buildroot.org/downloads/Vagrantfile; vagrant up
 --------------------
 
 If you are on Windows, paste this into your powershell:
 
 --------------------
-(new-object System.Net.WebClient).DownloadFile("https://buildroot.org/downloads/Vagrantfile","Vagrantfile"); vagrant up
+(new-object System.Net.WebClient).DownloadFile(
+"https://buildroot.org/downloads/Vagrantfile","Vagrantfile");
+vagrant up
 --------------------
 
 If you want to follow development, you can use the daily snapshots or
-- 
1.9.1

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

* [Buildroot] [PATCH] docs/manual: fixing one liners for vagrant
  2016-02-07 12:40 [Buildroot] [PATCH] docs/manual: fixing one liners for vagrant Angelo Compagnucci
@ 2016-02-07 23:22 ` Arnout Vandecappelle
  2016-02-08 10:12   ` Angelo Compagnucci
  2016-02-08 12:34 ` Thomas Petazzoni
  1 sibling, 1 reply; 4+ messages in thread
From: Arnout Vandecappelle @ 2016-02-07 23:22 UTC (permalink / raw)
  To: buildroot

On 07-02-16 13:40, Angelo Compagnucci wrote:
> * Changing back wget to curl cause wget it's not available
>   on mac os x.
> * Braking up too long windows one liner.
> 
> Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com>
> ---
>  docs/manual/getting.txt | 6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)
> 
> diff --git a/docs/manual/getting.txt b/docs/manual/getting.txt
> index bb63cab..549938a 100644
> --- a/docs/manual/getting.txt
> +++ b/docs/manual/getting.txt
> @@ -19,13 +19,15 @@ If you want to setup an isolated buildroot environment on Linux or Mac
>  Os X, paste this line onto your terminal:
>  
>  --------------------
> -wget https://buildroot.org/downloads/Vagrantfile; vagrant up
> +curl -O https://buildroot.org/downloads/Vagrantfile; vagrant up

 Ack on this one.

>  --------------------
>  
>  If you are on Windows, paste this into your powershell:
>  
>  --------------------
> -(new-object System.Net.WebClient).DownloadFile("https://buildroot.org/downloads/Vagrantfile","Vagrantfile"); vagrant up
> +(new-object System.Net.WebClient).DownloadFile(
> +"https://buildroot.org/downloads/Vagrantfile","Vagrantfile");

 Does this still work if you cut&paste it with the line break? (Not a windows
user myself...)


 Regards,
 Arnout


> +vagrant up
>  --------------------
>  
>  If you want to follow development, you can use the daily snapshots or
> 


-- 
Arnout Vandecappelle                          arnout at mind be
Senior Embedded Software Architect            +32-16-286500
Essensium/Mind                                http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7493 020B C7E3 8618 8DEC 222C 82EB F404 F9AC 0DDF

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

* [Buildroot] [PATCH] docs/manual: fixing one liners for vagrant
  2016-02-07 23:22 ` Arnout Vandecappelle
@ 2016-02-08 10:12   ` Angelo Compagnucci
  0 siblings, 0 replies; 4+ messages in thread
From: Angelo Compagnucci @ 2016-02-08 10:12 UTC (permalink / raw)
  To: buildroot

Dear Arnout Vandecappelle,

2016-02-08 0:22 GMT+01:00 Arnout Vandecappelle <arnout@mind.be>:
> On 07-02-16 13:40, Angelo Compagnucci wrote:
>> * Changing back wget to curl cause wget it's not available
>>   on mac os x.
>> * Braking up too long windows one liner.
>>
>> Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com>
>> ---
>>  docs/manual/getting.txt | 6 ++++--
>>  1 file changed, 4 insertions(+), 2 deletions(-)
>>
>> diff --git a/docs/manual/getting.txt b/docs/manual/getting.txt
>> index bb63cab..549938a 100644
>> --- a/docs/manual/getting.txt
>> +++ b/docs/manual/getting.txt
>> @@ -19,13 +19,15 @@ If you want to setup an isolated buildroot environment on Linux or Mac
>>  Os X, paste this line onto your terminal:
>>
>>  --------------------
>> -wget https://buildroot.org/downloads/Vagrantfile; vagrant up
>> +curl -O https://buildroot.org/downloads/Vagrantfile; vagrant up
>
>  Ack on this one.
>
>>  --------------------
>>
>>  If you are on Windows, paste this into your powershell:
>>
>>  --------------------
>> -(new-object System.Net.WebClient).DownloadFile("https://buildroot.org/downloads/Vagrantfile","Vagrantfile"); vagrant up
>> +(new-object System.Net.WebClient).DownloadFile(
>> +"https://buildroot.org/downloads/Vagrantfile","Vagrantfile");
>
>  Does this still work if you cut&paste it with the line break? (Not a windows
> user myself...)

Of course, yes, it was tested with several windows versions.

Sincerely, Angelo.

>
>
>  Regards,
>  Arnout
>
>
>> +vagrant up
>>  --------------------
>>
>>  If you want to follow development, you can use the daily snapshots or
>>
>
>
> --
> Arnout Vandecappelle                          arnout at mind be
> Senior Embedded Software Architect            +32-16-286500
> Essensium/Mind                                http://www.mind.be
> G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
> LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
> GPG fingerprint:  7493 020B C7E3 8618 8DEC 222C 82EB F404 F9AC 0DDF



-- 
Profile: http://it.linkedin.com/in/compagnucciangelo

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

* [Buildroot] [PATCH] docs/manual: fixing one liners for vagrant
  2016-02-07 12:40 [Buildroot] [PATCH] docs/manual: fixing one liners for vagrant Angelo Compagnucci
  2016-02-07 23:22 ` Arnout Vandecappelle
@ 2016-02-08 12:34 ` Thomas Petazzoni
  1 sibling, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2016-02-08 12:34 UTC (permalink / raw)
  To: buildroot

Dear Angelo Compagnucci,

On Sun,  7 Feb 2016 13:40:45 +0100, Angelo Compagnucci wrote:
> * Changing back wget to curl cause wget it's not available
>   on mac os x.
> * Braking up too long windows one liner.
> 
> Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com>
> ---
>  docs/manual/getting.txt | 6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)

Applied, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

end of thread, other threads:[~2016-02-08 12:34 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-07 12:40 [Buildroot] [PATCH] docs/manual: fixing one liners for vagrant Angelo Compagnucci
2016-02-07 23:22 ` Arnout Vandecappelle
2016-02-08 10:12   ` Angelo Compagnucci
2016-02-08 12:34 ` Thomas Petazzoni

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