Kconfig 451 B

12345678910111213141516171819202122232425262728
  1. # SPDX-License-Identifier: GPL-2.0+
  2. #
  3. # Copyright (C) 2019 Intel Corporation <www.intel.com>
  4. if TARGET_SLIMBOOTLOADER
  5. config SYS_BOARD
  6. default "slimbootloader"
  7. config SYS_VENDOR
  8. default "intel"
  9. config SYS_SOC
  10. default "slimbootloader"
  11. config SYS_CONFIG_NAME
  12. default "slimbootloader"
  13. config SYS_TEXT_BASE
  14. default 0x00100000
  15. config BOARD_SPECIFIC_OPTIONS
  16. def_bool y
  17. select SYS_SLIMBOOTLOADER
  18. select USB_STORAGE
  19. select USB_KEYBOARD
  20. endif