aboutsummaryrefslogtreecommitdiff
path: root/lava_dispatcher/actions/deploy/strategies.py
blob: 9a9c073d5ef16cacdc0e968e64fd0879dfe82061 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Copyright (C) 2014 Linaro Limited
#
# Author: Neil Williams <neil.williams@linaro.org>
#
# This file is part of LAVA Dispatcher.
#
# LAVA Dispatcher is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# LAVA Dispatcher is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along
# with this program; if not, see <http://www.gnu.org/licenses>.

# List just the subclasses supported for this base strategy
# imported by the parser to populate the list of subclasses.

# pylint: disable=unused-import

from lava_dispatcher.actions.deploy.docker import Docker
from lava_dispatcher.actions.deploy.image import DeployImages
from lava_dispatcher.actions.deploy.iso import DeployIso
from lava_dispatcher.actions.deploy.fastboot import Fastboot
from lava_dispatcher.actions.deploy.flasher import Flasher
from lava_dispatcher.actions.deploy.lxc import Lxc
from lava_dispatcher.actions.deploy.overlay import Overlay
from lava_dispatcher.actions.deploy.nbd import Nbd
from lava_dispatcher.actions.deploy.nfs import Nfs
from lava_dispatcher.actions.deploy.removable import MassStorage
from lava_dispatcher.actions.deploy.mps import Mps
from lava_dispatcher.actions.deploy.ssh import Ssh
from lava_dispatcher.actions.deploy.tftp import Tftp
from lava_dispatcher.actions.deploy.uboot_ums import UBootUMS
from lava_dispatcher.actions.deploy.vemsd import VExpressMsd