xref: /OK3568_Linux_fs/buildroot/package/efibootmgr/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config BR2_PACKAGE_EFIBOOTMGR
2	bool "efibootmgr"
3	depends on BR2_PACKAGE_EFIVAR_ARCH_SUPPORTS # efivar
4	depends on !BR2_STATIC_LIBS # efivar
5	depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_12 # efivar
6	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # efivar
7	depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_MIPS
8	select BR2_PACKAGE_EFIVAR
9	select BR2_PACKAGE_POPT
10	help
11	  A Linux user-space application to modify the Intel Extensible
12	  Firmware Interface (EFI) Boot Manager. This application can
13	  create and destroy boot entries, change the boot order, change
14	  the next running boot option, and more.
15
16	  https://github.com/rhboot/efibootmgr
17
18comment "efibootmgr needs a toolchain w/ dynamic library, headers >= 3.12, gcc >= 4.9"
19	depends on BR2_PACKAGE_EFIVAR_ARCH_SUPPORTS
20	depends on BR2_STATIC_LIBS || \
21		!BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_12 || \
22		!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
23	depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_MIPS
24