-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.cfg
95 lines (87 loc) · 2.25 KB
/
settings.cfg
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
91
92
93
94
95
# SETTINGS FILE
#
# On this file you can configure different aspects of the script.
#
#
# PROFILES
# Make your own profiles modifying the different variables with your preferred values.
# If you want more than just one profile, change the PROFILE variable.
# Then add the new profile below using the following template:
# Profile name
# NAME[n]=default
# Device to build for
# DEVICE[n]=default
# Build type that will appear on the device zip name
# BUILDTYPE[n]=default
# Variant you want to build: eng/userdebug/user
# VARIANT[n]=userdebug
# Number of threads you will use to build the rom
# THREADS[n]=Y
# Clean build? (y/n)
# CLEAN[n]=n
# Do you want to upload the file? (y/n)
# UPLOAD[n]=n
# Number of profiles
PROFILES=2
# Profile name
NAME[0]=default
# Device to build for
DEVICE[0]=default
# Build type that will appear on the device zip name
BUILDTYPE[0]=default
# Variant you want to build: eng/userdebug/user
VARIANT[0]=userdebug
# Number of threads you will use to build the rom
THREADS[0]=X
# Clean build? (y/n)
CLEAN[0]=y
# Do you want to upload the file? (y/n)
UPLOAD[0]=n
# Profile name
NAME[1]=default1
# Device to build for
DEVICE[1]=default1
# Build type that will appear on the device zip name
BUILDTYPE[1]=default1
# Variant you want to build: eng/userdebug/user
VARIANT[1]=userdebug
# Number of threads you will use to build the rom
THREADS[1]=Y
# Clean build? (y/n)
CLEAN[1]=n
# Do you want to upload the file? (y/n)
UPLOAD[1]=n
# NOTES
# Here you can write whatever you need to remember to do.
# The notes will appear on the main menu with different colors
# that will determine the importance of each one.
#
# First define how many notes do you have (NOTES=).
# Then use this template to write each note.
# Level 1: not so important/urgent.
# Level 2: quite important/urgent.
# Level 3: high priority.
# TEXT[n]="default"
# LINK[n]="default"
# DATE[n]="default"
# LEVEL=x
NOTES=1
TEXT[0]="default"
LINK[0]="default"
DATE[0]="default"
LEVEL[0]=1
# UPLOADING
# Here you can configure the uploading available options.
# Template:
# PROTOCOL="ftp" or sftp
# HOST="default"
# USER="admin"
# PASS="1234"
# LOCATION="s/s/" path of the file
# FILE="test.txt" name of the file
PROTOCOL="ftp"
HOST="default"
USER="admin"
PASS="1234"
LOCATION="s/s/"
FILE="test.txt"