~funderscore blog cgit wiki get in touch
aboutsummaryrefslogtreecommitdiff
blob: 015ed51dc89c6e753595f0a13ecd33374a5163eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# SPDX-License-Identifier: GPL-2.0+
#
# Copyright (C) 2019 Intel Corporation <www.intel.com>

if TARGET_SLIMBOOTLOADER

config SYS_BOARD
	default "slimbootloader"

config SYS_VENDOR
	default "intel"

config SYS_SOC
	default "slimbootloader"

config SYS_CONFIG_NAME
	default "slimbootloader"

config TEXT_BASE
	default 0x00100000

config BOARD_SPECIFIC_OPTIONS
	def_bool y
	select SYS_SLIMBOOTLOADER
	select USB_STORAGE
	select USB_KEYBOARD

endif