From: Ming Liu Date: Wed, 1 Feb 2017 12:04:19 +0000 (+0100) Subject: scripts/runqemu: fix a typo X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~22653 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c72d5acb9c2f4a7d4dfe0e78aae832b10aec4429;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git scripts/runqemu: fix a typo Signed-off-by: Ming Liu Signed-off-by: Ross Burton --- diff --git a/scripts/runqemu b/scripts/runqemu index 31eff5a0822..d74f252ec14 100755 --- a/scripts/runqemu +++ b/scripts/runqemu @@ -96,7 +96,7 @@ Examples: """) def check_tun(): - """Check /dev/net/run""" + """Check /dev/net/tun""" dev_tun = '/dev/net/tun' if not os.path.exists(dev_tun): raise Exception("TUN control device %s is unavailable; you may need to enable TUN (e.g. sudo modprobe tun)" % dev_tun)