diff options
author | Adrian Freihofer <adrian.freihofer@gmail.com> | 2023-06-26 15:29:27 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-06-28 07:56:34 +0100 |
commit | ec8899f3ab843e6f612c9ffa545a0a48431ccc39 (patch) | |
tree | f2020e5948951445a8b6f8be7fbe697c7696b4b2 | |
parent | 95c785baeb60c750352873a190da34ed0b362569 (diff) | |
download | poky-ec8899f3ab843e6f612c9ffa545a0a48431ccc39.tar.gz |
runqemu: drop uid parameter for ifdown
(From OE-Core rev: 5f6f8f399b146615eeea8c2590f1588a8c150d13)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-x | scripts/runqemu | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/runqemu b/scripts/runqemu index 6a3fbb2d6f..5e6793d44e 100755 --- a/scripts/runqemu +++ b/scripts/runqemu | |||
@@ -1597,7 +1597,7 @@ to your build configuration. | |||
1597 | uptime_seconds = f.readline().split()[0] | 1597 | uptime_seconds = f.readline().split()[0] |
1598 | logger.info('Host uptime: %s\n' % uptime_seconds) | 1598 | logger.info('Host uptime: %s\n' % uptime_seconds) |
1599 | if self.cleantap: | 1599 | if self.cleantap: |
1600 | cmd = ('sudo', self.qemuifdown, self.tap, self.bindir_native) | 1600 | cmd = ('sudo', self.qemuifdown, self.tap) |
1601 | logger.debug('Running %s' % str(cmd)) | 1601 | logger.debug('Running %s' % str(cmd)) |
1602 | subprocess.check_call(cmd) | 1602 | subprocess.check_call(cmd) |
1603 | self.release_taplock() | 1603 | self.release_taplock() |