From df937dc84714e68a84922180a2b3d5dff229db62 Mon Sep 17 00:00:00 2001 From: Sergei Trofimov Date: Tue, 12 Jan 2016 14:57:14 +0000 Subject: [PATCH] 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... --- wlauto/devices/android/juno/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wlauto/devices/android/juno/__init__.py b/wlauto/devices/android/juno/__init__.py index 11988578..01a52ef6 100644 --- a/wlauto/devices/android/juno/__init__.py +++ b/wlauto/devices/android/juno/__init__.py @@ -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: