-
Notifications
You must be signed in to change notification settings - Fork 3
/
makefile
90 lines (74 loc) · 3.58 KB
/
makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#
# Makefile for gnote
#
# The original zip file, MUST be specified by each product
local-zip-file := stockrom.zip
# The output zip file of MIUI rom, the default is porting_miui.zip if not specified
local-out-zip-file := MIUI_gnote.zip
# the location for local-ota to save target-file
local-previous-target-dir := ~/workspace/ota_base/gnote
# All apps from original ZIP, but has smali files chanded
#local-modified-apps := GalaxyNoteSettings Gallery2 OriginalSettings
local-modified-apps :=
local-modified-jars :=
# All apks from MIUI
local-miui-removed-apps := MediaProvider Stk
local-miui-modified-apps := MiuiHome Settings Phone Mms ThemeManager MiuiSystemUI Music Backup Browser Contacts DeskClock DownloadProviderUi MiuiCompass Notes PackageInstaller Provision SoundRecorder Transfer XiaomiServiceFramework
# Config density for co-developers to use the aaps with HDPI or XHDPI resource,
# Default configrations are HDPI for ics branch and XHDPI for jellybean branch
local-density := XHDPI
include phoneapps.mk
# To include the local targets before and after zip the final ZIP file,
# and the local-targets should:
# (1) be defined after including porting.mk if using any global variable(see porting.mk)
# (2) the name should be leaded with local- to prevent any conflict with global targets
local-pre-zip := local-pre-zip-misc
local-after-zip:= local-put-to-phone
# The local targets after the zip file is generated, could include 'zip2sd' to
# deliver the zip file to phone, or to customize other actions
include $(PORT_BUILD)/porting.mk
# To define any local-target
updater := $(ZIP_DIR)/META-INF/com/google/android/updater-script
pre_install_data_packages := $(TMP_DIR)/pre_install_apk_pkgname.txt
local-pre-zip-misc:
@echo Update boot image
cp other/boot.img $(ZIP_DIR)/boot.img
@echo Add Stock APK
cp other/GalaxyNoteSettings.apk $(ZIP_DIR)/system/app/GalaxyNoteSettings.apk
cp other/Gallery2.apk $(ZIP_DIR)/system/app/Gallery2.apk
cp other/OriginalSettings.apk $(ZIP_DIR)/system/app/OriginalSettings.apk
# @echo Add Cusettings
# cp other/Cusettings.apk $(ZIP_DIR)/system/app/Cusettings.apk
# @echo Add USB_switcher
# cp other/USB_switcher.apk $(ZIP_DIR)/system/app/USB_switcher.apk
# @echo add thor kernel files
# cp -rf other/system_etc/* $(ZIP_DIR)/system/etc/
# cp -rf other/system_lib/* $(ZIP_DIR)/system/lib/
# @echo Add OriginalSettings
# cp other/OriginalSettings.apk $(ZIP_DIR)/system/app/OriginalSettings.apk
# cp other/platform.xml $(ZIP_DIR)/system/etc/permissions/platform.xml
# cp other/javax.btobex.jar $(ZIP_DIR)/system/framework/javax.btobex.jar
cp other/Generic.kl $(ZIP_DIR)/system/usr/keylayout/
cp other/spn-conf.xml $(ZIP_DIR)/system/etc/spn-conf.xml
cp other/build.prop $(ZIP_DIR)/system/build.prop
rm -rf $(pre_install_data_packages)
for apk in $(ZIP_DIR)/data/media/preinstall_apps/*.apk; do\
$(AAPT) d --values resources $$apk | grep 'id=127 packageCount' | sed -e "s/^.*name=//" >> $(pre_install_data_packages);\
done
more $(pre_install_data_packages) | wc -l > $(ZIP_DIR)/system/etc/enforcecopyinglibpackages.txt
more $(pre_install_data_packages) >> $(ZIP_DIR)/system/etc/enforcecopyinglibpackages.txt
out/framework2.jar : out/framework.jar
%.phone : out/%.jar
@echo push -- to --- phone
adb remount
adb push $< /system/framework
adb shell chmod 644 /system/framework/$*.jar
#adb shell stop
#adb shell start
#adb reboot
%.sign-plat : out/%
java -jar $(TOOL_DIR)/signapk.jar $(PORT_ROOT)/build/security/platform.x509.pem $(PORT_ROOT)/build/security/platform.pk8 $< $<.signed
@echo push -- to --- phone
adb remount
adb push $<.signed /system/app/$*
adb shell chmod 644 /system/app/$*