1c9c9cdeaSLeah McNutt*** Settings ***
2c9c9cdeaSLeah McNuttDocumentation  This file includes all the varaibles used by obmc_boot_test.robot
3c9c9cdeaSLeah McNutt
4c9c9cdeaSLeah McNutt*** Variables ***
5c9c9cdeaSLeah McNutt# Alias of the master connection to the BMC
6c9c9cdeaSLeah McNutt${master_alias}  master
7c9c9cdeaSLeah McNutt
8*a6723f27SMichael Walsh# The count of the boot we're currently doing - used in the FOR loop.
9*a6723f27SMichael Walsh${BOOT_COUNT}  ${0}
10c9c9cdeaSLeah McNutt
11*a6723f27SMichael Walsh# The status of the last boots that finished
12*a6723f27SMichael Walsh${BOOT_STATUS}  ${EMPTY}
13c9c9cdeaSLeah McNutt
14*a6723f27SMichael Walsh# A list of the last 10 boots that have been performed (see Log Last Ten)
15c9c9cdeaSLeah McNutt@{LAST_TEN}
16c9c9cdeaSLeah McNutt
17*a6723f27SMichael Walsh# A list of keywords of valid boots that can be performed
18c9c9cdeaSLeah McNutt@{VALID_POWER_ON}  BMC Power On
19c9c9cdeaSLeah McNutt@{VALID_POWER_OFF}  BMC Power Off
20c9c9cdeaSLeah McNutt#@{VALID_ACCYCLE}
21c9c9cdeaSLeah McNutt#@{VALID_REBOOT}
22c9c9cdeaSLeah McNutt
23*a6723f27SMichael Walsh# The master list of all boots possible, for reference. (Currently not in use).
24*a6723f27SMichael Walsh@{MASTER_BOOT_LIST}  BMC Power On  BMC Power Off
25c9c9cdeaSLeah McNutt
26*a6723f27SMichael Walsh# The list of available boots - Modifying this will limit what boots can be done.
27c9c9cdeaSLeah McNutt# This list is also used by: Setup Run Table, Log Run Table
28*a6723f27SMichael Walsh@{AVAIL_BOOTS}  BMC Power On  BMC Power Off
29