15.05 Update

- Make for different platforms (arm, arm64, x86)
- Add arm64 support
- Update GNow
- Fix FaceUnlock FC
This commit is contained in:
Joey Rizzoli
2015-04-20 20:09:24 +02:00
committed by jrizzoli
parent ee8b7e1415
commit f509e98dcb
123 changed files with 302 additions and 27 deletions

View File

@@ -10,5 +10,13 @@ distclean :
@echo "$(tput setaf 2)Output removed! Ready for a clean build$(tput sgr 0)"
gapps :
@echo "Compiling GApps..."
@bash $(BUILD_GAPPS) 2>&1 | tee $(LOG_BUILD)
@echo "Compiling GApps for arm..."
@bash $(BUILD_GAPPS) arm 2>&1 | tee $(LOG_BUILD)
gapps_arm64 :
@echo "Compiling GApps for arm64..."
@bash $(BUILD_GAPPS) arm64 2>&1 | tee $(LOG_BUILD)
gapps_x86 :
@echo "Compiling GApps for arm64..."
@bash $(BUILD_GAPPS) x86 2>&1 | tee $(LOG_BUILD)