forked from maxfierke/acidify
-
Notifications
You must be signed in to change notification settings - Fork 5
/
config.sample
18 lines (16 loc) · 934 Bytes
/
config.sample
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
## Acidify Config
# Repo Configuration
DLJOBS=${DLJOBS:-4} # number of concurrent downloads
# Device Configuration
MANUFACTURER=${MANUFACTURER:-samsung} # device manufacturer
DEVICE=${DEVICE:-galaxys4gmtd} # device name used by the android build system
MODEL=${MODEL:-sgh-t959v} # Used by TeamAcid, probably not needed elsewhere.
# Local Manifest Configuration (these can be blank if you're not using local manifests)
LM_AOKP=${LM_AOKP:-"http://teamacid.github.com/manifests/$MODEL/AOKP/local_manifest.xml"}
LM_CM7=${LM_CM7:-"http://teamacid.github.com/manifests/$MODEL/CM7/local_manifest.xml"}
LM_CM9=${LM_CM9:-"http://teamacid.github.com/manifests/$MODEL/CM9/local_manifest.xml"}
# User Configuration
GOOUSER=${GOOUSER:-TeamAcid}
# Build System Configuration (no trailing slash)
ANDROID_ENV_DIR=${ANDROID_ENV_DIR:-/path/to/android/build/directory}
## END CONFIGURATION