File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/clusterfuzz/_internal/platforms/android Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -420,13 +420,13 @@ def start_cuttlefish_device(use_kernel=False):
420420 device_memory_mb = environment .get_value ('DEVICE_MEMORY_MB' ,
421421 DEFAULT_DEVICE_MEMORY_MB )
422422 launch_cvd_command_line = (
423- f'{ launch_cvd_path } -daemon -memory_mb { device_memory_mb } '
424- '-report_anonymous_usage_stats Y ' )
423+ f'sudo { launch_cvd_path } -- daemon -- memory_mb= { device_memory_mb } '
424+ '-- report_anonymous_usage_stats=Y --enable_sandbox=true --resume=false ' )
425425 if use_kernel :
426426 kernel_path = os .path .join (cvd_dir , 'bzImage' )
427427 initramfs_path = os .path .join (cvd_dir , 'initramfs.img' )
428428 launch_cvd_command_line += (
429- f' -kernel_path={ kernel_path } -initramfs_path={ initramfs_path } ' )
429+ f' -- kernel_path={ kernel_path } - -initramfs_path={ initramfs_path } ' )
430430
431431 execute_command (
432432 launch_cvd_command_line ,
You can’t perform that action at this time.
0 commit comments