Commit 279cc2e4 authored by Anas Nashif's avatar Anas Nashif
Browse files

riscv32: move soc to top-level dir soc/



Move the SoC outside of the architecture tree and put them at the same
level as boards and architectures allowing both SoCs and boards to be
maintained outside the tree.

Signed-off-by: default avatarAnas Nashif <anas.nashif@intel.com>
parent cea0b3a9
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
add_subdirectory(soc)
add_subdirectory(core)

set_property(GLOBAL PROPERTY PROPERTY_OUTPUT_FORMAT elf32-littleriscv)
+2 −2
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@
choice
	prompt "RISCV32 configuration selection"
	depends on RISCV32
	source "arch/riscv32/soc/*/Kconfig.soc"
	source "soc/riscv32/*/Kconfig.soc"
endchoice

menu "RISCV32 Options"
@@ -15,7 +15,7 @@ menu "RISCV32 Options"

# Include these first so that any properties (e.g. defaults) below can be
# overriden (by defining symbols in multiple locations)
source "arch/riscv32/soc/*/Kconfig"
source "soc/riscv32/*/Kconfig"

config ARCH
	string
Loading