Advertisement
Guest User

Untitled

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