-
Notifications
You must be signed in to change notification settings - Fork 9
/
config.sh
40 lines (29 loc) · 914 Bytes
/
config.sh
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
# This is the template of `myconfig.sh`, and the later
# will be included in every script.
# PLEASE COPY THIS FILE TO `myconfig.sh`,
# AND CHANGE THE FOLLOWING GLOBAL VARIABLES FOR YOUR CUSTOMIZATION.
#
# The URL prefix of remote repository.
# Use this if you want to visit GitHub via HTTPS
REPO_URL=https://github.com/VincentWei
# Use this one if you can visit GitHub via SSH
# REPO_URL=git@github.com:VincentWei
# Use this one if you are a developer of MiniGUI
# REPO_URL=git4os@gitlab.fmsoft.cn:VincentWei
#
# The branch name; MiniGUI 4.0.x are located in rel-4-0 branch
BRANCH_NAME=rel-4-0
#
# Global configuration options
#GOPTS="--enable-develmode"
GOPTS=
#
# The runtime mode of MiniGUI; can be ths, procs, or sa.
RUNMODE=ths
#
# extra options for configuring MiniGUI core.
# MGOPTS="--with-targetname=external"
MGOPTS=
#
# The jobs number for building source.
NRJOBS=`getconf _NPROCESSORS_ONLN`