Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/1] runqemu-gen-tapdevs: fix file path in example
@ 2017-03-22  9:23 Chen Qi
  2017-03-22  9:23 ` [PATCH 1/1] " Chen Qi
  0 siblings, 1 reply; 4+ messages in thread
From: Chen Qi @ 2017-03-22  9:23 UTC (permalink / raw)
  To: openembedded-core

The following changes since commit 9fc3fec4499e6110031245d7b56e580c903e77e5:

  Revert "file: update SRCREV for 5.30 to fix fetch fail on missing commit" (2017-03-21 22:39:17 +0000)

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib ChenQi/example-path
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=ChenQi/example-path

Chen Qi (1):
  runqemu-gen-tapdevs: fix file path in example

 scripts/runqemu-gen-tapdevs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
1.9.1



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

* [PATCH 1/1] runqemu-gen-tapdevs: fix file path in example
  2017-03-22  9:23 [PATCH 0/1] runqemu-gen-tapdevs: fix file path in example Chen Qi
@ 2017-03-22  9:23 ` Chen Qi
  2017-03-22 10:27   ` Richard Purdie
  0 siblings, 1 reply; 4+ messages in thread
From: Chen Qi @ 2017-03-22  9:23 UTC (permalink / raw)
  To: openembedded-core

Fix the path in example so that '/usr/bin/tunctl' could be found under
this path.

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
---
 scripts/runqemu-gen-tapdevs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/runqemu-gen-tapdevs b/scripts/runqemu-gen-tapdevs
index 9e5e5b9..994efd0 100755
--- a/scripts/runqemu-gen-tapdevs
+++ b/scripts/runqemu-gen-tapdevs
@@ -29,7 +29,7 @@ usage() {
 	echo "<num> is the number of tap devices to create (0 to remove all)"
 	echo "<native-sysroot-basedir> is the path to the build system's native sysroot"
 	echo "e.g. $ bitbake qemu-helper-native -c addto_recipe_sysroot"
-	echo "$ sudo $0 1000 1000 4 tmp/work/x86_64-linux/qemu-helper-native/*/recipe-sysroot-native/"
+	echo "$ sudo $0 1000 1000 4 tmp/sysroots-components/x86_64/qemu-helper-native/"
 	exit 1
 }
 
-- 
1.9.1



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

* Re: [PATCH 1/1] runqemu-gen-tapdevs: fix file path in example
  2017-03-22  9:23 ` [PATCH 1/1] " Chen Qi
@ 2017-03-22 10:27   ` Richard Purdie
  2017-03-23  3:11     ` ChenQi
  0 siblings, 1 reply; 4+ messages in thread
From: Richard Purdie @ 2017-03-22 10:27 UTC (permalink / raw)
  To: Chen Qi, openembedded-core

On Wed, 2017-03-22 at 17:23 +0800, Chen Qi wrote:
> Fix the path in example so that '/usr/bin/tunctl' could be found under
> this path.
> 
> Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
> ---
>  scripts/runqemu-gen-tapdevs | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/scripts/runqemu-gen-tapdevs b/scripts/runqemu-gen-tapdevs
> index 9e5e5b9..994efd0 100755
> --- a/scripts/runqemu-gen-tapdevs
> +++ b/scripts/runqemu-gen-tapdevs
> @@ -29,7 +29,7 @@ usage() {
>  	echo " is the number of tap devices to create (0 to remove all)"
>  	echo " is the path to the build system's native sysroot"
>  	echo "e.g. $ bitbake qemu-helper-native -c addto_recipe_sysroot"

If we change this, you also need to change the above to remove -c
addto_recipe_sysroot.

Cheers,

Richard

> -	echo "$ sudo $0 1000 1000 4 tmp/work/x86_64-linux/qemu-helper-native/*/recipe-sysroot-native/"
> +	echo "$ sudo $0 1000 1000 4 tmp/sysroots-components/x86_64/qemu-helper-native/"
>  	exit 1
>  }
>  
> -- 
> 1.9.1
> 


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

* Re: [PATCH 1/1] runqemu-gen-tapdevs: fix file path in example
  2017-03-22 10:27   ` Richard Purdie
@ 2017-03-23  3:11     ` ChenQi
  0 siblings, 0 replies; 4+ messages in thread
From: ChenQi @ 2017-03-23  3:11 UTC (permalink / raw)
  To: Richard Purdie, openembedded-core

On 03/22/2017 06:27 PM, Richard Purdie wrote:
> On Wed, 2017-03-22 at 17:23 +0800, Chen Qi wrote:
>> Fix the path in example so that '/usr/bin/tunctl' could be found under
>> this path.
>>
>> Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
>> ---
>>   scripts/runqemu-gen-tapdevs | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/scripts/runqemu-gen-tapdevs b/scripts/runqemu-gen-tapdevs
>> index 9e5e5b9..994efd0 100755
>> --- a/scripts/runqemu-gen-tapdevs
>> +++ b/scripts/runqemu-gen-tapdevs
>> @@ -29,7 +29,7 @@ usage() {
>>   	echo " is the number of tap devices to create (0 to remove all)"
>>   	echo " is the path to the build system's native sysroot"
>>   	echo "e.g. $ bitbake qemu-helper-native -c addto_recipe_sysroot"
> If we change this, you also need to change the above to remove -c
> addto_recipe_sysroot.
>
> Cheers,
>
> Richard

Thanks. V2 has been sent.

Best Regards,
Chen Qi

>> -	echo "$ sudo $0 1000 1000 4 tmp/work/x86_64-linux/qemu-helper-native/*/recipe-sysroot-native/"
>> +	echo "$ sudo $0 1000 1000 4 tmp/sysroots-components/x86_64/qemu-helper-native/"
>>   	exit 1
>>   }
>>   
>> -- 
>> 1.9.1
>>



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

end of thread, other threads:[~2017-03-23  3:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-03-22  9:23 [PATCH 0/1] runqemu-gen-tapdevs: fix file path in example Chen Qi
2017-03-22  9:23 ` [PATCH 1/1] " Chen Qi
2017-03-22 10:27   ` Richard Purdie
2017-03-23  3:11     ` ChenQi

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