mirror of
https://github.com/apache/nuttx.git
synced 2026-08-27 12:20:46 +00:00
Squashed commit of the following:
Author: Gregory Nutt <gnutt@nuttx.org>
Update README.
configs/or1k: Should include header file file where exported functin is prototyped.
arch/or1k/src: Eliminate some warnings.
arch/or1k: Complete review
Fix some recently introduced build issues
configs/or1k/nsh: Convert to proper, compressed defconfig file.
Another README update.
Update README
configs/or1k: Updates from initial review.
Update README.
Author: Matt Thompson <matt@extent3d.com>
or1k: Added configurable CPU frequency to Kconfig. Calculate tick timer match period based on configured frequency.
OpenRISC: Enable instruction and data cache
OpenRISC: Initial support.
24 lines
413 B
Text
24 lines
413 B
Text
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
if ARCH_OR1K
|
|
comment "OpenRISC Options"
|
|
|
|
choice
|
|
prompt "OpenRISC chip selection"
|
|
default ARCH_CHIP_MOR1KX
|
|
|
|
config ARCH_CHIP_MOR1KX
|
|
bool "mor1kx"
|
|
|
|
endchoice
|
|
|
|
config ARCH_CHIP
|
|
string
|
|
default "mor1kx" if ARCH_CHIP_MOR1KX
|
|
|
|
source arch/or1k/src/mor1kx/Kconfig
|
|
|
|
endif # ARCH_OR1K
|