]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
scripts/runqemu: fix a typo
authorMing Liu <peter.x.liu@external.atlascopco.com>
Wed, 1 Feb 2017 12:04:19 +0000 (13:04 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 2 Feb 2017 17:37:36 +0000 (17:37 +0000)
Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
scripts/runqemu

index 31eff5a0822b90ca492823c1cbeee9ee645b81db..d74f252ec14a1a51c182327c35361e9096849b18 100755 (executable)
@@ -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)