diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2017-03-23 11:11:33 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-23 22:28:55 +0000 |
commit | d1b8e1460b25018ac8f65d3647bc736f3393ed3e (patch) | |
tree | f66109747f4561b26e260b851dcc7673f26092c2 /scripts | |
parent | b6cdbf50e5c26c406e4ddecd66202ff7324f5468 (diff) | |
download | openembedded-core-d1b8e1460b25018ac8f65d3647bc736f3393ed3e.tar.gz openembedded-core-d1b8e1460b25018ac8f65d3647bc736f3393ed3e.tar.bz2 openembedded-core-d1b8e1460b25018ac8f65d3647bc736f3393ed3e.zip |
runqemu-gen-tapdevs: fix file path in example
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>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/runqemu-gen-tapdevs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/runqemu-gen-tapdevs b/scripts/runqemu-gen-tapdevs index 9e5e5b98f0..49e1efce7c 100755 --- a/scripts/runqemu-gen-tapdevs +++ b/scripts/runqemu-gen-tapdevs @@ -28,8 +28,8 @@ usage() { echo "Where <gid> is the numeric group id the tap devices will be owned by" 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 "e.g. $ bitbake qemu-helper-native" + echo "$ sudo $0 1000 1000 4 tmp/sysroots-components/x86_64/qemu-helper-native/" exit 1 } |