]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/google/Kconfig
x86: Kconfig: Divide the target selection to vendor/model
[karo-tx-uboot.git] / board / google / Kconfig
1 #
2 # Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
3 #
4 # SPDX-License-Identifier:      GPL-2.0+
5 #
6
7 if VENDOR_GOOGLE
8
9 choice
10         prompt "Mainboard model"
11
12 config TARGET_CHROMEBOOK_LINK
13         bool "Chromebook link"
14         help
15           This is the Chromebook Pixel released in 2013. It uses an Intel
16           i5 Ivybridge which is a die-shrink of Sandybridge, with 4GB of
17           SDRAM. It has a Panther Point platform controller hub, PCIe
18           WiFi and Bluetooth. It also includes a 720p webcam, USB SD
19           reader, microphone and speakers, display port and 32GB SATA
20           solid state drive. There is a Chrome OS EC connected on LPC,
21           and it provides a 2560x1700 high resolution touch-enabled LCD
22           display.
23
24 config TARGET_CHROMEBOX_PANTHER
25         bool "Chromebox panther (not available)"
26         select n
27         help
28           Note: At present this must be used with coreboot. See README.x86
29           for instructions.
30
31           This is the Asus Chromebox CN60 released in 2014. It uses an Intel
32           Haswell Celeron 2955U Dual Core CPU with 2GB of SDRAM. It has a
33           Lynx Point platform controller hub, PCIe WiFi and Bluetooth. It also
34           includes a USB SD reader, four USB3 ports, display port and HDMI
35           video output and a 16GB SATA solid state drive. There is no Chrome
36           OS EC on this model.
37
38 endchoice
39
40 source "board/google/chromebook_link/Kconfig"
41 source "board/google/chromebox_panther/Kconfig"
42
43 endif