Fixed menuconfig with new async runner

This commit is contained in:
Martijn Braam 2017-06-02 15:19:08 +02:00
parent 13efa270a1
commit f39c1dae69
4 changed files with 18 additions and 14 deletions

View file

@ -41,7 +41,7 @@ def executables_absolute_path():
def root(args, cmd, suffix="native", working_dir="/", log=True,
auto_init=True, return_stdout=False, check=True):
auto_init=True, return_stdout=False, check=True, passthrough=False):
"""
Run a command inside a chroot as root.
@ -82,4 +82,4 @@ def root(args, cmd, suffix="native", working_dir="/", log=True,
# Run the command
return pmb.helpers.run.core(args, cmd_full, log_message, log,
return_stdout, check)
return_stdout, check, passthrough)