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:45 +0000 |
commit | 6469647f487563adb4bd290d063a061421ff38c1 (patch) | |
tree | 42db9cc85ab90be7b42824769d7a87fe0ddf6871 /scripts/runqemu | |
parent | 383fc7df3149d49a9a25e1e2e47f1c6b580e6773 (diff) | |
download | poky-6469647f487563adb4bd290d063a061421ff38c1.tar.gz |
scripts/runqemu: fix a typo
(From OE-Core rev: c72d5acb9c2f4a7d4dfe0e78aae832b10aec4429)
Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/runqemu')
-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: | |||
96 | """) | 96 | """) |
97 | 97 | ||
98 | def check_tun(): | 98 | def check_tun(): |
99 | """Check /dev/net/run""" | 99 | """Check /dev/net/tun""" |
100 | dev_tun = '/dev/net/tun' | 100 | dev_tun = '/dev/net/tun' |
101 | if not os.path.exists(dev_tun): | 101 | if not os.path.exists(dev_tun): |
102 | raise Exception("TUN control device %s is unavailable; you may need to enable TUN (e.g. sudo modprobe tun)" % dev_tun) | 102 | raise Exception("TUN control device %s is unavailable; you may need to enable TUN (e.g. sudo modprobe tun)" % dev_tun) |