mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-02-12 14:52:14 +00:00
![Changhwan Youn](/assets/img/avatar_default.png)
This patch adds the Kconfig and Makefile for the new S5PV310 SoC. It also updates arch/arm Kconfig, Makefile and arch/arm/mm/Kconfig to include support for the new S5PV310. Signed-off-by: Changhwan Youn <chaos.youn@samsung.com> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
27 lines
434 B
Plaintext
27 lines
434 B
Plaintext
# arch/arm/mach-s5pv310/Kconfig
|
|
#
|
|
# Copyright (c) 2010 Samsung Electronics Co., Ltd.
|
|
# http://www.samsung.com/
|
|
#
|
|
# Licensed under GPLv2
|
|
|
|
# Configuration options for the S5PV310
|
|
|
|
if ARCH_S5PV310
|
|
|
|
config CPU_S5PV310
|
|
bool
|
|
select PLAT_S5P
|
|
help
|
|
Enable S5PV310 CPU support
|
|
|
|
# machine support
|
|
|
|
config MACH_SMDKV310
|
|
bool "SMDKV310"
|
|
select CPU_S5PV310
|
|
select ARCH_SPARSEMEM_ENABLE
|
|
help
|
|
Machine support for Samsung SMDKV310
|
|
endif
|