Advertisement
Guest User

Untitled

a guest
Sep 5th, 2019
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.26 KB | None | 0 0
  1. # in milliseconds
  2. character_delays:
  3. boot: 10
  4. constants:
  5. # POSIX os (not AOSP)
  6. posix:
  7. lava_test_sh_cmd: /bin/sh
  8. lava_test_results_dir: /lava-%s
  9. lava_test_shell_file: ~/.bashrc
  10. # bootloader specific
  11. barebox:
  12. interrupt-prompt: 'Hit m for menu or any other key to stop autoboot'
  13. interrupt-character: '
  14. '
  15. final-message: 'Starting kernel'
  16. error-messages:
  17. - '### ERROR ### Please RESET the board ###'
  18. - 'ERROR: .*'
  19. - '.*: Out of memory'
  20. u-boot:
  21. interrupt-prompt: 'Hit any key to stop autoboot'
  22. interrupt-character: ' '
  23. interrupt_ctrl_list: []
  24. interrupt-newline: True
  25. final-message: 'Starting kernel'
  26. error-messages:
  27. - 'Resetting CPU'
  28. - 'Must RESET board to recover'
  29. - 'TIMEOUT'
  30. - 'Retry count exceeded'
  31. - 'Retry time exceeded; starting again'
  32. - 'ERROR: The remote end did not respond in time.'
  33. dfu-download: 'DOWNLOAD \.\.\. OK\r\nCtrl\+C to exit \.\.\.'
  34. grub:
  35. interrupt-prompt: 'for a command-line'
  36. interrupt-character: 'c'
  37. interrupt-newline: False
  38. error-messages:
  39. - "error: missing (.*) symbol."
  40. grub-efi:
  41. interrupt-prompt: 'for a command-line'
  42. interrupt-character: 'c'
  43. error-messages:
  44. - 'Undefined OpCode Exception PC at'
  45. - 'Synchronous Exception at'
  46. - "error: missing (.*) symbol."
  47. ipxe:
  48. interrupt-prompt: 'Press Ctrl-B for the iPXE command line'
  49. interrupt_ctrl_list: ['b']
  50. error-messages:
  51. - 'No configuration methods succeeded'
  52. - 'Connection timed out'
  53. # OS shutdown message
  54. # Override: set as the shutdown-message parameter of an Action.
  55. # SHUTDOWN_MESSAGE
  56. shutdown-message: 'The system is going down for reboot NOW'
  57. # Kernel starting message
  58. kernel-start-message: 'Linux version [0-9]'
  59. # Default shell prompt for AutoLogin
  60. # DEFAULT_SHELL_PROMPT
  61. default-shell-prompt: 'lava-test: # '
  62. # pexpect.spawn maxread
  63. # SPAWN_MAXREAD - in bytes, quoted as a string
  64. # 1 to turn off buffering, pexpect default is 2000
  65. # maximum may be limited by platform issues to 4092
  66. # avoid setting searchwindowsize:
  67. # Data before searchwindowsize point is preserved, but not searched.
  68. spawn_maxread: '4092'
  69. device_info: [{'board_id': '861a1c59'}]
  70. flash_cmds_order: ['update', 'ptable', 'partition', 'hyp', 'modem',
  71. 'rpm', 'sbl1', 'sbl2', 'sec', 'tz', 'aboot', 'cdt', 'boot', 'rootfs', 'vendor',
  72. 'system', 'cache', 'userdata']
  73. parameters:
  74. # interfaces or device_ip or device_mac
  75. pass: # sata_uuid_sd_uuid_usb_uuid
  76. adb_serial_number: "861a1c59"
  77. fastboot_serial_number: "861a1c59"
  78. fastboot_options: []
  79. actions:
  80. deploy:
  81. methods:
  82. lxc:
  83. ssh:
  84. options:
  85. - '-o'
  86. - 'Compression=yes'
  87. - '-o'
  88. - 'PasswordAuthentication=no'
  89. - '-o'
  90. - 'LogLevel=FATAL'
  91. host: ''
  92. port: 22
  93. user: root
  94. identity_file: dynamic_vm_keys/lava
  95. fastboot:
  96. connections:
  97. adb:
  98. fastboot:
  99. lxc:
  100. serial:
  101. boot:
  102. connections:
  103. adb:
  104. fastboot:
  105. lxc:
  106. serial:
  107. adb:
  108. methods:
  109. lxc:
  110. ssh:
  111. fastboot: ['reboot']
  112. timeouts:
  113. actions:
  114. apply-overlay-image:
  115. minutes: 2
  116. dd-image:
  117. minutes: 10
  118. download-retry:
  119. minutes: 5
  120. http-download:
  121. minutes: 5
  122. lava-test-shell:
  123. minutes: 3
  124. nfs-deploy:
  125. minutes: 10
  126. power-off:
  127. seconds: 10
  128. bootloader-commands:
  129. minutes: 3
  130. bootloader-interrupt:
  131. seconds: 30
  132. u-boot-interrupt:
  133. seconds: 30
  134. umount-retry:
  135. seconds: 45
  136. auto-login-action:
  137. minutes: 2
  138. bootloader-action:
  139. minutes: 3
  140. uboot-action:
  141. minutes: 3
  142. uboot-retry:
  143. minutes: 3
  144. bootloader-retry:
  145. minutes: 3
  146. boot-qemu-image:
  147. minutes: 2
  148. boot-image-retry:
  149. minutes: 2
  150. flash-uboot-ums:
  151. minutes: 20
  152. connections:
  153. dd-image:
  154. minutes: 10
  155. uboot-retry:
  156. seconds: 30
  157. bootloader-commands:
  158. seconds: 30
  159. auto-login-action:
  160. minutes: 2
  161. bootloader-interrupt:
  162. seconds: 30
  163. u-boot-interrupt:
  164. seconds: 30
  165. lava-test-shell:
  166. seconds: 10
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement