mirror of
				https://github.com/ARM-software/workload-automation.git
				synced 2025-10-31 07:04:17 +00:00 
			
		
		
		
	juno: Removed default bootargs
The default boot args have been removed since these cause issues with the latest Linaro builds, which boot correctly without any bootargs. Also made a regex string a raw-string.
This commit is contained in:
		| @@ -81,9 +81,7 @@ class Juno(BigLittleDevice): | ||||
|                       'fdt_support': True, | ||||
|                   } | ||||
|                   ), | ||||
|         Parameter('bootargs', default='console=ttyAMA0,115200 earlyprintk=pl011,0x7ff80000 ' | ||||
|                                       'verbose debug init=/init root=/dev/sda1 rw ip=dhcp ' | ||||
|                                       'rootwait video=DVI-D-1:1920x1080R@60', | ||||
|         Parameter('bootargs', | ||||
|                   description='''Default boot arguments to use when boot_arguments were not.'''), | ||||
|     ] | ||||
|  | ||||
| @@ -158,7 +156,7 @@ class Juno(BigLittleDevice): | ||||
|                         target.sendline('ip addr list eth0') | ||||
|                         time.sleep(1) | ||||
|                         try: | ||||
|                             target.expect('inet ([1-9]\d*.\d+.\d+.\d+)', timeout=10) | ||||
|                             target.expect(r'inet ([1-9]\d*.\d+.\d+.\d+)', timeout=10) | ||||
|                             self.adb_name = target.match.group(1) + ':5555'  # pylint: disable=W0201 | ||||
|                             break | ||||
|                         except pexpect.TIMEOUT: | ||||
|   | ||||
		Reference in New Issue
	
	Block a user