summaryrefslogtreecommitdiff
path: root/tools/root.make
diff options
context:
space:
mode:
authorMarcin Bukat <marcin.bukat@gmail.com>2018-11-05 13:01:55 +0100
committerSolomon Peachy <pizza@shaftnet.org>2020-04-06 18:15:41 +0200
commit180cef835bf40d0081895773aaa637ac926bb0ac (patch)
tree48c380d76c0ea40931cb5e863b40fc5dfa1ecba4 /tools/root.make
parentced3a20aacf26642ccc3ffd136f64247c67e5769 (diff)
downloadrockbox-180cef835bf40d0081895773aaa637ac926bb0ac.tar.gz
rockbox-180cef835bf40d0081895773aaa637ac926bb0ac.zip
xDuoo X3II and X20 port
Provided by Roman Stolyarov Integration, Refactoring, and Upstreaming by Solomon Peachy X3II confirmed working by forum tester, X20 is nearly identical. This includes bootloader, main firmware, and the flash image patcher. Eventual Todo: * Further refactor AGPTek Rocker & xduoo hiby bootloaders * Further refactor AGPTek Rocker & xduoo hosted platform code Change-Id: I34a674051d368efcc75d1d18c725971fe46c3eee
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 72039335da..412dbbc97b 100644
--- a/tools/root.make
+++ b/tools/root.make
@@ -105,6 +105,8 @@ ifneq (,$(findstring bootloader,$(APPSDIR)))
105 include $(ROOTDIR)/firmware/target/hosted/sonynwz/sonynwz.make 105 include $(ROOTDIR)/firmware/target/hosted/sonynwz/sonynwz.make
106 else ifneq (,$(findstring rocker,$(APP_TYPE))) 106 else ifneq (,$(findstring rocker,$(APP_TYPE)))
107 include $(ROOTDIR)/firmware/target/hosted/agptek/rocker.make 107 include $(ROOTDIR)/firmware/target/hosted/agptek/rocker.make
108 else ifneq (,$(findstring xduoo,$(APP_TYPE)))
109 include $(ROOTDIR)/firmware/target/hosted/xduoo/xduoo.make
108 else 110 else
109 include $(APPSDIR)/bootloader.make 111 include $(APPSDIR)/bootloader.make
110 endif 112 endif
@@ -149,6 +151,10 @@ else # core
149 include $(ROOTDIR)/firmware/target/hosted/agptek/rocker.make 151 include $(ROOTDIR)/firmware/target/hosted/agptek/rocker.make
150 endif 152 endif
151 153
154 ifneq (,$(findstring xduoo,$(APP_TYPE)))
155 include $(ROOTDIR)/firmware/target/hosted/xduoo/xduoo.make
156 endif
157
152 ifneq (,$(findstring android_ndk, $(APP_TYPE))) 158 ifneq (,$(findstring android_ndk, $(APP_TYPE)))
153 include $(ROOTDIR)/firmware/target/hosted/ibasso/android_ndk.make 159 include $(ROOTDIR)/firmware/target/hosted/ibasso/android_ndk.make
154 else 160 else