aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/purism/librem13v1/Kconfig
diff options
context:
space:
mode:
authorYouness Alaoui <youness.alaoui@puri.sm>2017-05-26 17:24:11 -0400
committerMartin Roth <martinroth@google.com>2017-06-09 16:58:57 +0200
commit3c0d7d21efd739101658069683b08c5aab320837 (patch)
tree654072cd4f037974b19eaf7605ed909a545791fd /src/mainboard/purism/librem13v1/Kconfig
parentf05d2e17b069a1955ee858e77e8f9abfd62d3ff9 (diff)
purism/librem13v1: Rename librem13 to librem13v1
A simple rename of the directory and the config values and string in Kconfig/Kconfig.name/board_info.txt It will be less confusing for users since the first models are referred to as 'v1' everywhere now. Change-Id: I23fa977717230c2001868741bb684e9633a2c0bb Signed-off-by: Youness Alaoui <youness.alaoui@puri.sm> Reviewed-on: https://review.coreboot.org/19931 Reviewed-by: Matt DeVillier <matt.devillier@gmail.com> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/mainboard/purism/librem13v1/Kconfig')
-rw-r--r--src/mainboard/purism/librem13v1/Kconfig58
1 files changed, 58 insertions, 0 deletions
diff --git a/src/mainboard/purism/librem13v1/Kconfig b/src/mainboard/purism/librem13v1/Kconfig
new file mode 100644
index 0000000000..299877edc0
--- /dev/null
+++ b/src/mainboard/purism/librem13v1/Kconfig
@@ -0,0 +1,58 @@
+if BOARD_PURISM_LIBREM13_V1
+
+config BOARD_SPECIFIC_OPTIONS # dummy
+ def_bool y
+ select SYSTEM_TYPE_LAPTOP
+ select BOARD_ROMSIZE_KB_8192
+ select EC_PURISM_LIBREM
+ select HAVE_ACPI_RESUME
+ select HAVE_ACPI_TABLES
+ select INTEL_INT15
+ select SOC_INTEL_BROADWELL
+
+config DRIVERS_PS2_KEYBOARD
+ def_bool y
+ help
+ Default PS/2 Keyboard to enabled on this board.
+
+config DRIVERS_UART_8250IO
+ def_bool n
+ help
+ This platform does not have any way to get standard
+ serial output so disable it by default.
+
+config HAVE_IFD_BIN
+ bool
+ default n
+
+config HAVE_ME_BIN
+ bool
+ default n
+
+config MAINBOARD_DIR
+ string
+ default purism/librem13v1
+
+config MAINBOARD_PART_NUMBER
+ string
+ default "Librem 13 v1"
+
+config MAX_CPUS
+ int
+ default 8
+
+config NO_POST
+ def_bool y
+ help
+ This platform does not have any way to see POST codes
+ so disable them by default.
+
+config PRE_GRAPHICS_DELAY
+ int
+ default 50
+
+config VGA_BIOS_ID
+ string
+ default "8086,1616"
+
+endif