1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-01-18 20:11:20 +00: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:
Sergei Trofimov 2016-01-12 14:57:14 +00:00
parent 1ef7bb4e93
commit df937dc847

View File

@ -106,7 +106,7 @@ class Juno(BigLittleDevice):
if self.bootloader == 'uefi':
self._boot_via_uefi()
else:
self._boot_via_uboot(**self.bootargs)
self._boot_via_uboot(bootargs=self.bootargs)
def _boot_via_uboot(self, **kwargs):
if not kwargs: