blob: 11e6cb37bd8520682c9354b644da4f89f4843d7c [file] [log] [blame]
Park, Aiden9835d6d2019-08-03 08:31:11 +00001# SPDX-License-Identifier: GPL-2.0+
2#
3# Copyright (C) 2019 Intel Corporation <www.intel.com>
4
5if TARGET_SLIMBOOTLOADER
6
7config SYS_BOARD
8 default "slimbootloader"
9
10config SYS_VENDOR
11 default "intel"
12
13config SYS_SOC
14 default "slimbootloader"
15
Simon Glass72cc5382022-10-20 18:22:39 -060016config TEXT_BASE
Park, Aiden9835d6d2019-08-03 08:31:11 +000017 default 0x00100000
18
19config BOARD_SPECIFIC_OPTIONS
20 def_bool y
21 select SYS_SLIMBOOTLOADER
22 select USB_STORAGE
23 select USB_KEYBOARD
24
25endif