mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-14 14:41:57 +00:00
In preparation for introducing a warning. Unquoted string defaults work through a quirk of Kconfig (undefined symbols get their name as their string value), but look confusing. It's done inconsistently now too. Suggested by Kumar Gala. Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
12 lines
207 B
Plaintext
12 lines
207 B
Plaintext
# Kconfig - Arduino Zero board configuration
|
|
#
|
|
# Copyright (c) 2017 Google LLC.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if BOARD_ARDUINO_ZERO
|
|
|
|
config BOARD
|
|
default "arduino_zero"
|
|
|
|
endif # BOARD_ARDUINO_ZERO
|