Kconfig (6262f661ff5d7d6a2613b95d0b7820c60b46b0b5) | Kconfig (d7071743db31b4f6898b1c742e4b451bb4bc4b02) |
---|---|
1# SPDX-License-Identifier: GPL-2.0-only 2# 3# For a description of the syntax of this configuration file, 4# see Documentation/kbuild/kconfig-language.rst. 5# 6 7config 64BIT 8 bool --- 387 unchanged lines hidden (view full) --- 396 help 397 Always use the built-in command line, even if we get one during 398 boot. This is useful in case you need to override the provided 399 command line on systems where you don't have or want control 400 over it. 401 402endchoice 403 | 1# SPDX-License-Identifier: GPL-2.0-only 2# 3# For a description of the syntax of this configuration file, 4# see Documentation/kbuild/kconfig-language.rst. 5# 6 7config 64BIT 8 bool --- 387 unchanged lines hidden (view full) --- 396 help 397 Always use the built-in command line, even if we get one during 398 boot. This is useful in case you need to override the provided 399 command line on systems where you don't have or want control 400 over it. 401 402endchoice 403 |
404config EFI_STUB 405 bool 406 407config EFI 408 bool "UEFI runtime support" 409 depends on OF 410 select LIBFDT 411 select UCS2_STRING 412 select EFI_PARAMS_FROM_FDT 413 select EFI_STUB 414 select EFI_GENERIC_STUB 415 select RISCV_ISA_C 416 default y 417 help 418 This option provides support for runtime services provided 419 by UEFI firmware (such as non-volatile variables, realtime 420 clock, and platform reset). A UEFI stub is also provided to 421 allow the kernel to be booted as an EFI application. This 422 is only useful on systems that have UEFI firmware. 423 |
|
404endmenu 405 406config BUILTIN_DTB 407 def_bool n 408 depends on RISCV_M_MODE 409 depends on OF 410 411menu "Power management options" 412 413source "kernel/power/Kconfig" 414 415endmenu | 424endmenu 425 426config BUILTIN_DTB 427 def_bool n 428 depends on RISCV_M_MODE 429 depends on OF 430 431menu "Power management options" 432 433source "kernel/power/Kconfig" 434 435endmenu |
436 437source "drivers/firmware/Kconfig" |
|