summaryrefslogtreecommitdiffstats
path: root/arch/efi/Kconfig
blob: 26fecaa392d7b6af62035730d10f0736b1ae1ddc (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
config ARCH_EFI
	bool
	default y
	select HAS_DEBUG_LL
	select HAS_KALLSYMS
	select HAVE_DEFAULT_ENVIRONMENT_NEW
	select EFI_GUID
	select EFI_DEVICEPATH
	select PRINTF_UUID
	select GENERIC_FIND_NEXT_BIT

config ARCH_TEXT_BASE
	hex
	default 0x0

menu "EFI specific settings"

config 64BIT
	def_bool y
	help
	  Say yes to build a 64-bit binary - formerly known as x86_64
	  Say no to build a 32-bit binary - formerly known as i386.

	  32-bit support currently does not compile and is not tested
	  due to the lack of hardware.

config X86_32
	def_bool y
	depends on !64BIT

config X86_64
	def_bool y
	depends on 64BIT

config ARCH_EFI_REGISTER_COM1
	bool "Register first serial port"
	help
	  Say yes here to register the first serial port on ioport 0x3f8.
	  This is useful to control barebox over a serial port if the board
	  has one. Enabling this option may not work on boards which do not
	  have a serial port. Also enable DRIVER_SERIAL_NS16550 to enable
	  the NS16550 driver.

endmenu

source common/Kconfig
source commands/Kconfig
source net/Kconfig
source drivers/Kconfig
source fs/Kconfig
source lib/Kconfig
source crypto/Kconfig