X-Git-Url: https://glassweightruler.freedombox.rocks/gitweb/waydroid.git/blobdiff_plain/efb14422c53623aa8edf0ae432d1ebca9b3b82a0..22f671bf0520df68fc6b3cf106e1fc97f462da86:/tools/helpers/drivers.py diff --git a/tools/helpers/drivers.py b/tools/helpers/drivers.py index 25a5b62..fa4d536 100644 --- a/tools/helpers/drivers.py +++ b/tools/helpers/drivers.py @@ -86,7 +86,9 @@ def probeBinderDriver(args): if len(binder_dev_nodes) > 0: if not isBinderfsLoaded(args): - command = ["modprobe", "binder_linux"] + devices = ','.join(binder_dev_nodes) + command = ["modprobe", "binder_linux", + "devices=\"{}\"".format(devices)] output = tools.helpers.run.user(args, command, check=False, output_return=True) if output: logging.error("Failed to load binder driver")