mirror of
				https://github.com/ARM-software/workload-automation.git
				synced 2025-11-04 00:52:08 +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:
		@@ -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:
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user