summaryrefslogtreecommitdiff
path: root/toolchain
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2017-02-09 05:00:23 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2017-02-09 05:00:40 +0100
commit13248bfa1d2097f55ac5f4321d805870ba88bf19 (patch)
tree20f427fb5ec40a633a9dec6924dd3271db53189c /toolchain
parent571d99e74d42fac830069c2ca2fbd5f505613dc6 (diff)
add basic support for edosk2674
Diffstat (limited to 'toolchain')
-rw-r--r--toolchain/uclibc-ng/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/toolchain/uclibc-ng/Makefile b/toolchain/uclibc-ng/Makefile
index caf5e4e32..865467152 100644
--- a/toolchain/uclibc-ng/Makefile
+++ b/toolchain/uclibc-ng/Makefile
@@ -199,6 +199,18 @@ ifeq ($(ADK_TARGET_CPU_CRIS_CRISV10),y)
endif
endif
+# h8300
+ifeq ($(ADK_TARGET_ARCH_H8300),y)
+ifeq ($(ADK_TARGET_CPU_H8300H),y)
+ $(SED) 's/.*\(CONFIG_H8S\).*/# \1 is not set/' ${WRKBUILD}/.config
+ $(SED) 's/.*\(CONFIG_H8300H\).*/\1=y/' ${WRKBUILD}/.config
+endif
+ifeq ($(ADK_TARGET_CPU_H8S),y)
+ $(SED) 's/.*\(CONFIG_H8S\).*/\1=y/' ${WRKBUILD}/.config
+ $(SED) 's/.*\(CONFIG_H8300H\).*/# \1 is not set/' ${WRKBUILD}/.config
+endif
+endif
+
# sh
ifeq ($(ADK_TARGET_ARCH_SH),y)
ifeq ($(ADK_TARGET_CPU_SH_SH4A),y)