From: Chen Qi Date: Thu, 23 Mar 2017 03:11:33 +0000 (+0800) Subject: runqemu-gen-tapdevs: fix file path in example X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~21909 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d1b8e1460b25018ac8f65d3647bc736f3393ed3e;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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 Signed-off-by: Ross Burton --- diff --git a/scripts/runqemu-gen-tapdevs b/scripts/runqemu-gen-tapdevs index 9e5e5b98f05..49e1efce7ce 100755 --- a/scripts/runqemu-gen-tapdevs +++ b/scripts/runqemu-gen-tapdevs @@ -28,8 +28,8 @@ usage() { echo "Where is the numeric group id the tap devices will be owned by" 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" - 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 }