Config.in 954 B

1234567891011121314151617181920212223
  1. config 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. https://github.com/rhboot/efibootmgr
  16. comment "efibootmgr needs a glibc or uClibc toolchain w/ dynamic library, headers >= 3.12, gcc >= 4.9"
  17. depends on BR2_PACKAGE_EFIVAR_ARCH_SUPPORTS
  18. depends on BR2_STATIC_LIBS || \
  19. !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_12 || \
  20. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
  21. depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_MIPS