diff options
author | Ming Liu <peter.x.liu@external.atlascopco.com> | 2017-02-01 13:04:19 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-02 17:37:36 +0000 |
commit | c72d5acb9c2f4a7d4dfe0e78aae832b10aec4429 (patch) | |
tree | b418a51ad31dee1e5e7640148db8e02e17c713f0 | |
parent | 3a6b0b9f94b7097a825edf3fe258a2f86b73edd6 (diff) | |
download | openembedded-core-c72d5acb9c2f4a7d4dfe0e78aae832b10aec4429.tar.gz openembedded-core-c72d5acb9c2f4a7d4dfe0e78aae832b10aec4429.tar.bz2 openembedded-core-c72d5acb9c2f4a7d4dfe0e78aae832b10aec4429.zip |
scripts/runqemu: fix a typo
Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rwxr-xr-x | scripts/runqemu | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/runqemu b/scripts/runqemu index 31eff5a082..d74f252ec1 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) |