blob: 01704e030d51dcbf285b0102b2d484ed33d43d22 (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>postmarketOS</title>
<meta name="description" content="Aiming for a 10 year life-cycle for smartphones">
<meta name="keywords" content="postmarketOS">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="all">
<link rel="canonical" href="https://postmarketos.org/wiki/Samsung-N7100-(Galaxy-Note-II-GSM)/">
<link href="/pmosweb/static/css/tachyons.min.css" rel="stylesheet">
<link href="/pmosweb/static/css/main.css" rel="stylesheet">
</head>
<body>
<div class="mw7 center">
<div class="cf ph2-ns">
<a class="title" href="/pmosweb/">
<h1 class="f2 lh-title">
<img src="/pmosweb/static/img/recycle.png"></img>
<span>postmarketOS</span>
</h1>
</a>
<div class="menu">
<ul>
<li><a href="/pmosweb/">Home</a></li>
<li><a href="/pmosweb/wiki/">Wiki</a></li>
<li><a href="/pmosweb/blog/">Blog</a></li>
</ul>
</div>
<h1>Samsung N7100 (Galaxy Note II GSM)</h1>
<h2>Basic info</h2>
<p>Device: Samsung Galaxy Note II (N7100 GSM)</p>
<p>ARM Cortex A9 Samsung Exynos 4 Quad 4412 (32bit), quad core 1.6GHz; 2GB RAM, 16GB storage.</p>
<ul>
<li><a href="http://www.gsmarena.com/samsung_galaxy_note_ii_n7100-4854.php">more specs</a></li>
<li><a href="https://github.com/bigbiff/android_kernel_samsung_smdk4412">Unofficial TWRP kernel repo</a></li>
</ul>
<h3>What works</h3>
<ul>
<li>Compiling the kernel</li>
<li>Flashing with Heimdall</li>
<li>Booting initramfs</li>
<li>SSH</li>
<li>Weston</li>
<li>Touch screen fully calibrated</li>
</ul>
<h3>What does not work</h3>
<ul>
<li>N/A</li>
</ul>
<h3>Not tested</h3>
<ul>
<li>Sound</li>
<li>WiFi (needs kernel modules compiling first)</li>
</ul>
<h3>How to enter flash mode</h3>
<p>Press and hold "volume down + home + power" simultaneously. Then click volume up to confirm.</p>
<h3>Installing system</h3>
<p>First build the device package:</p>
<pre class="codehilite"><code class="language-shell">./pmbootstrap.py build device-samsung-n7100</code></pre>
<p>Then you need to configure the kernel before building with <code>menuconfig</code> like so:</p>
<pre class="codehilite"><code class="language-shell">./pmbootstrap.py menuconfig linux-samsung-n7100</code></pre>
<p>You can hold down the enter key while it asks you the y/n questions until you get to the menu, then you want to enable the <code>DEVTMPFS</code> kconfig flag located in <code>Device Drivers ---> Generic Driver Options</code>.</p>
<p>Now you want to compile the kernel itself:</p>
<pre class="codehilite"><code class="language-shell">./pmbootstrap.py build linux-samsung-n7100 --arch=armhf</code></pre>
<p>Once you've successfully compiled the kernel you can install the OS to an SD card or your system partition. I've only tried an SD card:</p>
<pre class="codehilite"><code class="language-shell">./pmbootstrap.py install --sdcard=/dev/sdb</code></pre>
<p>You will need a 1GB SD card in order for this to work, also keep in mind that this will format the sd card.</p>
<p>Next you want to put your phone in download mode by holding <code>power + vol down + home</code> all together until you enter download mode, press volume up again to continue past the warning.</p>
<p>Now you can flash the boot image:</p>
<pre class="codehilite"><code class="language-shell">./pmbootstrap.py flasher flash_kernel</code></pre>
<p>We're using <code>flash_kernel</code> because the N7100 packages its kernel and initfs file into one boot image, where as some other phones have separate partitions for each <strong>unlike</strong> the N7100.</p>
<p>If everything checks out OK, your N7100 should reboot and you should see the Samsung logo. Dont worry if the screen is flashing on and off and its taking a while, after a minute or 2 it should show up the pmOS splash!</p>
</div>
</div>
</body>
</html>
|