mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-09 05:45:28 +00:00
Use this short header style in all Kconfig files: # <description> # <copyright> # <license> ... Also change all <description>s from # Kconfig[.extension] - Foo-related options to just # Foo-related options It's clear enough that it's about Kconfig. The <description> cleanup was done with this command, along with some manual cleanup (big letter at the start, etc.) git ls-files '*Kconfig*' | \ xargs sed -i -E '1 s/#\s*Kconfig[\w.-]*\s*-\s*/# /' Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
23 lines
609 B
Plaintext
23 lines
609 B
Plaintext
# Configuration options for riscv SOCs supporting the riscv privileged
|
|
# architecture specification
|
|
|
|
# Copyright (c) 2017 Jean-Paul Etienne <fractalclone@gmail.com>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config SOC_FAMILY_RISCV_PRIVILEGE
|
|
bool
|
|
|
|
config SOC_FAMILY
|
|
string
|
|
default "riscv-privilege"
|
|
depends on SOC_FAMILY_RISCV_PRIVILEGE
|
|
|
|
config RISCV_HAS_PLIC
|
|
bool "Does the SOC provide support for a Platform Level Interrupt Controller"
|
|
depends on SOC_FAMILY_RISCV_PRIVILEGE
|
|
help
|
|
Does the SOC provide support for a Platform Level Interrupt Controller
|
|
|
|
|
|
source "soc/riscv/riscv-privilege/*/Kconfig.soc"
|