summaryrefslogtreecommitdiff
path: root/zephyr/test/skyrim/Kconfig
blob: 41685834be6c7cfae85fc2db4032f2b85b9c245f (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Copyright 2023 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

choice TEST_BOARD_VARIANT
	prompt "Select board variant for tests"
	help
	  Board variant to use for tests

	config TEST_BOARD_BASEBOARD
		bool "Enable baseboard-specific tests"
		help
		Enable baseboard tests.

	config TEST_BOARD_CRYSTALDRIFT
		bool "Enable crystaldrift-specific tests"
		help
		Enable tests for crystaldrift variant.

	config TEST_BOARD_FROSTFLOW
		bool "Enable frostflow-specific tests"
		help
		Enable tests for frostflow variant.

	config TEST_BOARD_MARKARTH
		bool "Enable markarth-specific tests"
		help
		Enable tests for markarth variant.

	config TEST_BOARD_SKYRIM
		bool "Enable skyrim-specific tests"
		help
		Enable tests for skyrim variant.

	config TEST_BOARD_WINTERHOLD
		bool "Enable winterhold-specific tests"
		help
		Enable tests for winterhold variant.

endchoice # TEST_BOARD_VARIANT

config TEST_BOARD_NAME
	string "Board name"
	default "baseboard" if TEST_BOARD_BASEBOARD
	default "crystaldrift" if TEST_BOARD_CRYSTALDRIFT
	default "frostflow" if TEST_BOARD_FROSTFLOW
	default "markarth" if TEST_BOARD_MARKARTH
	default "skyrim" if TEST_BOARD_SKYRIM
	default "winterhold" if TEST_BOARD_WINTERHOLD

config TEST_BOARD_USB_PD_POLICY
	bool "Enable USB PD policy specific tests"
	select TEST_ENABLE_USB_PD_HOST_CMD
	default n

config TEST_ENABLE_USB_PD_HOST_CMD
	bool "Fake config to enable this feature"
	default n

config USB_PD_DISCHARGE
	bool "Fake config to enable this feature"
	default n

source "Kconfig.zephyr"