=== modified file 'lava_dispatcher/actions/android_deploy.py'
@@ -138,7 +138,7 @@
'sed -i "s/mmcblk0p2/mmcblk0p5/g" init.rc',
response = MASTER_STR)
client.run_shell_command(
- 'sed -i "/export PATH/a \ \ \ \ export PS1 android# " init.rc',
+ 'sed -i "/export PATH/a \ \ \ \ export PS1 root@linaro: " init.rc',
response = MASTER_STR)
client.run_shell_command(
=== modified file 'lava_dispatcher/android_client.py'
@@ -42,7 +42,7 @@
""" Check that we are in a shell on the test image
"""
self.proc.sendline("")
- id = self.proc.expect(["android#", pexpect.TIMEOUT])
+ id = self.proc.expect([TESTER_STR , pexpect.TIMEOUT])
if id == 1:
raise OperationFailed
@@ -61,7 +61,7 @@
self.proc.expect("#")
self.proc.sendline(uboot_cmds[line])
self.in_test_shell()
- self.proc.sendline("export PS1=\"android# \"")
+ self.proc.sendline("export PS1=\"root@linaro: \"")
def android_logcat_clear(self):
cmd = "logcat -c"
=== modified file 'lava_dispatcher/android_config.py'
@@ -55,7 +55,10 @@
BOARDS = {
"beagle01": BeagleBoard,
"panda01": PandaBoard,
+ "panda02": PandaBoard,
+ "panda03": PandaBoard,
+ "panda04": PandaBoard,
}
#Test image recognization string
-TESTER_STR = "android# "
+TESTER_STR = "root@linaro:"
=== modified file 'lava_dispatcher/config.py'
@@ -85,6 +85,8 @@
BOARDS = {
"panda01": PandaBoard,
"panda02": PandaBoard,
+ "panda03": PandaBoard,
+ "panda04": PandaBoard,
"beaglexm01": BeagleBoard,
"mx51evk01": Mx51evkBoard,
"mx53loco01": Mx53locoBoard,