1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-01-18 12:06:08 +00:00

Merge pull request #1 from rockyzhang/patch-1

Update __init__.py
This commit is contained in:
setrofim 2015-03-16 09:24:48 +00:00
commit 6d9b49d4bb

View File

@ -834,6 +834,9 @@ class TC2Device(BigLittleDevice):
target.expect(self.config.bootmon_prompt)
target.sendline('fl linux initrd ' + self.config.initrd)
target.expect(self.config.bootmon_prompt)
#Workaround TC2 bootmon serial issue for loading large initrd blob
target.sendline(' ')
target.expect(self.config.bootmon_prompt)
target.sendline('fl linux boot ' + self.config.kernel + self.config.kernel_arguments)