mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-09-01 19:02:31 +01:00
juno: fixing a stupid error in u-boot boot path
Juno's bootargs parameter specifies the kernel boot arguments as a sigle string. However, when it is passed into _boot_via_uboot, it was expanded as a mapping, causing an error. This fixes that boneheaded mistake...
This commit is contained in:
@@ -106,7 +106,7 @@ class Juno(BigLittleDevice):
|
|||||||
if self.bootloader == 'uefi':
|
if self.bootloader == 'uefi':
|
||||||
self._boot_via_uefi()
|
self._boot_via_uefi()
|
||||||
else:
|
else:
|
||||||
self._boot_via_uboot(**self.bootargs)
|
self._boot_via_uboot(bootargs=self.bootargs)
|
||||||
|
|
||||||
def _boot_via_uboot(self, **kwargs):
|
def _boot_via_uboot(self, **kwargs):
|
||||||
if not kwargs:
|
if not kwargs:
|
||||||
|
Reference in New Issue
Block a user