projects
/
platform
/
kernel
/
u-boot.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
sandbox: eth: Add a bridge to a real network for sandbox
[platform/kernel/u-boot.git]
/
arch
/
sandbox
/
Kconfig
1
menu "Sandbox architecture"
2
depends on SANDBOX
3
4
config SYS_ARCH
5
default "sandbox"
6
7
config SYS_BOARD
8
default "sandbox"
9
10
config SYS_CONFIG_NAME
11
default "sandbox"
12
13
config DM
14
default y
15
16
config DM_GPIO
17
default y
18
19
config DM_SERIAL
20
default y
21
22
config DM_CROS_EC
23
default y
24
25
config DM_SPI
26
default y
27
28
config DM_SPI_FLASH
29
default y
30
31
config DM_I2C
32
default y
33
34
config DM_TEST
35
default y
36
37
config PCI
38
bool "PCI support"
39
help
40
Enable support for PCI (Peripheral Interconnect Bus), a type of bus
41
used on some devices to allow the CPU to communicate with its
42
peripherals.
43
44
config NET
45
default y
46
47
config NETDEVICES
48
default y
49
50
config DM_ETH
51
default y
52
53
config ETH_SANDBOX_RAW
54
default y
55
56
endmenu