summaryrefslogtreecommitdiffstats
path: root/docs/index.html
blob: 43d90d8294ad1a5a6d357bb414f52fa7cd105c95 (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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">

	<style type="text/css">
		body {
			background:#fff;
			color:#000;
			font-family:sans-serif;
			font-size:1em;
		}
		p.lenovobios {
			font-weight:bold; color:#f00; font-style:italic; font-size:1.2em;
		}
		p.lenovobios:hover {
			color: #000;
		}
		div.important {
			background-color:#ccc;
		}
	</style>

	<title>Libreboot documentation: Main</title>
</head>

<body>
	<header>
		<h1 id="pagetop">Libreboot Documentation</h1>
		<aside>This is for the release, as per <a href="RELEASE.html">RELEASE.html</a>.</aside>
		<aside>The latest release (along with documentation) can be found at <a href="http://libreboot.org/">libreboot.org</a></aside>
	</header>

	<p>
		It is assumed that you are running GNU/Linux. No other operating system is known to be compatible (with libreboot) for this release.
	</p>

	<p>
		The information here is user documentation mainly. For development notes and TODO's, see <a href="RELEASE.html">RELEASE.html</a> and
		<a href="future/index.html">future/index.html</a>
	</p>

	<h2>GNU/Linux distributions</h2>
		<ul>
			<li><a href="howtos/grub_boot_installer.html">How to install a GNU/Linux distribution</a></li>
			<li><a href="howtos/grub_cbfs.html">How to change your default GRUB menu</a></li>
		</ul>

	<h2>Working with source code</h2>
		<ul>
			<li><a href="#build_meta">Building libreboot_src from libreboot_meta</a></li>
			<li><a href="#build_bucts">How to build &quot;bucts&quot; (for LenovoBIOS X60/X60S/X60T/T60)</a></li>
			<li><a href="#build_flashrom">How to build &quot;flashrom&quot;</a></li>
			<li>
				<a href="#config">Configuring libreboot</a>
				<ul>
					<li><a href="#config_dmidecode">dmidecode</a></li>
					<li><a href="#config_x60">ThinkPad X60</a></li>
					<li><a href="#config_x60t">ThinkPad X60 Tablet</a></li>
					<li><a href="#config_t60">ThinkPad T60</a></li>
					<li><a href="#config_macbook21">MacBook2,1</a></li>
				</ul>
			</li>
			<li><a href="#build">How to build your ROM's</a></li>
		</ul>

	<h2>Hardware maintenance</h2>
		<ul>
			<li><a href="#supported_x60_list">List of supported ThinkPad X60's</a></li>
			<li><a href="#supported_x60t_list">List of supported ThinkPad X60 Tablets</a></li>
			<li><a href="#supported_t60_list">List of supported ThinkPad T60's</a></li>
			<li><a href="#t60_inverter">Inverter boards for ThinkPad T60 when upgrading the LCD panel.</a></li>
			<li><a href="#t60_ati_intel">ThinkPad T60 (ATI GPU) and ThinkPad T60 (Intel GPU) differences.</a></li>
			<li><a href="howtos/x60_heatsink.html">ThinkPad X60/X60S: change the fan/heatsink</a></li>
			<li><a href="howtos/x60_security.html">ThinkPad X60/X60S: security</a></li>
		</ul>

	<h2>Macbook2,1</h2>
		<ul>
			<li><a href="#macbook21">Information about the Macbook2,1</a></li></li>
		</ul>

	<h2>Installing libreboot (software: using internal programmer)</h2>
		<ul>
			<li><a href="#rom">Recommended ROM's to flash</a></li>
			<li><a href="#flashrom_lenovobios">X60/X60S/X60T/T60: How to flash your ROM (if running Lenovo BIOS firmware)</a></li>
			<li><a href="#flashrom_macbook21">macbook21: How to flash your ROM (if running Apple EFI firmware)</a></li>
			<li><a href="#flashrom">X60/X60S/X60T/T60/macbook21: How to flash your ROM (if running libreboot or coreboot already)</a></li>
		</ul>

	<h2>Installing libreboot (hardware: using external programmer)</h2>
		<ul>
			<li><a href="howtos/x60_unbrick.html">ThinkPad X60/X60S: How to unbrick</a></li>
		</ul>
	
	<h2>GRUB2 payload</h2>
		<ul>
			<li><a href="#grub_font">Setting font in GRUB</a></li>
			<li><a href="#grub_keyboard">GRUB keyboard layouts</a>
				<ul>
					<li>
						<a href="#keyboards">Pictures of keyboard layouts</a>
						<ul>
							<li><a href="#keyboards_ukqwerty">QWERTY (United Kingdom)</a></li>
							<li><a href="#keyboards_usqwerty">QWERTY (United States)</a></li>
							<li><a href="#keyboards_ukdvorak">Dvorak (United Kingdom)</a></li>
							<li><a href="#keyboards_usdvorak">Dvorak (United States)</a></li>
							<li><a href="#keyboards_frazerty">Azerty (French)</a></li>
							<li><a href="#keyboards_itqwerty">QWERTY (Italian)</a></li>
						</ul>
					</li>
					<li><a href="#grub_custom_keyboard">Custom keyboard layout in GRUB</a></li>
					<li><a href="#grub_qwerty_keyboard">US Qwerty keyboard layout in GRUB</a></li>
					<li><a href="#grub_ukqwerty_keyboard">UK Qwerty keyboard layout in GRUB</a></li>
					<li><a href="#grub_dvorak_keyboard">US Dvorak keyboard layout in GRUB</a></li>
					<li><a href="#grub_ukdvorak_keyboard">UK Dvorak keyboard layout in GRUB</a></li>
					<li><a href="#grub_frazerty_keyboard">French AZERTY keyboard layout in GRUB</a></li>
					<li><a href="#grub_itqwerty_keyboard">Italian QWERTY keyboard layout in GRUB</a></li>
				</ul>
			</li>
		</ul>

	<h2>Miscallaneous</h2>
		<ul>
			<li><a href="#tft_brightness">Brightness controls (ThinkPad X60) - how to prevent 'scrolling'</a></li>
			<li><a href="#x60_wifi">ThinkPad X60: Enable or disable wifi</a></li>
			<li><a href="#x60_trackpoint">ThinkPad X60: Enable or disable trackpoint</a></li>
			<li><a href="#high_pitch_trisquel">High Pitched Whining Noise on Idle (how to remove in Trisquel)</a>
				<ul>
					<li><a href="#howtouse_powertop">Powertop - how to use</a></li>
					<li><a href="#powertop_autostart">Powertop - Start automatically at boot time</a></li>
				</ul>
			</li>
			<li><a href="#high_pitch_parabola">High Pitched Whining Noise on Idle (how to remove in Parabola)</a></li>
			<li><a href="#serial">X60/T60: Serial port - how to use (for dock owners)</a></li>
			<li><a href="i945_backlight.html">i945 backlight controls on X60/T60</a></li>
			<li><a href="patch.html">Using diff and patch</a></li>
			<li><a href="#get_edid_panelname">Get EDID: Find out the name (model) of your LCD panel</a></li>
		</ul>

<hr/>

	<h1 id="build_meta">How to build libreboot_src from libreboot_meta</h1>

		<p>
			If you downloaded libreboot_meta.tar.gz, then you can use the scripts included
			which download all of the extra dependencies and (basically) generates libreboot_src.
		</p>

		<p>
			You need to install the build dependencies first.
		</p>

		<p>
			The following scripts installs them for apt-get distros.<br/>
			Adapt what's in this script if you don't use an apt-get distro:<br/>
			<b>$ sudo ./builddeb</b>
		</p>

		<p>
			After that, run the get script:<br/>
			<b>$ ./getall</b>
		</p>

		<p>
			What this did was download everything (grub, coreboot, memtest86+, bucts, flashrom)
			at the versions last tested for this release, and patch them. Read the script
			in a text editor to learn more.
		</p>

		<p>
			After that, you will have the full source. Rename libreboot_meta to libreboot_src. 
			To build the ROM's, see <a href="#build">#build</a>.
		</p>

		<p><a href="#pagetop">Back to top of page.</a></p>

<hr/>

	<h1 id="build_bucts">How to build &quot;bucts&quot; (for LenovoBIOS X60/X60S/X60T/T60)</h1>

		<p>
			<b>This is for Lenovo BIOS users on the ThinkPad X60/X60S, X60 Tablet and T60. If you have coreboot or libreboot running already, ignore this.</b>
		</p>

		<p>
			Bucts is needed when flashing the X60/X60S/X60T/T60 ROM while Lenovo BIOS is running.
			Each ROM contains identical data inside the two final 64K region in the file.
			This corresponds to the final two 64K regions in the flash chip. Lenovo BIOS will prevent you from writing the
			final one, so running &quot;<b>bucts 1</b>&quot; will set the machine to boot from the other block instead (which
			is writeable along with everything beneath it when using a patched flashrom. see <a href="#build_flashrom">#build_flashrom</a>). 
			After shutting down and booting up after the first flash,
			the final 64K block is writeable so you flash the ROM again with an unpatched flashrom and run "<b>bucts 0</b>" to
			make the machine boot from the normal (highest) block again.
		</p>

		<p>
			BUC.TS utility is included in libreboot_src.tar.gz and libreboot_bin.tar.gz.<br/>
			<b>If you downloaded libreboot_meta.tar.gz, follow <a href="#build_meta">#build_meta</a> before you proceed.</b>
		</p>

		<p>
			&quot;BUC&quot; means &quot;<b>B</b>ack<b>u</b>p <b>C</b>ontrol&quot; (it's a register) and &quot;TS&quot; means &quot;<b>T</b>op <b>S</b>wap&quot;
			(it's a status bit). Hence &quot;bucts&quot; (BUC.TS). TS 1 and TS 0 corresponds to bucts 1 and bucts 0.
		</p>

		<p>
			You need to install GCC. The following will work on apt-get distros (adapt that script if your distro doesn't use apt-get):<br/>
			<b>$ sudo ./builddeb-bucts</b>
		</p>

		<p>
			To build bucts, do that in the main directory:<br/>
			<b>$ ./builddeps-bucts</b>
		</p>

		<p>
			The &quot;builddeps&quot; script in libreboot_src and libreboot_meta also makes use of builddeps-bucts.
		</p>

		<p><a href="#pagetop">Back to top of page.</a></p>

<hr/>

	<h1 id="build_flashrom">How to build &quot;flashrom&quot;</h1>

		<p>
			Flashrom is the utility for flashing/dumping ROM's. This is what you will use to install libreboot.
		</p>

		<p>
			Flashrom source code is included in libreboot_src.tar.gz and libreboot_bin.tar.gz.<br/>
			<b>If you downloaded libreboot_meta.tar.gz, follow <a href="#build_meta">#build_meta</a> before you proceed.</b>
		</p>

		<p>
			You need the build dependencies for flashrom.
			The following script works in apt-get distros (tested in Trisquel 6):<br/>
			<b>$ sudo ./builddeb-flashrom</b>
		</p>

		<p>
			To build it, do that in the main directory:<br/>
			<b>$ ./builddeps-flashrom</b>
		</p>

		<p>
			After you've done that, under ./flashrom/ you will find the following executables:
		</p>
		<ul>
			<li>
				<b>flashrom</b>
				<ul>
					<li>For flashing while coreboot or libreboot is running.</li>
				</ul>
			</li>
			<li>
				<b>flashrom_lenovobios_sst</b>
				<ul>
					<li>This is patched for flashing while Lenovo BIOS is running on an X60 or T60 with the SST25VF016B (SST) flash chip.</li>
				</ul>
			</li>
			<li>
				<b>flashrom_lenovobios_macronix</b>
				<ul>
					<li>This is patched for flashing while Lenovo BIOS is running on an X60 or T60 with the MX25L1605D (Macronix) flash chip.</li>
				</ul>
			</li>
		</ul>

		<p>
			The &quot;builddeps&quot; script in libreboot_src and libreboot_meta also makes use of builddeps-flashrom.
		</p>

		<p><a href="#pagetop">Back to top of page.</a></p>

<hr/>

	<h1 id="config">Configuring libreboot</h1>

		<p>
			Before building a ROM in libreboot (or coreboot, for that matter), you need to configure it.
			This is done using the following inside the source tree:<br/>
			<b>$ make menuconfig</b>
		</p>

		<p>
			If you've already built a kernel before, you know how to use this interface.
		</p>

		<p>
			Configurations are saved then as files called <b>&quot;.config&quot;</b>. Copies of each configuration used
			for each machine type by the libreboot build scripts are stored in resources/libreboot/config/
		</p>

		<h2 id="config_dmidecode">
			dmidecode
		</h2>
			<p>
				There is certain information that can be useful to enter in particular:
			</p>
			<ul>
				<li>Local version string</li>
				<li>SMBIOS Serial Number</li>
				<li>SMBIOS Manufacturer</li>
				<li>SMBIOS Version</li>
				<li>SMBIOS Product name</li>
			</ul>
			<p>
				This information can be obtained using:<br/>
				<b>$ sudo dmidecode</b><br/>
				<b># dmidecode</b>
			</p>
			<p>
				Specifically, it's good practise to enter the same information for libreboot that you found when running this
				with the original BIOS or firmware. <b>libreboot has already done this for you. This information is for reference,
				in the hope that it will be useful.</b>
			</p>

		<h2 id="config_x60">
			ThinkPad X60 configuration (file: resources/libreboot/config/x60/config)
		</h2>
			<ul>
				<li>General setup / Expert mode = <i>enable</i></li>
				<li>General setup / Local version string = <i>7BETC7WW (2.08 )</i></li>
				<li>Mainboard / Mainboard vendor = <i>Lenovo</i></li>
				<li>Mainboard / Mainboard model = <i>ThinkPad X60 / X60s / X60t</i></li>
				<li>Mainboard / ROM chip size = <i>2048 KB (2 MB)</i></li>
				<li>Mainboard / SMBIOS Serial Number = <i>L3BH242</i></li>
				<li>Mainboard / SMBIOS Version Number = <i>ThinkPad X60s</i></li>
				<li>Mainboard / SMBIOS Manufacturer = <i>LENOVO</i></li>
				<li>Mainboard / SMBIOS Product name = <i>1702L8G</i></li>
				<li>Chipset / Include CPU microcode in CBFS = <i>Do not include microcode updates</i></li>
				<li>Devices / Use native graphics initialization = <i>enable</i></li>
				<li>Generic Drivers / Digitizer = <i>Autodetect</i></li>
				<li>Console / Send console output to a CBMEM buffer = <i>enable</i></li>
				<li>Payload / Add a payload = <i>An ELF executable payload</i></li>
				<li>Payload / Payload path and filename = <i>grub.elf</i></li>
			</ul>
			<p>
				Now go back into Devices:
			</p>
			<ul>
				<li>Devices / Run VGA Option ROMs = <i>disable</i></li>
				<li>Devices / Run Option ROMs on PCI devices = <i>disable</i></li>
			</ul>
			<p>
				The resulting .config file was saved as resources/libreboot/config/<b>x60/config</b> and is used by the build
				scripts for this machine.
			</p>
			<p>
				This is based on an X60S with the Core 2 Duo L7400 processor.
			</p>
			<p>
				SMBIOS Version Number is ThinkPad X60 on the X60, but it is believed that X60 and X60s both have identical
				motherboards where the only difference is the CPU. This same configuration is used on the X60 and X60s.
			</p>

		<h2 id="config_x60t">
			ThinkPad X60 Tablet configuration (file: resources/libreboot/config/x60t/config)
		</h2>
			<ul>
				<li>General setup / Expert mode = <i>enable</i></li>
				<li>General setup / Local version string = <i>7JET23WW (1.08 )</i></li>
				<li>Mainboard / Mainboard vendor = <i>Lenovo</i></li>
				<li>Mainboard / Mainboard model = <i>ThinkPad X60 / X60s / X60t</i></li>
				<li>Mainboard / ROM chip size = <i>2048 KB (2 MB)</i></li>
				<li>Mainboard / SMBIOS Serial Number = <i>L3B8281</i></li>
				<li>Mainboard / SMBIOS Version Number = <i>ThinkPad X60 Tablet</i></li>
				<li>Mainboard / SMBIOS Manufacturer = <i>LENOVO</i></li>
				<li>Mainboard / SMBIOS Product name = <i>6364WJ1</i></li>
				<li>Chipset / Include CPU microcode in CBFS = <i>Do not include microcode updates</i></li>
				<li>Devices / Use native graphics initialization = <i>enable</i></li>
				<li>Generic Drivers / Digitizer = <i>Present</i></li>
				<li>Console / Send console output to a CBMEM buffer = <i>enable</i></li>
				<li>Payload / Add a payload = <i>An ELF executable payload</i></li>
				<li>Payload / Payload path and filename = <i>grub.elf</i></li>
			</ul>
			<p>
				Now go back into Devices:
			</p>
			<ul>
				<li>Devices / Run VGA Option ROMs = <i>disable</i></li>
				<li>Devices / Run Option ROMs on PCI devices = <i>disable</i></li>
			</ul>
			<p>
				The resulting .config file was saved as resources/libreboot/config/<b>x60t/config</b> and is used by the build
				scripts for this machine.
			</p>
			<p>
				This is based on an X60T with the Core 2 Duo L7400 processor.
			</p>

		<h2 id="config_t60">
			ThinkPad T60 configuration (file: resources/libreboot/config/t60/config)
		</h2>
			<ul>
				<li>General setup / Expert mode = <i>enable</i></li>
				<li>General setup / Local version string = <i>79ETE7WW (2.27 )</i></li>
				<li>Mainboard / Mainboard vendor = <i>Lenovo</i></li>
				<li>Mainboard / Mainboard model = <i>ThinkPad T60 / T60p</i></li>
				<li>Mainboard / ROM chip size = <i>2048 KB (2 MB)</i></li>
				<li>Mainboard / SMBIOS Serial Number = <i>L3DKE06</i></li>
				<li>Mainboard / SMBIOS Version Number = <i>ThinkPad T60</i></li>
				<li>Mainboard / SMBIOS Manufacturer = <i>LENOVO</i></li>
				<li>Mainboard / SMBIOS Product name = <i>1951FEG</i></li>
				<li>Chipset / Include CPU microcode in CBFS = <i>Do not include microcode updates</i></li>
				<li>Devices / Use native graphics initialization = <i>enable</i></li>
				<li>Console / Send console output to a CBMEM buffer = <i>enable</i></li>
				<li>Payload / Add a payload = <i>An ELF executable payload</i></li>
				<li>Payload / Payload path and filename = <i>grub.elf</i></li>
			</ul>
				Go back into Devices:
			</p>
			<ul>
				<li>Devices / Run VGA Option ROMs = <i>disable</i></li>
				<li>Devices / Run Option ROMs on PCI devices = <i>disable</i></li>
			</ul>
			<p>
				The resulting .config file was saved as resources/libreboot/config/<b>t60/config</b> and is used by the build
				scripts for this machine.
			</p>	
			<p>
				It is believed that the motherboards on 14.1&quot; and 15.1&quot; T60's are the same, so the same configuration is used
				on both the 14.1&quot; and 15.1&quot; T60's.
			</p>

		<h2 id="config_macbook21">
			MacBook2,1 configuration (file: resources/libreboot/config/macbook21/config)
		</h2>
			<ul>
				<li>General / Expert mode = <i>enable</i></li>
				<li>General / Local version string = <i>&quot;&nbsp;&nbsp;&nbsp;&nbsp;MB21.88Z.00A5.B07.0706270922&quot;</i> (without the quotes)</li>
				<li>Mainboard / Mainboard vendor = <i>Apple</i></li>
				<li>Mainboard / Mainboard model = <i>Macbook2,1 ICH7 TESTING</i></li>
				<li>Mainboard / ROM chip size = <i>2048 KB (2 MB)</i></li>
				<li>Mainboard / SMBIOS Serial Number = <i>W8724XXXXXX</i></li>
				<li>Mainboard / SMBIOS Version Number = <i>1.0</i></li>
				<li>Mainboard / SMBIOS Manufacturer = <i>Apple Inc.</i></li>
				<li>Mainboard / SMBIOS Product Name = <i>MacBook2,1</i></li>
				<li>Chipset / Include CPU microcode in CBFS = <i>Do not include microcode updates</i></li>
				<li>Devices / Use native graphics initialization = <i>enable</i></li>
				<li>Console / Send console output to a CBMEM buffer = <i>enable</i></li>
				<li>Payload / Add a payload = <i>An ELF executable payload</i></li>
				<li>Payload / Payload path and filename = <i>grub.elf</i></li>
			</ul>
			<p>
				Go back and disable option ROM's:
			</p>
			<ul>
				<li>Devices / Run VGA Option ROMs = <i>disable</i></li>
				<li>Devices / Run Option ROMs on PCI devices = <i>disable</i></li>
			</ul>
			<p>
				The resulting .config file was saved as resources/libreboot/config/<b>macbook21/config</b> and is used by the build
				scripts for this machine.
			</p>

		<p><a href="#pagetop">Back to top of page.</a></p>

<hr/>

	<h1 id="build">How to build the ROM's!</h1>

		<p>If you have anything special in a directory called libreboot_bin, just outside of libreboot_src,
		then back it up first.</p>

		<p>You don't need to do much: there are scripts already written for you that can build everything automatically.</p>

		<p>Install <b>all</b> dependencies (works on apt-get distros, tested in Trisquel 6)<br/>
		<b>$ sudo ./builddeb</b></p>

		<p>If your distro uses a different package manager or package names, then you'll need to adapt what you see in
		'builddeb' and install it yourself - maybe you could share the script for your distro!</p>

		<p>Also, make sure that you have the sha512sum utility installed.</p>

		<p>If running for the first time, run this:<br/>
		<b>$ ./buildall</b> (also performs the "./build" step below)<br/>
		Or if you only want to build dependencies (crossgcc, grub and so on):<br/>
		<b>$ ./builddeps</b></p>

		<p>If you've already run ./builddeps and/or ./buildall before, you don't need to run them again.
		Just run that from now on to build your ROM's:<br/>
		<b>$ ./build</b></p>

		<p>To un-build (clean) the build dependencies that you built before, do that:<br/>
		<b>$ ./cleandeps</b></p>

		<p>Note: after running 'cleandeps', you will need to run 'builddeps' or 'buildall' again before you can use 'build'.</p>

		<p>After 'build' or 'buildall' has finished, an ../libreboot_bin directory will exist outside of libreboot_src containing the ROM's and other files. In libreboot_src will also be
		a directory called 'bin' which contains all of the ROM's that you compiled.</p>

		<p>The script also generates a 'libreboot_meta' directory outside of libreboot_src, which contains everything in src except for grub, coreboot, memtest,
		flashrom and bucts. There is a script called 'getall' from src included in meta, which downloads and patches everything needed to create src.</p>

		<p>Reading all of those scripts will teach you how everything is built. It should also be simple to modify it to your needs.</p>

		<p><a href="#pagetop">Back to top of page</a></p>

<hr/>

	<h1 id="supported_x60_list">List of supported ThinkPad X60's</h1>

		<p>
			Regarding native gpu initialization ('native graphics') which replaces the proprietary VGA Option ROM ('Video BIOS' or 'VBIOS'),
			all known LCD panels are currently compatible:
		</p>
		<ul>
			<li>TMD-Toshiba LTD121ECHB: #</li>
			<li>CMO N121X5-L06: #</li>
			<li>Samsung LTN121XJ-L07: #</li>
			<li>BOE-Hydis HT121X01-101: #</li>		
		</ul>

		<p>
			See <a href="#get_edid_panelname">#get_edid_panelname</a>.
		</p>

		<p><a href="#pagetop">Back to top of page.</a></p>

<hr/>

	<h1 id="supported_x60t_list">List of supported ThinkPad X60 Tablets</h1>

		<p>
			Regarding native gpu initialization ('native graphics') which replaces the proprietary VGA Option ROM ('Video BIOS' or 'VBIOS').
		</p>

		<p>
			The following LCD panels are known to work:
		</p>
			<ul>
				<li>
					<b>X60T XGA (1024x768):</b>
					<ul>
						<li>BOE-Hydis HV121X03-100: #</li>
					</ul>
				</li>
				<li>
					<b>X60T SXGA+ (1400x1050):</b>
					<ul>
						<li>BOE-Hydis HV121P01-100: #</li>
					</ul>
				</li>
			</ul>

		<p>
			The following LCD panels are incompatible at the moment.
		</p>
			<ul>
				<li>Samsung LTN121XP01 (<a href="future/index.html#lcd_i945_incompatibility">future/index.html#lcd_i945_incompatibility</a>)</li>
			</ul>

		<p>
			See <a href="#get_edid_panelname">#get_edid_panelname</a>.
		</p>

<hr/>

	<h1 id="supported_t60_list">Supported T60 list</h1>

		<p>
			Regarding native gpu initialization ('native graphics') which replaces the proprietary VGA Option ROM ('Video BIOS' or 'VBIOS').
		</p>

		<p>
			T60 15.4&quot; (1280x800 and 1680x1050) with Intel GPU is untested in this release. Not much yet is known about panel names.
			They will be tested at a later date.
		</p>

		<ul>
			<li>
				The following ThinkPad T60's are supported:
				<ul>
					<li>ThinkPad X60 Tablet (1024x768) with digitizer support</li>
					<li>ThinkPad X60 Tablet (1400x1050) with digitizer support</li>
					<li>ThinkPad T60 14.1&quot; SXGA+ (1400x1050) (Intel GPU)</li>
					<li>ThinkPad T60 15.1&quot; SXGA+ (1400x1050) (Intel GPU)</li>
					<li>ThinkPad T60 15.1&quot; UXGA (1600x1200) (Intel GPU)</li>
					<li>ThinkPad T60 15.1&quot; QXGA (2048x1536) (Intel GPU)</li>
				</ul>
			</li>
			<li>
				Note, the T60 models below are *NOT* supported in this release:
				<ul>
					<li>
						ThinkPad T60 14.1&quot; XGA (1024x768) (Intel GPU)
						<ul>
							See below (comments 15.1&quot; XGA T60).
						</ul>
					</li>
					<li>
						ThinkPad T60 15.1&quot; XGA (1024x768) (Intel GPU)
						<ul>
							<li>However, the LCD panels in these models are user-upgradeable in 14.1&quot; and 15.1&quot; to one of the supported panels.</li>
							<li>See <a href="#t60_inverter">#t60_inverter</a> for information about inverters to use when upgrading the LCD panel.</li>
							<li>See the list immediately below for a list of LCD panels.</li>
						</ul>
					</li>
					<li>
						ThinkPad T60/T60p with ATI GPU (all models)
						<ul>
							<li>However, on 14.1&quot; and 15.1&quot; T60 (*not* the 15.4&quot; T60p!) that has ATI GPU, you can replace the mainboard with one that has an Intel GPU</li>
							<li>See <a href="#t60_ati_intel">#t60_ati_intel</a> for pictures showing the differences (when shopping for motherboards).</li>
						</ul>
					</li>
				</ul>
			</li>
		</ul>

		<p>
			To find what LCD panel you have, see: <a href="#get_edid_panelname">#get_edid_panelname</a>.
		</p>

		<h2>Tested LCD panels (as of libreboot 6th release, initial revision)</h2>
			<ul>
				<li>
					<b>T60 14&quot; XGA (1024x768) (not working yet)</b>
					<ul>
						<li>
							<b>None of the tested panels work yet!</b>
							<ul>
								<li><b>You can upgrade the LCD panel to SXGA+ though</b></li>
							</ul>
						</li>
						<li>
							Tested panels:
							<ul>
								<li>Not working: Samsung LTN141XA-L01 (<a href="future/index.html#lcd_i945_incompatibility">future/index.html#lcd_i945_incompatibility</a>)</li>
							</ul>
						</li>
						<li>
							Untested panels:
							<ul>
								<li>CMO N141XC</li>
								<li>BOE-Hydis HT14X14</li>
								<li>TMD-Toshiba LTD141ECMB</li>
							</ul>
						</li>
					</ul>
				</li>
				<li>
					<b>T60 14&quot; SXGA+ (1400x1050) (works!!!)</b>
					<ul>
						<li>
							<b>Source code modifications *not* required!</b>
							<ul>
								<li>Works out of the box!</li>
							</ul>
						</li>
						<li>
							Tested panels:
							<ul>
								<li><b>Working: TMD-Toshiba LTD141EN9B</b></li>
								<li><b>Working: Samsung LTN141P4-L02</b></li>
							</ul>
						</li>
						<li>
							Untested panels:
							<ul>
								<li>Boe-Hydis HT14P12</li>
							</ul>
						</li>
						<li>
							Part number for inverter board:
							<ul>
								<li>FRU P/N  41W1478</li>
							</ul>
						</li>
					</ul>
				</li>
				<li>
					<b>T60 15&quot; XGA (1024x768) (not working yet)</b>
					<ul>
						<li>
							<b>None of the tested panels work yet!</b>
							<ul>
								<li><b>You can upgrade the panel to SXGA+, UXGA or QXGA, though.</b></li>
								<li>
									Make sure that you also upgrade the inverter to one of these: 
									<ul>
										<li>P/N 42T0078 FRU 42T0079</li>
										<li>P/N 41W1338</li>
									</ul>
								</li>
							</ul>
						</li>
						<li>
							Tested panels:
							<ul>
								<li>Not working: LG-Philips LP150X09 (<a href="future/index.html#lcd_i945_incompatibility">future/index.html#lcd_i945_incompatibility</a>)</li>
							</ul>
						</li>
						<li>
							Untested panels:
							<ul>
								<li>Samsung LTN150XG</li>
								<li>13N7068 (IDtech)</li>
								<li>13N7069 (CMO)</li>
							</ul>
						</li>
					</ul>
				</li>
				<li>
					<b>T60 15&quot; SXGA+ (1400x1050) (works!!!)</b>
					<ul>
						<li>
							<b>Source code modifications *not* required!</b>
							<ul>
								<li>Works out of the box!</li>
							</ul>
						</li>
						<li>
							Tested panels:
							<ul>
								<li><b>Working: LG-Philips LP150E05-A2K1</b></li>
							</ul>
						</li>
						<li>
							Untested panels:
							<ul>
								<li>BOE-Hydis HV150P01-100</li>
							</ul>
						</li>
						<li>
							Use one of these inverters (advised):
							<ul>
								<li>P/N 42T0078 FRU 42T0079</li>
								<li>P/N 41W1338</li>
							</ul>
						</li>
					</ul>
				</li>
				<li>
					<b>T60 15&quot; UXGA (1600x1200) (works!!!)</b>
					<ul>
						<li>
							<b>Source code modifications *not* required!</b>
							<ul>
								<li>Works out of the box!</li>
							</ul>
						</li>
						<li>
							Tested panels:
						<ul>
								<li><b>Working: BOE-Hydis HV150UX1-100</b></li>
							</ul>
						</li>
						<li>
							Untested panels:
							<ul>
								<li>IDTech  N150U3-L01</li>
								<li>BOE-Hydis  HV150UX1-102</li>
							</ul>
						</li>
						<li>
							Use one of these inverters (advised):
							<ul>
								<li>P/N 42T0078 FRU 42T0079</li>
								<li>P/N 41W1338</li>
							</ul>
						</li>
					</ul>
				</li>
				<li>
					<b>T60 15&quot; QXGA (2048x1536) (works!!!)</b>
					<ul>
						<li>
							<b>Source code modifications *not* required!</b>
							<ul>
								<li>Works out of the box!</li>
							</ul>
						</li>
						<li>
							Tested panels:
							<ul>
								<li><b>Working: IDtech IAQX10N</b></li>
							</ul>
						</li>
						<li>
							Untested panels:
							<ul>
								<li>IDtech IAQX10S</li>
							</ul>
						</li>
						<li>
							Use one of these inverters (advised):
							<ul>
								<li>P/N 42T0078 FRU 42T0079</li>
								<li>P/N 41W1338</li>
							</ul>
						</li>
					</ul>
				</li>
			</ul>

		<p><a href="#pagetop">Back to top of page.</a></p>

<hr/>

	<h1 id="t60_inverter">Inverter boards for ThinkPad T60 when upgrading LCD panel</h1>

		<p>
			When upgrading the XGA (1024x768) LCD panel to SXGA+ (1400x1050) on the 14.1&quot; T60, you also need to use this inverter board:
		</p>
		<ul>
			<li>
				FRU P/N 41W1478
			</li>
		</ul>

		<p>
			When upgrading the XGA (1024x768) LCD panel to SXGA+ (1400x1050), UXGA (1600x1200) or QXGA (2048x1536) on the 15.1&quot; T60, you
			also need to use one of these inverter boards:
		</p>
		<ul>
			<li>
				P/N 42T0078 FRU 42T0079
			</li>
			<li>
				P/N 41W1338
			</li>
		</ul>

		<p>
			See <a href="#supported_t60_list">#supported_t60_list</a> for a list of LCD panels on ThinkPad T60 14.1&quot; and ThinkPad T60 15.1&quot;.
		</p>

		<p>
			The Video BIOS (VBIOS) for T60 has been reverse engineered and replaced with Free Software. However,
			at the time of preparing this release the free replacement did not yet support the XGA (1024x768) panels,
			which is what made upgrading them necessary.
		</p>

		<p>
			The 'Video BIOS' is what initializes graphics.
		</p>

		<p>
			See: <a href="https://en.wikipedia.org/wiki/Video_BIOS">https://en.wikipedia.org/wiki/Video_BIOS</a>.
		</p>

		<p><a href="#pagetop">Back to top of page.</a></p>

<hr/>

	<h1 id="t60_ati_intel">ThinkPad T60 (ATI GPU) and ThinkPad T60 (Intel GPU) differences.</h1>

		<p>
			If your T60 is a 14.1&quot; or 15.1&quot; model with an ATI GPU, it won't work with libreboot by default but
			you can replace the motherboard with another T60 motherboard that has an Intel GPU, and then libreboot should work.
		</p>

		<p>
			As far as I know, 14.1&quot; (Intel GPU) and 15.1&quot; (Intel GPU) T60 motherboards are the same, where
			'spacers' are used on the 15.1&quot; T60. In any case, it makes sense to find one that is guaranteed to fit in your chassis.
		</p>

		<p>
			Note: the T60<b>p</b> is a 15.4&quot; widescreen laptop and uses completely different shaped motherboards (all of which have ATI). 
			The T60p laptops cannot be used with libreboot under any circumstances.
		</p>

		<p>
			There is a 15.4&quot; T60 with Intel graphics, which might work. (untested at the time of writing). <b>Note to self: REMOVE THIS WHEN TESTED</b>.
		</p>

		<p>
			The following T60 motherboard shows an ATI GPU (<b>do not buy this</b>) (highlighted in red, or on the right next to the white CPU socket), which is unsupported by libreboot:<br/>
			<img src="howtos/t60_mainboard/t60_ati_gpu.jpg" alt="" />
		</p>

		<p>
			The following T60 motherboard shows an Intel GPU (<b>buy this!</b>) (highlighted in red or on the right next to the white CPU socket, you can see that the space for ATI GPU is empty):<br/>
			<img src="howtos/t60_mainboard/t60_intel_gpu.jpg" alt="" />
		</p>

		<p>
			The reason that the ATI GPU on T60 is unsupported is due to the VBIOS (Video BIOS) which is non-free. 
			The VBIOS for the Intel GPU on X60/T60 has been reverse engineered, and replaced with Free Software and
			so will work in libreboot.
		</p>

		<p>
			The 'Video BIOS' is what initializes graphics.
		</p>

		<p>
			See: <a href="https://en.wikipedia.org/wiki/Video_BIOS">https://en.wikipedia.org/wiki/Video_BIOS</a>.<br/>
			In fact, lack of free VBIOS in general is a big problem in coreboot, and is one reason (among others) why many ports for coreboot are 
			unsuitable for libreboot's purpose.
		</p>

		<p>
			Theoretically, the ThinkPad T60 with ATI GPU can work with libreboot and have ROM's compiled for it, however
			in practise it would not be usable as a laptop because there would be no visual display at all. That being said,
			such a configuration is acceptable for use in a 'headless' server setup (with serial and/or ssh console as the display).
		</p>

		<p><a href="#pagetop">Back to top of page.</a></p>

<hr/>

	<h1 id="macbook21">Information about the macbook2,1</h1>

		<p>
			There is an Apple laptop called the macbook2,1 from late 2006 or early 2007 that uses the same i945 chipset
			as the ThinkPad X60 and ThinkPad T60. A developer ported coreboot to his macbook2,1, and now libreboot can run on it.
		</p>
		<p>
			Mono Moosbart is the person who wrote the port for macbook2,1. Referenced below are copies (up to date at the time of writing, 20140630)
			of the pages he wrote when porting coreboot to the macbook2,1. They are included here in case the main site goes down for
			whatever reason, since they include a lot of useful information.
		</p>
		<p>
			Backups created using wget:<br/>
			<b>$ wget -m -p -E -k -K -np http://macbook.donderklumpen.de/</b><br/>
			<b>$ wget -m -p -E -k -K -np http://macbook.donderklumpen.de/coreboot/</b><br/>
			Use <b>-e robots=off</b> if using this trick for other sites and the site restricts using robots.txt
		</p>

		<p>
			<b>Links to wget backups (and the backups themselves) of Mono's pages (see above) removed temporarily. Mono has given me permission to distribute them, but I need to ask
			him to tell me what license these works fall under first. Otherwise, the above URL's should be fine. NOTE TO SELF: REMOVE THIS WHEN DONE</b>
		</p>

		<h2>
			Installing GNU/Linux distributions (on Apple EFI firmware)
		</h2>
			<ul>
				<li><a href="#">Parabola GNU/Linux installation on a macbook2,1 with Apple EFI firmware</a> (this is a copy of Mono's page, see above)</li>
			</ul>
			<p>
				How to boot an ISO: burn it to a CD (like you would normally) and hold down the Alt/Control key while booting. 
				The bootloader will detect the GNU/Linux CD as 'Windows' (because Apple doesn't think GNU/Linux exists). Install it like you normally would.
				When you boot up again, hold Alt/Control once more. The installation (on the HDD) will once again be seen as 'Windows'. (it's not actually Windows,
				but Apple likes to think that Apple and Microsoft are all that exist.)
				Now to install libreboot, follow <a href="#flashrom_macbook21">#flashrom_macbook21</a>.
			</p>

		<h2>
			Information about coreboot
		</h2>
			<ul>
				<li><a href="#">Coreboot on the macbook2,1</a> (this is a copy of Mono's page, see above)</li>
			</ul>

		<h2>
			coreboot wiki page
		</h2>
			<ul>
				<li><a href="http://www.coreboot.org/Board:apple/macbook21">http://www.coreboot.org/Board:apple/macbook21</a></li>
			</ul>

		<h2>
			Compatible models
		</h2>
			<p>
				It is believed that all models are compatible, listed here:
			</p>
			<ul>
				<li><a href="http://www.everymac.com/ultimate-mac-lookup/?search_keywords=MacBook2,1">http://www.everymac.com/ultimate-mac-lookup/?search_keywords=MacBook2,1</a></li>
			</ul>
			<p>
				Specifically (Order No. / Model No. / CPU):
			</p>
			<ul>
				<li>MA699LL/A / A1181 (EMC 2121) / Intel Core 2 Duo T5600</li>
				<li>MA701LL/A / A1181 (EMC 2121) / Intel Core 2 Duo T7200</li>
				<li>MB061LL/A / A1181 (EMC 2139) / Intel Core 2 Duo T7200</li>
				<li>MA700LL/A / A1181 (EMC 2121) / Intel Core 2 Duo T7200</li>
				<li>MB063LL/A / A1181 (EMC 2139) / Intel Core 2 Duo T7400</li>
				<li>MB062LL/A / A1181 (EMC 2139) / Intel Core 2 Duo T7400</li>
			</ul>

		<p>
			Also of interest: <a href="#config_macbook21">#config_macbook21</a>.
		</p>

		<p>
			<b>
				The MacBook2,1 comes with a webcam, which does not work without proprietary software. Also, webcams are a security risk; cover it up! Or remove it.
			</b>
		</p>

		<p><a href="#pagetop">Back to top of page.</a></p>

<hr/>

	<h1 id="rom">Recommended ROM's to flash</h1>

		<p>Recommended ROM's to flash:</p>
		<ul>
			<li>
				ThinkPad X60, X60s (<b>bin/x60/</b>)
				<ul>
					<li>US Qwerty keyboard, no dock: <b>libreboot_usqwerty.rom</b></li>
					<li>US Qwerty keyboard, with dock: <b>libreboot_serial_usqwerty.rom</b></li>
					<li>UK Qwerty keyboard, no dock: <b>libreboot_ukqwerty.rom</b></li>
					<li>UK Qwerty keyboard, with dock: <b>libreboot_serial_ukqwerty.rom</b></li>
					<li>US Dvorak keyboard, no dock: <b>libreboot_usdvorak.rom</b></li>
					<li>US Dvorak keyboard, with dock: <b>libreboot_serial_usdvorak.rom</b></li>
					<li>UK Dvorak keyboard, no dock: <b>libreboot_ukdvorak.rom</b></li>
					<li>UK Dvorak keyboard, with dock: <b>libreboot_serial_ukdvorak.rom</b></li>
					<li>French Azerty keyboard, no dock: <b>libreboot_frazerty.rom</b></li>
					<li>French Azerty keyboard, with dock: <b>libreboot_serial_frazerty.rom</b></li>
					<li>Italian Qwerty keyboard, no dock: <b>libreboot_itqwerty.rom</b></li>
					<li>Italian Qwerty keyboard, with dock: <b>libreboot_serial_itqwerty.rom</b></li>
				</ul>
			</li>
			<li>
				ThinkPad X60 Tablet (<b>bin/x60t/</b>)
				<ul>
					<li>US Qwerty keyboard, no dock: <b>libreboot_usqwerty.rom</b></li>
					<li>US Qwerty keyboard, with dock: <b>libreboot_serial_usqwerty.rom</b></li>
					<li>UK Qwerty keyboard, no dock: <b>libreboot_ukqwerty.rom</b></li>
					<li>UK Qwerty keyboard, with dock: <b>libreboot_serial_ukqwerty.rom</b></li>
					<li>US Dvorak keyboard, no dock: <b>libreboot_usdvorak.rom</b></li>
					<li>US Dvorak keyboard, with dock: <b>libreboot_serial_usdvorak.rom</b></li>
					<li>UK Dvorak keyboard, no dock: <b>libreboot_ukdvorak.rom</b></li>
					<li>UK Dvorak keyboard, with dock: <b>libreboot_serial_ukdvorak.rom</b></li>
					<li>French Azerty keyboard, no dock: <b>libreboot_frazerty.rom</b></li>
					<li>French Azerty keyboard, with dock: <b>libreboot_serial_frazerty.rom</b></li>
					<li>Italian Qwerty keyboard, no dock: <b>libreboot_itqwerty.rom</b></li>
					<li>Italian Qwerty keyboard, with dock: <b>libreboot_serial_itqwerty.rom</b></li>
				</ul>
			</li>
			<li>
				ThinkPad T60 (<b>bin/t60/</b>) (note, see <a href="#supported_t60_list">#supported_t60_list</a>)
				<ul>
					<li>US Qwerty keyboard, no dock: <b>libreboot_usqwerty.rom</b></li>
					<li>US Qwerty keyboard, with dock: <b>libreboot_serial_usqwerty.rom</b></li>
					<li>UK Qwerty keyboard, no dock: <b>libreboot_ukqwerty.rom</b></li>
					<li>UK Qwerty keyboard, with dock: <b>libreboot_serial_ukqwerty.rom</b></li>
					<li>US Dvorak keyboard, no dock: <b>libreboot_usdvorak.rom</b></li>
					<li>US Dvorak keyboard, with dock: <b>libreboot_serial_usdvorak.rom</b></li>
					<li>UK Dvorak keyboard, no dock: <b>libreboot_ukdvorak.rom</b></li>
					<li>UK Dvorak keyboard, with dock: <b>libreboot_serial_ukdvorak.rom</b></li>
					<li>French Azerty keyboard, no dock: <b>libreboot_frazerty.rom</b></li>
					<li>French Azerty keyboard, with dock: <b>libreboot_serial_frazerty.rom</b></li>
					<li>Italian Qwerty keyboard, no dock: <b>libreboot_itqwerty.rom</b></li>
					<li>Italian Qwerty keyboard, with dock: <b>libreboot_serial_itqwerty.rom</b></li>
				</ul>
			</li>
			<li>
				MacBook2,1 (<b>bin/macbook21/</b>)
				<ul>
					<li>US Qwerty keyboard: <b>libreboot_usqwerty.rom</b></li>
					<li>UK Qwerty keyboard: <b>libreboot_ukqwerty.rom</b></li>
					<li>US Dvorak keyboard: <b>libreboot_usdvorak.rom</b></li>
					<li>UK Dvorak keyboard: <b>libreboot_ukdvorak.rom</b></li>
					<li>French Azerty keyboard: <b>libreboot_frazerty.rom</b></li>
					<li>Italian Qwerty keyboard: <b>libreboot_itqwerty.rom</b></li>
					<li>The MacBook2,1 uses the same chipset, i945, as the X60/X60s X60T and T60 but there is no dock or serial port available for this machine.</li>
				</ul>
			</li>
		</ul>
		<p>
			This will give you your native keyboard layout inside GRUB. The preferences in your OS are not affected, it just makes using
			the GRUB command line easier (if you ever need to do that).
			<a href="#grub_keyboard">#grub_keyboard</a>shows you how this was done. If your native keyboard layout
			differs, you can adapt those notes and hack the 'build' script for your needs.
		</p>
		<p>
			For pictures of what these keyboard layouts look like (so you can compare with yours), see <a href="#keyboards">#keyboards</a>.
		</p>

		<p><a href="#pagetop">Back to top of page.</a></p>

<hr/>

	<h1 id="flashrom_lenovobios">X60/X60S/X60T/T60: How to flash the ROM's onto your machine (if running Lenovo BIOS firmware).</h1>

		<div class="important">

			<p>
				Hover over the next paragraph to make it black.
			</p>
			<p class="lenovobios">
				Following this guide means simply flashing a libreboot ROM. This guide will not (directly) teach you how to make a backup (dump) of the original Lenovo BIOS
				because to do so would be to explicitly endorse proprietary software. However, for the purposes of reverse engineering it can be useful
				to have a backup. Each copy of the original Lenovo BIOS is tied to the specific machine that it came from; it will not run
				on any other machine, even if it's the same type of machine as yours. What this means is that, effectively, you can back it up now (so that you can
				re-flash it later if you want to run the original Lenovo BIOS again) or lose it forever. The X60/T60 installation
				guide on the coreboot wiki will show you how to do this: 
				<a href="http://www.coreboot.org/Board:lenovo/x60/Installation">http://www.coreboot.org/Board:lenovo/x60/Installation</a>.<br/>
				Do not make this decision lightly! This is your last and only chance.
			</p>

		</div>

		<p><b>This is for the ThinkPad X60 and T60 while running Lenovo BIOS. If you already have coreboot or libreboot running,
		then go to <a href="#flashrom">#flashrom</a> instead!</b></p>

		<p><b>If you are flashing a Lenovo ThinkPad T60, be sure to read <a href="#supported_t60_list">#supported_t60_list</a></b></p>

		<p>
			If you are using Trisquel 6 (32-bit) then the bucts/flashrom binaries are tested. If not (or if you want), recompile them:<br/>
			<b>See: <a href="#build_flashrom">#build_flashrom</a></b><br/>
			<b>See: <a href="#build_bucts">#build_bucts</a></b><br/>
			In any case, you will want the dependencies to run them aswell:<br/>
			<b>$ sudo ./builddeb-flashrom</b><br/>
			<b>$ sudo ./builddeb-bucts</b><br/>
			(^ works on Trisquel 6, maybe other apt-get distros. Adapt for all other distros.)
		</p>

		<p>&quot;YOURBOARD/YOURROM&quot; should be replaced with what is correct as per <a href="#rom">#rom</a>. Alternatively
		you may be using your own custom ROM. Adapt.</p>

		<p>
			Run the script:<br/>
			<b>$ sudo ./lenovobios_firstflash bin/<a href="#rom">YOURBOARD/YOURROM</a>.</b>
		</p>

		<div class="important">

			<p>
				You should see within the output the following:<br/>
				<b>&quot;Updated BUC.TS=1 - 64kb address ranges at 0xFFFE0000 and 0xFFFF0000 are swapped&quot;</b>.
			</p>

			<p>
				You should also see within the output the following:<br/>
				<b>&quot;Flash chip is in an unknown state&quot;</b>, <b>&quot;FAILED&quot;</b> and <b>&quot;DO NOT SHUTDOWN OR REBOOT&quot;</b><br/>
				Seeing this means that the operation was a <b>resounding</b> success! <b>DON'T PANIC</b>.
			</p>

			<p>
				See this link for more details: 
				<a href="http://thread.gmane.org/gmane.linux.bios.flashrom/575">http://thread.gmane.org/gmane.linux.bios.flashrom/575</a>.
			</p>

			<p>
				If the above is what you see, then <b>SHUT DOWN</b>. Wait a few seconds, and then boot; libreboot is running, but there is a 2nd procedure <b>*needed*</b> (see below).
			</p>

		</div>

		<p>
			<b>
				If you boot and you see nothing, try turning up the backlight (Fn+Home).
				If this is a ThinkPad X60 and backlight resets to zero when turning it up while at max, look at <a href="#tft_brightness">#tft_brightness</a>.
			</b>
		</p>

		<p>
			<b>
				After the 2nd flash, if this is a ThinkPad X60 then you can look at <a href="#x60_wifi">#x60_wifi</a> for how to enable/disable wifi.
				You can also look at <a href="#x60_trackpoint">#x60_trackpoint</a> for how to enable/disable the trackpoint (red mouse on keyboard).
				You might want to do the 2nd flash first (see below) before doing that.
			</b>
		</p>

		<p>
			When you have booted up again:<br/>
			<b>$ sudo ./lenovobios_secondflash bin/<a href="#rom">YOURBOARD/YOURROM</a></b>
		</p>

		<div class="important">

			<p>
				You should see within the output the following:<br/>
				<b>&quot;Updated BUC.TS=0 - 128kb address range 0xFFFE0000-0xFFFFFFFF is untranslated&quot;</b>
			</p>

			<p>
				You should also see within the output the following:<br/>
				<b>&quot;Verifying flash... VERIFIED.&quot;</b>
			</p>

			<p>Shut down again, wait a few seconds, and then boot.</p>

		</div>

		<p><a href="#pagetop">Back to top of page.</a></p>

<hr/>

	<h1 id="flashrom_macbook21">macbook21: How to flash your ROM (if running Apple EFI firmware)</h1>

		<div class="important">

			<p>
				Hover over the next paragraph to make it black.
			</p>
			<p class="lenovobios">
				Following this guide means simply flashing a libreboot ROM. This guide will not (directly) teach you how to make a backup (dump) of the original Apple EFI firmware
				because to do so would be to explicitly endorse proprietary software. However, for the purposes of reverse engineering it can be useful
				to have a backup. Each copy of the original Apple EFI is (believed, but unproven to be) tied to the specific machine that it came from; it will not (as is believed) run
				on any other machine, even if it's the same type of machine as yours. What this means is that, effectively, you can back it up now (so that you can
				re-flash it later if you want to run the original Apple EFI firmware again) or lose it forever. The macbook21 installation
				guide on the coreboot wiki will show you how to do this: 
				<a href="http://www.coreboot.org/Board:apple/macbook21">http://www.coreboot.org/Board:apple/macbook21</a>.<br/>
				Do not make this decision lightly! This is (very likely) your last and only chance.
			</p>

			<p>
				(this theory is untested at the time of writing)
			</p>

		</div>

		<p>
			<b>
				This is for the MacBook2,1 while running Apple EFI firmware. If you already have 
				coreboot or libreboot running, then go to <a href="#flashrom">#flashrom</a> instead!
			</b>
		</p>

		<p>
			Be sure to read the information in <a href="#macbook21">#macbook21</a>.
		</p>

		<p>
			If you need to recompile flashrom:<br/>
			<b>See: <a href="#build_flashrom">#build_flashrom</a></b>
		</p>
		<p>
			You also need the run-time dependencies. This script works on apt-get distros:<br/>
			<b>$ sudo ./builddeb-flashrom</b>
		</p>
		<p>
			Look at <a href="#rom">#rom</a> to see which ROM is suitable for your machine. Alternatively you may be using your own
			custom ROM. Adapt.
		</p>

		<p>
			Flashing is actually easy (compared to X60/T60).<br/>
			<b>$ sudo flashrom -p internal:laptop=force_I_want_a_brick -w bin/<a href="#rom">YOURBOARD/YOURROM</a></b>
		</p>

		<p>
			Alternatively, a script is provided which does the same thing:<br/>
			<b>$ sudo ./macbook21_firstflash bin/<a href="#rom">YOURBOARD/YOURROM</a></b>
		</p>

		<div class="important">

			<p>
				You should also see within the output the following:<br/>
				<b>&quot;Verifying flash... VERIFIED.&quot;</b>
			</p>

			<p>
				If you see that, great! Shut down now (power off). Wait a few seconds and then boot!
			</p>

		</div>

		<p><a href="#pagetop">Back to top of page.</a></p>

<hr/>

	<h1 id="flashrom">X60/X60S/X60T/T60/macbook21: How to flash the ROM's onto your machine (if running libreboot or coreboot already)</h1>

		<p>
			<b>
				These instructions work for the Lenovo ThinkPad X60/X60S/X60T/T60 and Apple MacBook2,1.
			</b>
		</p>
		<p>
			<b>
				This assumes that you already have coreboot or libreboot running.
			</b>
		</p>
		<p>
			<b>
				If you have Lenovo BIOS running (X60/X60S/X60T/T60), go to <a href="#flashrom_lenovobios">#flashrom_lenovobios</a> instead.
			</b>
		</p>
		<p>
			<b>
				If you have Apple EFI firmware running (macbook21), go to <a href="#flashrom_macbook21">#flashrom_macbook21</a> instead.
			</b>
		</p>
		<p>
			<b>
				If you are flashing a Lenovo ThinkPad T60, be sure to read <a href="#supported_t60_list">#supported_t60_list</a>.
			</b>
		</p>
		<p>
			<b>
				If you are flashing an Apple MacBook2,1, be sure to read the information in <a href="#macbook21">#macbook21</a>.
			</b>
		</p>
		<p>
			If you need to recompile flashrom:<br/>
			<b>See: <a href="#build_flashrom">#build_flashrom</a></b>
		</p>
		<p>
			You also need the run-time dependencies. This script works on apt-get distros:<br/>
			<b>$ sudo ./builddeb-flashrom</b>
		</p>
		<p>
			Look at <a href="#rom">#rom</a> to see which ROM is suitable for your machine. Alternative you may be using your own
			custom ROM. Adapt.
		</p>
		<p>
			Flash the ROM:<br/>
			<b>$ sudo ./flash bin/<a href="#rom">YOURBOARD/YOURROM</a></b>
		</p>

		<div class="important">

			<p>
				You should see <b>&quot;Verifying flash... VERIFIED.&quot;</b> written at the end of the flashrom output. <b>SHUT DOWN</b>
				after you see this, and then boot up again after a few seconds.
			</p>

			<p>
				<b>
					If you boot and you see nothing, try turning up the backlight (Fn+Home). 
					If this is a ThinkPad X60 and backlight resets to zero when turning it up while at max, look at <a href="#tft_brightness">#tft_brightness</a>.
				</b>
			</p>

			<p>
				<b>
					If this is a ThinkPad X60 then you can look at <a href="#x60_wifi">#x60_wifi</a> for how to enable/disable wifi.
					You can also look at <a href="#x60_trackpoint">#x60_trackpoint</a> for how to enable/disable the trackpoint (red mouse on keyboard).
				</b>
			</p>

		</div>

		<p><a href="#pagetop">Back to top of page</a></p>

<hr/>

	<h1 id="grub_font">Setting font in GRUB (for reference)</h1>

		<p>You don't need to do this unless you would like to change the default font yourself.
		(this is just for reference. It has already been done for you)</p>

		<p>The old font used was Unifont, and this had some missing characters: for instance, the border showed ??? characters instead of lines.</p>

		<p>I tried DeJavu Sans Mono from this website:
		<a href="http://dejavu-fonts.org/wiki/Download">dejavu-fonts.org</a></p>

		<p>Specifically, the version that I chose was the latest at the time of writing (Saturday 21 June 2014):
		<a href="http://sourceforge.net/projects/dejavu/files/dejavu/2.34/dejavu-fonts-ttf-2.34.tar.bz2">this one</a></p>

		<p>This is a free font that is also contained in GNU/Linux distributions like Trisquel or Parabola.</p>

		<p><b>$ cd libreboot_src/grub</b><br/>
		compile grub ('build' script has the info on how to do this)<br/>
		come back out into libreboot_src/resources/grub:<br/>
		<b>$ cd ../libreboot_src/resources/grub/font</b></p>

		<p>I took Dejavu Sans Mono from dejavu (included in this version of libreboot) and did:<br/>
		<b>$ ../../../grub/grub-mkfont -o dejavusansmono.pf2 ../../../dejavu-fonts-ttf-2.34/ttf/DejaVuSansMono.ttf</b></p>

		<p>I then added the instructions to 'build' script to include resources/grub/dejavusansmono.pf2 in all of the ROM's in root of cbfs.<br/>
		I then added that instructions to the grub.cfg files (to load the font):<br/>
		<b>loadfont (cbfsdisk)/dejavusansmono.pf2</b></p>

		<p><a href="#pagetop">Back to top of page</a></p>

<hr/>

	<h1 id="grub_keyboard">GRUB keyboard layouts (for reference)</h1>

		<h2 id="keyboards">Pictures of keyboard layouts</h2>

			<p>
				Taken from WikiPedia. 
				See <a href="https://en.wikipedia.org/wiki/Dvorak_Simplified_Keyboard">https://en.wikipedia.org/wiki/Dvorak_Simplified_Keyboard</a>,
				<a href="https://en.wikipedia.org/wiki/QWERTY">https://en.wikipedia.org/wiki/QWERTY</a>
				and <a href="https://en.wikipedia.org/wiki/AZERTY">https://en.wikipedia.org/wiki/AZERTY</a>.
			</p>

			<h3 id="keyboards_ukqwerty">QWERTY (United Kingdom)</h3>
				<p>
					<a href="https://upload.wikimedia.org/wikipedia/commons/thumb/d/da/KB_United_Kingdom.svg/900px-KB_United_Kingdom.svg.png">https://upload.wikimedia.org/wikipedia/commons/thumb/d/da/KB_United_Kingdom.svg/900px-KB_United_Kingdom.svg.png</a>
				</p>

			<h3 id="keyboards_usqwerty">QWERTY (United States)</h3>
				<p>
					<a href="https://upload.wikimedia.org/wikipedia/commons/thumb/5/51/KB_United_States-NoAltGr.svg/900px-KB_United_States-NoAltGr.svg.png">https://upload.wikimedia.org/wikipedia/commons/thumb/5/51/KB_United_States-NoAltGr.svg/900px-KB_United_States-NoAltGr.svg.png</a>
				</p>

			<h3 id="keyboards_ukdvorak">Dvorak (United Kingdom)</h3>
				<p>
					<a href="https://upload.wikimedia.org/wikipedia/commons/thumb/c/cc/KB_United_Kingdom_Dvorak.svg/900px-KB_United_Kingdom_Dvorak.svg.png">https://upload.wikimedia.org/wikipedia/commons/thumb/c/cc/KB_United_Kingdom_Dvorak.svg/900px-KB_United_Kingdom_Dvorak.svg.png</a>
				</p>

			<h3 id="keyboards_usdvorak">Dvorak (United States)</h3>
				<p>
					<a href="https://upload.wikimedia.org/wikipedia/commons/thumb/2/25/KB_United_States_Dvorak.svg/800px-KB_United_States_Dvorak.svg.png">https://upload.wikimedia.org/wikipedia/commons/thumb/2/25/KB_United_States_Dvorak.svg/800px-KB_United_States_Dvorak.svg.png</a>
				</p>

			<h3 id="keyboards_frazerty">AZERTY (French)</h3>
				<p>
					<a href="https://upload.wikimedia.org/wikipedia/commons/thumb/b/b9/KB_France.svg/800px-KB_France.svg.png">https://upload.wikimedia.org/wikipedia/commons/thumb/b/b9/KB_France.svg/800px-KB_France.svg.png</a>
				</p>
			<h3 id="keyboards_itqwerty">QWERTY (Italian)</h3>
				<p>
					<a href="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e5/Italian_Keyboard_layout.svg/799px-Italian_Keyboard_layout.svg.png">https://upload.wikimedia.org/wikipedia/commons/thumb/e/e5/Italian_Keyboard_layout.svg/799px-Italian_Keyboard_layout.svg.png</a>
				</p>

			<p><a href="#pagetop">Back to top of page</a></p>

		<h2 id="grub_custom_keyboard">Custom keyboard layout in GRUB (for reference)</h2>

			<p>
				Keymaps are stored in resources/grub/keymap/original (original files) and resources/grub/keymap (.gkb files).
			</p>

			<p>
				Example (French Azerty):<br/>
				<b>$ ckbcomp fr > frazerty</b><br/><br/>
				Go in grub directory:<br/>
				<b>cat frazerty | ./grub/grub-mklayout -o frazerty.gkb</b>
			</p>

			<p>
				You must make sure that the files are named keymap and keymap.gkb (where 'keymap' can be whatever you want).
			</p>

			<p>
				Then from the above example, you would put <b>frazerty</b> in <b>resources/grub/keymap/original/</b> and
				the <b>frazerty.gkb</b> file goes under <b>resources/grub/keymap/</b>
			</p>

			<p>
				The scripts <b>build</b> and <b>buildrom-withgrub</b> will automatically see this, and automatically build
				ROM's with your custom layout (given the name) and include them under bin. Example: <b>libreboot_frazerty.rom</b>.
			</p>

			<p><a href="#pagetop">Back to top of page</a></p>

		<h2 id="grub_qwerty_keyboard">US Qwerty keyboard layout in GRUB (for reference)</h2>

			<p>Generate the layout file:<br/>
			<b>$ ckbcomp us > usqwerty</b><br/>
			<b>$ cat usqwerty | ./grub/grub-mklayout -o usqwerty.gkb</b></p>

			<p><a href="#pagetop">Back to top of page</a></p>

		<h2 id="grub_ukqwerty_keyboard">UK Qwerty keyboard layout in GRUB (for reference)</h2>

			<p>Generate the layout file:<br/>
			<b>$ ckbcomp gb > ukqwerty</b><br/>
			<b>$ cat ukqwerty | ./grub/grub-mklayout -o ukqwerty.gkb</b></p>

			<p><a href="#pagetop">Back to top of page</a></p>

		<h2 id="grub_dvorak_keyboard">US Dvorak keyboard layout in GRUB (for reference)</h2>

			<p>Generate the layout file:<br/>
			<b>$ ckbcomp dvorak > usdvorak</b><br/>
			<b>$ cat usdvorak | ./grub/grub-mklayout -o usdvorak.gkb</b></p>

			<p><a href="#pagetop">Back to top of page</a></p>

		<h2 id="grub_ukdvorak_keyboard">UK Dvorak keyboard layout in GRUB (for reference)</h2>

			<p>
				ukdvorak had to be created manually, based on usdvorak. diff them (under resources/grub/keymap/original)
				to see how ukdvorak file was created
			</p>

			<b>$ cat ukdvorak | ./grub/grub-mklayout -o ukdvorak.gkb</b></p>

		<h2 id="grub_frazerty_keyboard">French AZERTY keyboard layout in GRUB (for reference)</h2>

			<p>Generate the layout file:<br/>
			<b>$ ckbcomp fr > frazerty</b><br/>
			<b>$ cat frazerty | ./grub/grub-mklayout -o frazerty.gkb</b></p>

		<h2 id="grub_itqwerty_keyboard">Italian QWERTY keyboard layout in GRUB (for reference)</h2>

			<p>Generate the layout file:<br/>
			<b>$ ckbcomp it > itqwerty</b><br/>
			<b>$ cat itqwerty | ./grub/grub-mklayout -o itqwerty.gkb</b></p>

		<p><a href="#pagetop">Back to top of page</a></p>

<hr/>

	<h1 id="tft_brightness">Brightness controls (ThinkPad X60) - how to prevent 'scrolling'</h1>
	<p>
		Sometimes, on some setups, when turning up the brightness while at max, it will loop back to minimum.
		Also, the minimum will turn the backlight off completely.
	</p>
	<p>
		Install build dependencies (for Trisquel 6. Adapt if your distro is different):<br/>
		<b>$ sudo apt-get install build-essential</b>
	</p>
	<p>
		Go into the libreboot_src directory. Under coreboot/util/nvramtool/ do that to compile it:<br/>
		<b>$ make</b>
	</p>
	<p>
		Now do that:<br/>
		<b>$ sudo ./nvramtool -w tft_brightness=0xff</b><br/>
		Alternatively if there are errors, try:<br/>
		<b>$ sudo ./nvramtool -y ../../src/mainboard/lenovo/x60/cmos.layout -w tft_brightness=0xff</b>
	</p>
	<p>
		The next time you boot, the looping issue should be gone.
	</p>

	<p><a href="#pagetop">Back to top of page</a></p>

<hr/>

	<h1 id="x60_wifi">ThinkPad X60: Enable or disable wifi</h1>
		<p>
			Install build dependencies in Trisquel 6 (adapt for other distro):<br/>
			<b>$ sudo apt-get install build-essential</b><br/>
			nvramtool is in coreboot or libreboot source tree until util/:<br/>
			<b>$ cd libreboot_src/coreboot/util/nvramtool</b><br/>
			<b>$ make</b><br/>
			Enable wifi:<br/>
			<b>$ sudo ./nvramtool -w wlan=Enable</b><br/>
			Disable wifi:<br/>
			<b>$ sudo ./nvramtool -w wlan=Disable</b><br/>
			If that doesn't work, try one of these instead:<br/>
			<b>$ sudo ./nvramtool -y ../../src/mainboard/lenovo/x60/cmos.layout -w wlan=Enable</b><br/>
			<b>$ sudo ./nvramtool -y ../../src/mainboard/lenovo/x60/cmos.layout -w wlan=Disable</b>
		</p>
		<p>The next time you boot, wifi will be enabled.</p>
		<p><a href="#pagetop">Back to top of page</a></p>

<hr/>

	<h1 id="x60_trackpoint">ThinkPad X60: Enable or disable trackpoint</h1>
		<p>
			Install build dependencies in Trisquel 6 (adapt for other distro):<br/>
			<b>$ sudo apt-get install build-essential</b><br/>
			nvramtool is in coreboot or libreboot source tree until util/:<br/>
			<b>$ cd libreboot_src/coreboot/util/nvramtool</b><br/>
			<b>$ make</b><br/>
			Enable wifi:<br/>
			<b>$ sudo ./nvramtool -w trackpoint=Enable</b><br/>
			Disable wifi:<br/>
			<b>$ sudo ./nvramtool -w trackpoint=Disable</b><br/>
			If that doesn't work, try one of these instead:<br/>
			<b>$ sudo ./nvramtool -y ../../src/mainboard/lenovo/x60/cmos.layout -w trackpoint=Enable</b><br/>
			<b>$ sudo ./nvramtool -y ../../src/mainboard/lenovo/x60/cmos.layout -w trackpoint=Disable</b>
		</p>
		<p>The next time you boot, trackpoint will be enabled.</p>
		<p><a href="#pagetop">Back to top of page</a></p>

<hr/>

	<h1 id="high_pitch_trisquel">High Pitched Whining Noise on Idle (how to remove in Trisquel)</h1>

		<h2 id="howtouse_powertop">Powertop - how to use</h2>

			<p>Now you can use this command to kill that noise:<br/>
			<b>$ sudo powertop --auto-tune</b></p>

			<p>You can also run it without parameters and then go into 'Tunables' and set everything to 'Good'</p>

			<p>Note: On Trisquel 6, you will need to use a later powertop version from git. The one in the repositories is too old. See below:</p>

		<h2 id="powertop_autostart">Powertop - Start automatically at boot time (Trisquel 6)</h2>

			<p>Included with libreboot is a script called 'powertop.trisquel6'. Run this and it will setup powertop to run with --auto-tune 
			at boot time. Load the file in your text editor to see how it does that.</p>

			<p><b>$ ./powertop.trisquel6</b></p>

			<p>This has been tested on Trisquel 6.</p>

		<p><a href="#pagetop">Back to top of page</a></p>

<hr/>

	<h1 id="high_pitch_parabola">High Pitched Whining Noise on Idle (how to remove in Parabola)</h1>

		<p>The following removes most of the noise. It reduces what is a high frequency whine
		(that not everyone can hear) to a slight buzz (which most people can't hear or doesn't bother most people).</p>

		<p>This is not perfect! The full solution is still not discovered but this is a step towards that.
		Also, in some instances you will need to run 'sudo powertop --auto-tune' again.
		This needs to be implemented properly in coreboot itself!</p>

		<p>On the X60 with coreboot or libreboot, there is a high pitched sound when idle.
		So far we have use processor.max_cstate=2 or idle=halt in GRUB.
		These consume power. Stop using them! </p>

		<p>Be root<br/>
		<b>$ su -</b></p>

		<p>Installed powertop:<br/>
		<b># pacman -S powertop</b></p>

		<p>and added the following to /etc/systemd/system/powertop.service :</p>

<pre><i>
[Unit]
Description=Powertop tunings

[Service]
Type=oneshot
RemainAfterExit=no
ExecStart=/usr/bin/powertop --auto-tune
# "powertop --auto-tune" still needs a terminal for some reason. Possibly a bug?
Environment="TERM=xterm"

[Install]
WantedBy=multi-user.target
</i></pre>


		<p>Finally, as root do that:<br/>
		<b># systemctl enable powertop</b><br/>
		<b># systemctl start powertop</b></p>

		<p>The next time you boot the machine, the buzz will be gone.</p>

		<p><a href="#pagetop">Back to top of page</a></p>

<hr/>

	<h1 id="serial">X60/T60: Serial port - how to use (for dock owners)</h1>
		<p>
			For the Thinkpad X60 you can use the <b>&quot;UltraBase X6&quot;</b> dock. For the ThinkPad T60, 
			you can use the <b>&quot;Advanced Mini Dock&quot;</b>.
		</p>
		<p>
			If you are using one of the ROM's with 'serial' in the name, then you have serial port enabled in libreboot
			and you have memtest86+ included inside the ROM. Connect your null modem cable to the serial port on the dock
			and connect the other end to a 2nd machine using your USB Serial adapter.
		</p>
		<p>
			On the 2nd machine, you can try this (using GNU Screen):<br/>
			<b>$ sudo screen /dev/ttyUSB0 115200</b>
		</p>
		<p>
			How to quit GNU Screen: Ctrl+A then release and press K, and then press Y.
		</p>
		<p>There are also others like Minicom but I like GNU Screen</p>
		<p>
			By doing this before booting the X60/T60, you will see console output from libreboot. You will also see
			GRUB displaying on the serial output, and you will be able to see MemTest86+ on the serial output aswell.
			You can also configure your distro so that a terminal (TTY) is accessible from the serial console.
		</p>
		<p>
			The following guide is for Ubuntu, and can be followed for Trisquel 6.0 which is based on Ubuntu 12.04
			(should also work in Trisquel 7, based on Ubuntu 14.04) to enable a serial console using GeTTY:<br/>
			<a href="https://help.ubuntu.com/community/SerialConsoleHowto" target="_blank">https://help.ubuntu.com/community/SerialConsoleHowto</a>
		</p>
		<p>
			Note: part of the tutorial above requires changing your grub.cfg. Just change the <b>linux</b> line to add instructions for enabling getty.
			See <a href="howtos/grub_cbfs.html">howtos/grub_cbfs.html</a>.
		</p>
		<p><a href="#pagetop">Back to top of page</a>

<hr/>

	<h1 id="get_edid_panelname">Get EDID: Find out the name (model) of your LCD panel</h1>
		<p>
			Get the panel name with <b>sudo get-edit | strings</b><br/>
			Or look in <b>/sys/class/drm/card0-LVDS-1/edid</b>
		</p>
		<p>
			If neither of these options work (or they are unavailable), physically removing the LCD panel is an option. 
			Usually, there will be information printed on the back.
		</p>

		<p><a href="#pagetop">Back to top of page.</a></p>

<hr/>

<pre>
	Unlisted note: http://inertiawar.com/microcode/
	Read that thread: http://www.coreboot.org/pipermail/coreboot/2014-July/078261.html
	(link published to coreboot mailing list on July 8, 2014)
	Document everything listed in this discussion (and the link)

	SeaVGABIOS+SeaBIOS support for X60/T60:
	Read that: http://www.coreboot.org/pipermail/coreboot/2014-July/078342.html

	This page talks about 'calibration' in powertop:
	https://docs.fedoraproject.org/en-US/Fedora/15/html/Power_Management_Guide/PowerTOP.html
	I should think about adapting information here based on that page.

	Look into 'git archive' instead of deleting .git
	eg (coreboot directory):
	git archive --format=tar --prefix=libreboot/ -o ../libreboot_release.tar HEAD
</pre>

<hr/>

	<p>
		Copyright &copy; 2014 Francis Rowe, All Rights Reserved.<br/>
		See <a href="license.html">license.html</a> for license conditions.
	</p>

</body>
</html>