diff --git a/wlauto/workloads/dhrystone/__init__.py b/wlauto/workloads/dhrystone/__init__.py index e1ee9db7..8e60a10a 100644 --- a/wlauto/workloads/dhrystone/__init__.py +++ b/wlauto/workloads/dhrystone/__init__.py @@ -71,7 +71,7 @@ class Dhrystone(Workload): self.device_exe = self.device.install(host_exe) execution_mode = '-l {}'.format(self.mloops) if self.mloops else '-r {}'.format(self.duration) if self.taskset_mask: - taskset_string = 'busybox taskset 0x{:x} '.format(self.taskset_mask) + taskset_string = '{} taskset 0x{:x} '.format(self.device.busybox, self.taskset_mask) else: taskset_string = '' self.command = '{}{} {} -t {} -d {}'.format(taskset_string,