summaryrefslogtreecommitdiff
path: root/tools/root.make
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2020-10-03 18:17:11 -0400
committerSolomon Peachy <pizza@shaftnet.org>2020-10-09 12:41:18 -0400
commitaabc8aca47e60cf745a34af28c50679fcb967910 (patch)
treecfe17f546aae9785fb13482f39527e2da0597ccb /tools/root.make
parent4231c2c83f2b5331e3e38b10a308ee3752315f9c (diff)
downloadrockbox-aabc8aca47e60cf745a34af28c50679fcb967910.tar.gz
rockbox-aabc8aca47e60cf745a34af28c50679fcb967910.zip
New port: FiiO M3K
Most credit goes to: Roman Skylarov Additional integration and refactoring by myself. *** COMPLETELY UNTESTED *** Change-Id: Ia64c36d92e0214c6b15f7a868df286f8113ea27b
Diffstat (limited to 'tools/root.make')
-rw-r--r--tools/root.make6
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/root.make b/tools/root.make
index b588e0f8b1..fd42f9b6b2 100644
--- a/tools/root.make
+++ b/tools/root.make
@@ -104,6 +104,8 @@ ifneq (,$(findstring bootloader,$(APPSDIR)))
104 include $(ROOTDIR)/firmware/target/hosted/agptek/rocker.make 104 include $(ROOTDIR)/firmware/target/hosted/agptek/rocker.make
105 else ifneq (,$(findstring xduoo,$(APP_TYPE))) 105 else ifneq (,$(findstring xduoo,$(APP_TYPE)))
106 include $(ROOTDIR)/firmware/target/hosted/xduoo/xduoo.make 106 include $(ROOTDIR)/firmware/target/hosted/xduoo/xduoo.make
107 else ifneq (,$(findstring fiio,$(APP_TYPE)))
108 include $(ROOTDIR)/firmware/target/hosted/fiio/fiio.make
107 else 109 else
108 include $(APPSDIR)/bootloader.make 110 include $(APPSDIR)/bootloader.make
109 endif 111 endif
@@ -150,6 +152,10 @@ else # core
150 include $(ROOTDIR)/firmware/target/hosted/xduoo/xduoo.make 152 include $(ROOTDIR)/firmware/target/hosted/xduoo/xduoo.make
151 endif 153 endif
152 154
155 ifneq (,$(findstring fiio,$(APP_TYPE)))
156 include $(ROOTDIR)/firmware/target/hosted/fiio/fiio.make
157 endif
158
153 ifneq (,$(findstring android_ndk, $(APP_TYPE))) 159 ifneq (,$(findstring android_ndk, $(APP_TYPE)))
154 include $(ROOTDIR)/firmware/target/hosted/ibasso/android_ndk.make 160 include $(ROOTDIR)/firmware/target/hosted/ibasso/android_ndk.make
155 else 161 else