xref: /openbmc/u-boot/arch/sandbox/Kconfig (revision a5dec5a5)
1menu "Sandbox architecture"
2	depends on SANDBOX
3
4config SYS_ARCH
5	default "sandbox"
6
7config SYS_BOARD
8	default "sandbox"
9
10config SYS_CONFIG_NAME
11	default "sandbox"
12
13config DM
14	default y
15
16config DM_GPIO
17	default y
18
19config DM_SERIAL
20	default y
21
22config DM_SPI
23	default y
24
25config DM_SPI_FLASH
26	default y
27
28config DM_I2C
29	default y
30
31config DM_TEST
32	default y
33
34config PCI
35	bool "PCI support"
36	help
37	  Enable support for PCI (Peripheral Interconnect Bus), a type of bus
38	  used on some devices to allow the CPU to communicate with its
39	  peripherals.
40
41config NET
42	default y
43
44config NETDEVICES
45	default y
46
47config DM_ETH
48	default y
49
50config ETH_SANDBOX_RAW
51	default y
52
53endmenu
54