-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathls.html
More file actions
111 lines (110 loc) · 3.82 KB
/
ls.html
File metadata and controls
111 lines (110 loc) · 3.82 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="description" content="Stevotdo.github.io : ">
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">
<title>Stevotdo.github.io</title>
</head>
<body>
<!-- HEADER -->
<div id="header_wrap" class="outer">
<header class="inner"> <a id="forkme_banner" href="https://github.com/stevotdo">View
on GitHub</a>
<h1 style="text-align: center;" id="project_title">LiquidSmooth 3.2 Presto</h1>
</header>
</div>
<!-- SIDEBAR -->
<div id="menu" style="width: 200px; float: left; margin-top: 31px;">
<div style="text-align: center; height: 100%; margin-top: -6px;"><br>
<h5>Projects</h5>
<a href="index.html">Home</a><br>
<a href="aokp.html">AOKP Kitkat</a><br>
<a href="ls.html">Liquidsmooth 3.2</a><br>
<br>
</div>
</div>
<!-- MAIN CONTENT -->
<div id="main_content_wrap" class="outer">
<section id="main_content" class="inner">
<h3> <a name="welcome-to-github-pages" class="anchor" href="#welcome-to-github-pages"><span
class="octicon octicon-link"></span></a>Instructions for compiling
LiquidSmooth 3.2 for the Pantech Burst </h3>
<h5>
<p><b>Create the Directories</b></p>
</h5>
<pre><code>$ mkdir -p ~/bin
$ mkdir -p ~/liquid
</code></pre>
<h5>
<p>Download the Repo Binary</p>
</h5>
<pre><code>$ curl http://commondatastorage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
$ chmod a+x ~/bin/repo
</code></pre>
<p><u>You may need to reboot for these changes to take effect</u></p>
<h5>
<p>Enter the Directory</p>
</h5>
<pre><code>$ cd ~/liquid
</code></pre>
<h5>
<p><b>Initialize and Sync the Repository</b></p>
</h5>
<pre><code>$ repo init -u git://github.com/LiquidSmooth/android.git -b kitkat
$ repo sync
</code></pre>
<h5>
<p><b>Create Device Specific Local Manifest</b></p>
</h5>
<pre><code>$ mkdir ~/liquid/.repo/local_manifests
$ wget --no-check-certificate https://raw.githubusercontent.com/stevotdo/stevotdo.github.io/master/LS_presto.xml
$ cp LS_presto.xml ~/liquid/.repo/local_manifests
</code></pre>
<h5>
<p><b>Sync the Changes</b></p>
</h5>
<pre><code>$ repo sync
</code></pre>
<p><b>Finally pull in the Device Specific Make File</b></p>
</h5>
<pre><code>$ wget --no-check-certificate https://raw.githubusercontent.com/stevotdo/stevotdo.github.io/master/liquid.mk
$ cp liquid.mk ~/liquid/device/pantech/presto
</code></pre>
<h5>
<p>Build LiquidSmooth with the following command</p>
</h5>
<pre><code>./build-liquid.sh {options} {device}
</code></pre>
<p>Use the following as options...</p>
<pre><code>Options:
-c# Cleanin options before build:
c1 - make clean
c2 - make dirty
c3 - make magic
c4 - make kernelclean
-d Use dex optimizations
-i Static Initlogo
-j# Set jobs
-s Sync before build
-p Build using pipe
-o# Select GCC O Level
Valid O Levels are
1 (Os) or 3 (O3)
-v Verbose build output
</code></pre>
<h5>
<p>Example:</p>
</h5>
<pre><code>./build-liquid.sh -c3 -p -o3 -j18 presto
</code></pre> </section>
</div>
<!-- FOOTER -->
<div id="footer_wrap" class="outer">
<footer class="inner">
<p>Published with <a href="http://pages.github.com">GitHub Pages</a></p>
</footer>
</div>
</body>
</html>