summaryrefslogtreecommitdiffstats
path: root/docs/archive_old.html
blob: 6f7d7d8115f5ee4ef4cd244e5833a2da71f453ea (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
<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">

	<style type="text/css">
		@import url('css/main.css');
	</style>

	<title>Libreboot release information (old)</title>
</head>
<body>
	
	<div class="section">
		
		<h1 id="pagetop">Libreboot release information (old)</h1>
			<p>
				Information for this release can be found at <a href="release.html">release.html</a>.
				Updated versions of libreboot can be found at <a href="http://libreboot.org/">libreboot.org</a>.
			</p>
			
			<div class="important">
				<p>
					<b>This page is *obsolete*, provided for historical purposes.</b>
				</p>
			</div>
			
	</div>
	
	<div class="section">

		<h2>Releases</h2>
			<ul>
				<li><a href="#release20150518">r20150518 (18th May 2015)</a></li>
				<li><a href="#release20150124">r20150124 (24th January 2015), r20150126 (26th January 2015), r20150208 (8th February 2015)</a></li>
				<li><a href="#release20141015">r20141015 (15th October 2014)</a></li>
				<li><a href="#release20140911">r20140911 (6th release)</a> (11th September 2014 <b>pre-release, 7th beta</b>)</li>
				<li><a href="#release20140622">r20140622 (5th release)</a> (7th March 2014, revised 22nd June 2014)</li>
				<li><a href="#release20140221">r20140221 (4th release)</a> (21st February 2014)</li>
				<li><a href="#release20131214">r20131214 (3rd release)</a> (14th December 2013)</li>
				<li><a href="#release20131213">r20131213 (2nd release)</a> (13th December 2013)</li>
				<li><a href="#release20131212">r20131212 (1st release)</a> (12th December 2013)</li>
			</ul>
			
	</div>

	<div class="section">

		<h1 id="release20150518">Release 20150518</h1>
		
			<p>
				Release date: 18th May 2015.
			</p>

				<p>
					Installation instructions can be found at <b><i>docs/install/index.html</i></b>. 
					Building instructions (for source code) can be found at <b><i>docs/git/index.html#build</i></b>.
				</p>

			<h2>Machines supported in this release:</h2>
				<ul>
					<li>
						<b>ThinkPad X60/X60s</b>
						<ul>
							<li>
								You can also remove the motherboard from an X61/X61s and replace it with an X60/X60s motherboard.
								An X60 Tablet motherboard will also fit inside an X60/X60s. 
							</li>
						</ul>
					</li>
					<li>
						<b>ThinkPad X60 Tablet</b> (1024x768 and 1400x1050) with digitizer support
						<ul>
							<li>See <b><i>docs/hcl/index.html#supported_x60t_list</i></b> for list of supported LCD panels</li>
							<li>It is unknown whether an X61 Tablet can have it's mainboard replaced with an X60 Tablet motherboard.</li>
						</ul>
					</li>
					<li>
						<b>ThinkPad T60</b> (Intel GPU) (there are issues; see below):
						<ul>
							<li>See notes below for exceptions, and <b><i>docs/hcl/index.html#supported_t60_list</i></b> for known working LCD panels.</li>
							<li>It is unknown whether a T61 can have it's mainboard replaced with a T60 motherboard.</li>
							<li>See <b><i>docs/future/index.html#t60_cpu_microcode</i></b>.</li>
							<li>T60P (and T60 laptops with ATI GPU) will likely never be supported: <b><i>docs/hcl/index.html#t60_ati_intel</i></b></li>
						</ul>
					</li>
					<li>
						<b>ThinkPad X200</b>
						<ul>
							<li>X200S and X200 Tablet are also supported, conditionally; see <b><i>docs/hcl/x200.html#x200s</i></b></li>
							<li><b>ME/AMT</b>: libreboot removes this, permanently. <b><i>docs/hcl/gm45_remove_me.html</i></b></li>
						</ul>
					</li>
					<li>
						<b>ThinkPad R400</b>
						<ul>
							<li>See <b><i>docs/hcl/r400.html</i></b></li>
							<li><b>ME/AMT</b>: libreboot removes this, permanently. <b><i>docs/hcl/gm45_remove_me.html</i></b></li>
						</ul>
					</li>
					<li>
						<b>ThinkPad T400</b>
						<ul>
							<li>See <b><i>docs/hcl/t400.html</i></b></li>
							<li><b>ME/AMT</b>: libreboot removes this, permanently. <b><i>docs/hcl/gm45_remove_me.html</i></b></li>
						</ul>
					</li>
					<li>
						<b>ThinkPad T500</b>
						<ul>
							<li>See <b><i>docs/hcl/t500.html</i></b></li>
							<li><b>ME/AMT</b>: libreboot removes this, permanently. <b><i>docs/hcl/gm45_remove_me.html</i></b></li>
						</ul>
					</li>
					<li>
						<b>Apple MacBook1,1</b> (MA255LL/A, MA254LL/A, MA472LL/A)
						<ul>
							<li>See <b><i>docs/hcl/index.html#macbook11</i></b>.</li>
						</ul>
					</li>
					<li>
						<b>Apple MacBook2,1</b> (MA699LL/A, MA701LL/A, MB061LL/A, MA700LL/A, MB063LL/A, MB062LL/A)
						<ul>
							<li>See <b><i>docs/hcl/index.html#macbook21</i></b>.</li>
						</ul>
					</li>
				</ul>

			<h2>
				Changes for this release, relative to r20150208 (earliest changes last, recent changes first)
			</h2>
				<ul>
					<li>Add a whitelist entry to board_enable.c in flashrom, for the ThinkPad R400, T400 and T500</li>
					<li>
						Updated flashrom (to SVN revision 1889)
						<ul>
							<li>X200 whitelist patch removed (merged upstream)</li>
							<li>X200 whitelist modified to include X200S and X200 Tablet</li>
						</ul>
					</li>
					<li>libreboot_util: don't include cmos layout files (not needed anymore)</li>
					<li><b>coreboot-libre: backport patches for X200 Tablet digitizer support</b></li>
					<li>build/release/archives: create SHA512 sum manifest file of the release archives</li>
					<li>build/release/archives: separate crossgcc into a new archive</li>
					<li>disabled generation of txtmode ROM images for now (they will be back again in the next release)</li>
					<li>coreboot-libre: delete unused code (reduce size of src archive)</li>
					<li>Flashing guides: make them more friendly to colourblind people</li>
					<li>
						docs/gnulinux/encrypted_*.html: Remove mention of password length
						- it was arbitrary and pointless.
					</li>
					<li>docs/maintain/index.html: Finish the guide</li>
					<li>
						scripts/download/coreboot: use diffs included in libreboot, not external gerrit cherry-picks
						- review.coreboot.org (gerrit) being down no longer kills
						libreboot (backup mirrors of the master repository exist)
					</li>
					<li>docs/install/bbb_setup.html: Add info about wp/hold and pinouts</li>
					<li>docs/index.html: improve the description of libreboot</li>
					<li>docs/hcl/gm45_remove_me.html: notes about the demefactory utility</li>
					<li>docs/install/bbb_setup.html: EHCI debug: recommend linux-libre</li>
					<li>docs/install/bbb_setup.html: EHCI Debug logging setup guide</li>
					<li>docs/hcl/t500.html: Add screen compatibility report (TODO: fix incompatible screens)</li>
					<li>
						Update coreboot(again) + merge GM45 hybrid GPU patches
						- means that T400/T500 with the ATI+Intel hybrid GPU setup
						will work (ATI disabled, Intel permanently enabled).
						power_on_after_fail nvram option added to all GM45 boards,
						defaulting to No, so that plugging it AC doesn't boot up
						the system against the users will. Net20DC is now the default
						debug dongle on all boards (compatible with BBB).
					</li>
					<li>demefactory (new utility): create GM45 factory.rom without the ME</li>
					<li>ich9deblob: re-factor descriptor.c functions</li>
					<li>docs/hcl/t500.html: add hardware logs</li>
					<li>docs/gnulinux/encrypted_*.html: No password for default entry</li>
					<li>docs/git/index.html: Add more details about BUC.TS</li>
					<li>grub.cfg: Also scan for grub2/grub.cfg, not just grub/grub.cfg</li>
					<li>docs/maintain/ (new section. WIP!): Maintaining libreboot</li>
					<li>docs/gnulinux/grub_boot_installer.html: Fix hazardous instruction</li>
					<li>docs/tasks.html: Better categorization between intel/amd/arm</li>
					<li>docs/install/bbb_setup.html: notes about SPI flashing stability</li>
					<li>docs/install/bbb_setup.html: more names for the 0.1&quot; cables</li>
					<li>docs/install/*_external.html: add disclaimer about thermal paste</li>
					<li>docs/install/bbb_setup.html: Fix broken links</li>
					<li>docs/install/bbb_setup.html: preliminary notes about EHCI debug</li>
					<li>docs/hcl/gm45_remove_me.html: Link to websites talking about the ME</li>
					<li>docs/install/{t400,t500,r400}_external.html: Notes about CPU compatibility</li>
					<li>Delete the ich9macchange script. It's useless, and confuses people</li>
					<li>docs/hcl/gm45_remove_me.html: prioritize ich9gen executable path</li>
					<li>docs/hcl/gm45_remove_me.html: prioritize changing mac address</li>
					<li>docs/hcl/gm45_remove_me.html: less confusing notes about ich9gen</li>
					<li>build/dependencies/parabola: Add dependencies for x86_64</li>
					<li>Move parabola/trisquel dependency scripts to scripts/helpers/build</li>
					<li>scripts/dependencies/paraboladependencies: build dependencies (32-bit Parabola)</li>
					<li><b>New board</b>: ThinkPad T500</li>
					<li>Add diffs for descriptor/gbe differences between T500 and X200</li>
					<li>coreboot-libre: provide better blob categorization</li>
					<li>docs/hcl/gm45_remove_me.html: add notes about flash write protect</li>
					<li><b>New board</b>: ThinkPad T400</li>
					<li>GRUB: add partial vesamenu.c32 support (fixes tails ISOLINUX menu)</li>
					<li>Update GRUB (to revision fa07d919d1ff868b18d8a42276d094b63a58e299)</li>
					<li>
						Update coreboot (to revision 83b05eb0a85d7b7ac0837cece67afabbdb46ea65)
						<ul>
							<li>
								Intel CPU microcode (most of it) no longer deleted,
								because it was deleted upstream (moved to a 3rd
								party repository).
							</li>
							<li>MacBook2,1 cstate patch is no longer cherry picked (merged upstream)</li>
							<li>Patch to disable use of timestamps in coreboot no longer included (merged upstream)</li>
						</ul>
					</li>
					<li>coreboot-libre: don't list vortex86ex kbd firmware as microcode (list it separately)</li>
					<li>coreboot-libre: don't rm */early_setup_ss.h (these are not blobs)</li>
					<li>coreboot-libre: add GPLv3 license to the findblobs script</li>
					<li>coreboot-libreboot: don't rm raminit_tables (nahelem/sandybridge) (they are not blobs)</li>
					<li>coreboot-libre: don't delete the .spd.hex files (they are not blobs)</li>
					<li>build/release/archives: don't put rmodtool in libreboot_util</li>
					<li>docs/install/x200_external.html: recommend installing GNU/Linux at the end</li>
					<li>docs/install/x200_external.html: add more photos, improve instructions</li>
					<li>build/clean/grub: use distclean instead of clean</li>
					<li>grub-assemble: Add the <i>bsd</i> and <i>part_bsd</i> modules</li>
					<li>build/roms/withgrub: Only run ich9gen if gm45/gs45 images exist</li>
					<li>docs/git/index.html: Add notes about building for specific boards</li>
					<li>build/roms/withgrub: Allow building for a custom range of boards</li>
					<li>grub-assemble: Disable verbose output</li>
					<li>Add documentation on how to unlock root encrypted fs with key in initramfs in Parabola Linux</li>
					<li>docs/gnulinux/grub_cbfs.html: Improve structure (easier to use)</li>
					<li>grub.cfg: Disable the beep on startup</li>
					<li>docs/install/bbb_setup.html: Make the guide easier to use</li>
					<li>docs/gnulinux/grub_cbfs.html: Remove redundant instructions</li>
					<li>docs/install/x200_external.html: Mark pins in the images</li>
					<li>docs/install/bbb_setup.html: Replace 3.3V PSU photo with ATX PSU</li>
					<li>docs/hcl/x200.html: Add dumps from 4-MiB X200 with Lenovo BIOS 3.22</li>
					<li>docs/hcl/x200.html: Add dumps from 4-MiB X200 with Lenovo BIOS 3.18</li>
					<li>grub.cfg: add syslinux_configfile menuentry for ahci0</li>
					<li>grub.cfg: Add more paths for syslinux_configfile</li>
					<li>docs/future.html: T60: Add EDID dump from LG-Philips LP150E05-A2K1</li>
					<li>docs/install/bbb_setup.html: Further clarify which clip is needed</li>
					<li>bash scripts: Make script output more user-friendly in general</li>
					<li>bash scripts: Only enable verbose output if DEBUG= is used</li>
					<li>
						build: Support multiple extra options
						- now possible to build multiple images for arbitrary
						boards (configs), but without building the entire
						collection.
					</li>
					<li>
						Deleted the signing archive key
						- the finger print and ID is given instead, so that
						the user can download it from a key server
					</li>
					<li>
						scripts/helpers/build/release: Move docs to separate archive
						- reduces the size of the other archives considerably
					</li>
					<li>Move DEBLOB to resources/utilities/coreboot-libre/deblob</li>
					<li>
						scripts/helpers/build/release: Delete DEBLOB from libreboot_src/
						- not needed in libreboot_src (release archive) because it
						contains a coreboot revision that has already been deblobbed.
					</li>
					<li>flash (script): Use <i>build</i> instead of <i>DEBLOB</i> to know if in src</li>
					<li>docs/install/r400_external.html: Show images, don't link.</li>
					<li>docs/install/x200_external.html: Show images, don't link.</li>
					<li>docs/install/bbb_setup.html: Show images, instead of linking</li>
					<li>Documentation: optimize all images (reduce file sizes)</li>
					<li>
						Remove download links from the release page (and the archive page)
						- release archives are hosted differently following this release,
						which means that the old methods are no longer viable.
					</li>
					<li>Moved ich9macchange to resources/scripts/misc/ich9macchange</li>
					<li>
						ich9macchange: assume that the script is being run from _util
						(act only on one ROM image, defined by a user-provided path)
					</li>
					<li>Move grub-background to resources/scripts/misc/grub-background</li>
					<li>grub-background: assume that it is being run from libreboot_util</li>
					<li>grub-background: change only one ROM image, specified by path</li>
					<li>build (release archives): Add the commitid file to release/</li>
					<li>build-release: Move the release archives to release/</li>
					<li>
						Merge all build scripts into a single generic script,
						with helpers in resources/scripts/helpers/build/
					</li>
					<li>
						Replace <i>getall</i> with <i>download</i>, which takes as input an argument
						specifying which program the user wants to download.
					</li>
					<li>Moved the get scripts to resources/scripts/helpers/download/</li>
					<li>build-release: Remove the powertop entries</li>
					<li>Moved powertop.trisquel7 to resources/scripts/misc/</li>
					<li>Deleted the powertop.trisquel6 script (Trisquel 6 is obsolete)</li>
					<li>Documentation: general improvements to the flashing instructions</li>
					<li>Merged all flashing scripts into a single script</li>
					<li>Updated GRUB</li>
					<li>bucts: Make it build without git</li>
					<li>Moved dejavu-fonts-ttf-2.34/AUTHORS to resources/grub/font/</li>
					<li>Deleted GRUB Invaders from libreboot</li>
					<li>Deleted SeaBIOS from libreboot</li>
					<li>build-release: optimize use of tar (reduced file sizes)</li>
					<li>grub.cfg: add another SYSLINUX config location (/syslinux/syslinux.cfg)</li>
					<li>build-release: remove the bin/ directory from libreboot_util</li>
					<li>cleandeps: delete the bin/ directory</li>
					<li>buildrom-withgrub: create the bin directory if it does not exist</li>
					<li>coreboot-libre: don't use git for version timestamp</li>
					<li>i945-pwm: add clean command to Makefile</li>
					<li>i945-pwm: add -lz to Makefile</li>
					<li>docs/install/x200_external: Mention GPIO33 non-descriptor mode</li>
					<li>docs/hcl/index.html: Remove redundant links</li>
					<li>ich9macchange: Add R400</li>
					<li>build-release: Separate ROM images into individual archives</li>
					<li>build-release: rename libreboot_bin to libreboot_util</li>
					<li><b>New board:</b> ThinkPad R400 support added to libreboot.</li>
					<li>bbb_setup.html: tell user to use libreboot's own flashrom</li>
				</ul>
				
	</div>
	
	<div class="section">

		<h1 id="release20150124">Release 20150124, 20150126 and 20150208</h1>
		
			<p>
				Release date: 24th January 2015.
			</p>

			<h2>Machines supported in this release:</h2>
				<ul>
					<li>
						<b>Lenovo ThinkPad X60/X60s</b>
						<ul>
							<li>
								You can also remove the motherboard from an X61/X61s and replace it with an X60/X60s motherboard.
								An X60 Tablet motherboard will also fit inside an X60/X60s. 
							</li>
						</ul>
					</li>
					<li>
						<b>Lenovo ThinkPad X60 Tablet</b> (1024x768 and 1400x1050) with digitizer support
						<ul>
							<li>See <b>hcl/index.html#supported_x60t_list</b> for list of supported LCD panels</li>
							<li>It is unknown whether an X61 Tablet can have it's mainboard replaced with an X60 Tablet motherboard.</li>
						</ul>
					</li>
					<li>
						<b>Lenovo ThinkPad T60</b> (Intel GPU) (there are issuesinstall/x200_external.html; see below):
						<ul>
							<li>See notes below for exceptions, and <b>hcl/index.html#supported_t60_list</b> for known working LCD panels.</li>
							<li>It is unknown whether a T61 can have it's mainboard replaced with a T60 motherboard.</li>
							<li>See <b>future/index.html#t60_cpu_microcode</b>.</li>
							<li>T60P (and T60 laptops with ATI GPU) will likely never be supported: <b>hcl/index.html#t60_ati_intel</b></li>
						</ul>
					</li>
					<li>
						<b>Lenovo ThinkPad X200</b>
						<ul>
							<li>X200S and X200 Tablet are also supported, conditionally; see <b>hcl/x200.html#x200s</b></li>
							<li><b>ME/AMT</b>: libreboot removes this, permanently. <b>hcl/gm45_remove_me.html</b></li>
						</ul>
					</li>
					<li>
						<b>Lenovo ThinkPad R400</b> (r20150208 and later, only)
						<ul>
							<li><b>ME/AMT</b>: libreboot removes this, permanently. <b>hcl/gm45_remove_me.html</b></li>
						</ul>
					</li>
					<li>
						<b>Apple MacBook1,1</b> (MA255LL/A, MA254LL/A, MA472LL/A)
						<ul>
							<li>See <b>hcl/index.html#macbook11</b>.</li>
						</ul>
					</li>
					<li>
						<b>Apple MacBook2,1</b> (MA699LL/A, MA701LL/A, MB061LL/A, MA700LL/A, MB063LL/A, MB062LL/A)
						<ul>
							<li>See <b>hcl/index.html#macbook21</b>.</li>
						</ul>
					</li>
				</ul>

			<h2>
				Revisions for r20150208 (relative to r20150126)
			</h2>
				<p>
					This is a maintenance release (polishing) based on r20150126. Users who installed r20150126
					don't really need to update to this release.
				</p>
				<ul>
					<li>buildrom-withgrub: use gnulove.jpg background on 16:10 laptops (MacBook2,1 and X200)</li>
					<li>build-release: include grub-background script in libreboot_bin</li>
					<li>grub-background (new): lets user change GRUB background image</li>
					<li>grub-assemble: Add link to original utility.</li>
					<li>buildrom-withgrub: Put background.jpg in CBFS, not GRUB memdisk</li>
					<li>grub-assemble: merge scripts into a single script gen.sh</li>
					<li>Documentation: implement theme, drastically improve readability</li>
					<li>docs/hcl/index.html: update list of compatible T60 LCD panels</li>
					<li>docs/index.html: more clarification of libreboot's stated purpose.</li>
					<li>build-release: include the commitid file in the release archives</li>
					<li>docs/index.html: Further emphasize the GNU/Linux requirement.</li>
					<li>lenovobios_firstflash: fix BASH errors</li>
					<li>lenovobios_secondflash: fix BASH errors</li>
					<li>docs/install/x200_external.html: Tell user to switch MAC address.</li>
					<li>docs/git/index.html: Add to the list of x86_64 compatible hosts.</li>
					<li>docs/install/index.html: Remove old (obsolete) information.</li>
					<li>docs/git/index.html: Say that the build dependencies are for src (and not nedeed for libreboot_bin)</li>
					<li>build: re-factor the descriptor/gbe generating loop for GM45/ICH9M</li>
					<li>X60, X60S and X60 Tablet now the same ROM images.</li>
					<li>Add QEMU (q35/ich9) support to libreboot.</li>
					<li>Add QEMU (i440fx/piix4) support to libreboot</li>
					<li>docs/index.html: Re-write the description of what libreboot is.</li>
					<li>docs/release.html: Add notes about how to use GPG.</li>
					<li>build-release: delete the commitid file from release archives</li>
					<li>build-release: create file named commitid after build-release</li>
				</ul>
			<h2>
				Revisions for r20150126 (relative to r20150124)
			</h2>
				<p>
					This is a bug fix release based on r20150124. It contains a few small changes:
				</p>
				<ul>
					<li>grub.cfg: hardcode the list of partitions to search (speeds up booting considerably. GRUB regexp isn't very well optimized)</li>
					<li>Docs (x200.html hcl): Remove incorrect information</li>
					<li>Documentation (bbb_setup.html): Fix typos</li>
					<li>
						build-release: delete ich9fdgbe_{4m,8m}.bin files from ich9gen
						<ul>
							<li>
								These were accidentically included in the r20150124 release. They
								are generated from ich9gen so it's ok, but they don't need to be
								in the archive.
							</li>
						</ul>
					</li>
					<li>Documentation (grub_cbfs.html): Looping in libreboot_grub.cfg (Add notes about it if the user copied from grub.cfg in CBFS.)</li>
					<li>Documentation: refer to Guix as GNU Guix System Distribution or GNU GSD per advice from the Guix project.</li>
				</ul>
			<h2>
				Changes for this release (latest changes first, earliest changes last)
			</h2>
				<ul>
					<li>Documentation: added information about how to boot Guix GNU/Linux.</li>
					<li>grub.cfg: Added (usb0) and (usb0,*) to the list of devices in the <i>Search for GRUB</i> menuentry (this is needed for Guix GNU/Linux)</li>
					<li>grub.cfg: Added (ahci1) to list of devices for ISOLINUX parser (CD/DVD) (this is needed for the X200 docking station).</li>
					<li>grub.cfg: ISOLINUX parsing is now done on all USB partitions.</li>
					<li>grub.cfg: Automatically switched to /boot/grub/libreboot_grub.cfg on a partition, if it exists.</li>
					<li>libreboot_bin: added static ARM binaries for flashrom, cbfstool, ich9gen and 
					ich9deblob (tested on beaglebone black).</li>
					<li>Flashrom: removed redundant Macronix flashchip definitions (for X200 owners).</li>
					<li>Flashrom: added whitelist for ThinkPad X200.</li>
					<li>X200: fixed uneven backlight (at low levels)</li>
					<li>ich9macchange (new script, uses ich9gen): for changing the default MAC address on X200 ROM images.</li>
					<li>ich9gen: added capability to change the default MAC address (and update the checksum)</li>
					<li>ich9deblob: added new utility ich9gen: this can generate a descriptor+gbe image without a factory.rom dump present.</li>
					<li>Modified ich9deblob to use a struct for Gbe, documenting everything.</li>
					<li>Massively updated the ich9deblob utility: re-factored everything completely.</li>
					<li>Enabled cstates 1 and 2 on macbook21. This reduces idle heat / power consumption.</li>
					<li>buildrom-withgrub: disabled creation of *txtmode*.rom for X200 (only framebuffer graphics work)</li>
					<li>Updated SeaBIOS (again)</li>
					<li>docs/install/index.html#flashrom_x200: improve instructions</li>
					<li>Updated flashrom (again) - patches updated</li>
					<li>Updated GRUB (again)</li>
					<li>Updated coreboot (again)</li>
					<li>build-release: not all files were copied to libreboot_src. fix that.</li>
					<li>build-release: include cbmem (statically compiled) in libreboot_bin</li>
					<li>Documentation (X200): added software-based flashing instructions</li>
					<li>Documentation: remove all references to the bus pirate (replaced with BBB flashing tutorials)</li>
					<li><b>New board:</b> ThinkPad X200S and X200 Tablet support added to libreboot</li>
					<li>build: automatically find board names (configs) to build for</li>
					<li><b>New board:</b> ThinkPad X200 support added to libreboot</li>
					<li>coreboot-libre config (all boards): enable USB dongle log output (for BeagleBone Black)</li>
					<li>cleandeps: actually clean grubinvaders</li>
					<li>.gitignore: add powertop directory</li>
					<li>cleandeps: clean i945-pwm utility</li>
					<li>scripts (all): fix typos</li>
					<li>Documentation: general cleanup.</li>
					<li>builddeps-flashrom: reduce build commands to a single for loop</li>
					<li>scripts (all): replace unnecessary rm -Rf with rm -f</li>
					<li>powertop.trisquel7: remove sudo (script already checks if the user is root)</li>
					<li>docs/release.html: add lenovo g505s to the list of candidates</li>
					<li>.gitignore: add libreboot_bin.tar.xz and libreboot_src.tar.xz</li>
					<li>
						libreboot_bin.tar.xz: Include utils as statically linked binaries
						<ul>
							<li>This means that the user does not have to install build dependency
							or build from source anymore.</li>
						</ul>
					</li>
					<li>deps-trisquel: Add binutils-source</li>
					<li>powertop.trisquel7 (new): Setup powertop on trisquel 7</li>
					<li>deps-trisquel,flash,lenovobios_firstflash,lenovobios_secondflash,macbook21_firstflash
					x60flashfrom5,powertop.trisquel6: check if user is root</li>
					<li>deps-trisquel: Make GRUB build on in Trisquel 7 x86_64. (cross compile dependencies. fixes build error in GRUB)</li>
					<li>deps-parabola (removed) Remove Parabola dependencies script. Will re-add later (properly tested)</li>
					<li>grub.cfg: Add more path checks to isolinux parser (more ISOs should work now)</li>
					<li>Update SeaBIOS</li>
					<li>x60flashfrom5 (new), for X60 users upgrading from 5th/early release</li>
					<li>Update flashrom</li>
					<li>Update GRUB</li>
					<li>
						Updated coreboot-libre
						<ul>
							<li>i945: permanently set tft_brightness to 0xff (fixes bug on X60 where
							turning up brightness at max would make it loop back to low brightness)</li>
						</ul>
					</li>
					<li>
						getcb: Revert X60/T60 to legacy backlight controls
						<ul>
							<li>The ACPI brightness patches were abandoned and obsolete.</li>
						</ul>
					</li>
					<li>grub.cfg: Only load initrd.img if it exists. Add rw to linux line (for ProteanOS)</li>
					<li>build: Only generate the GRUB configurations once (re-use on all images)</li>
					<li>Only build 2 GRUB payload executables, re-use on all boards.</li>
					<li>
						resources/utilities/grub-assemble/gen.txtmode.sh: Use GNU BASH<br/>
						resources/utilities/grub-assemble/gen.vesafb.sh: Use GNU BASH
					</li>
					<li>scripts (error handling): Replace exit with exit 1 (make debugging easier)</li>
					<li>
						Move most files in CBFS to GRUB memdisk, except grub.cfg and grubtest.cfg
						<ul>
							This reduces the space used in CBFS because coreboot compresses
							its payloads with LZMA by default. grub.cfg is all that most users
							will want to modify, which remains in CBFS.
						</ul>
					</li>
					<li>docs/release.html Add DMP vortex86ex to list of candidates.</li>
					<li>docs/release.html Add ThinkPad X201 to list of candidates.</li>
					<li>New links added to docs/security/x60_security and docs/security/t60_security</li>
					<li>lenovobios_secondflash: Warn if BUCTS is not present. (not a dealbreaker. Can just pull out nvram battery/coin).</li>
					<li>lenovobios_firstflash: Fail if BUCTS fails. (anti-bricking precaution)</li>
					<li>Removed obnoxious warnings from flashing scripts, improved documentation instead.</li>
					<li>scripts (all): add proper error checking (fail fast, fail early. Do not continue if there are errors)</li>
					<li>buildrom-withgrub: rename image to boardname_layout_romtype.rom</li>
					<li>buildrom-withgrub: don't move cbfstool, execute directly</li>
					<li>resources/utilities/grub-assemble: add French Dvorak (BEPO) keyboard layout.</li>
					<li>Documentation: add docs/hardware/x60_keyboard.html (show how to replace keyboard on X60/X60T)</li>
					<li>Documentation: major cleanup (better structure, easier to find things)</li>
					<li>
						docs/release.html: Remove Acer CB5 from list of future candidates.
						<ul>
							<li>
								Too many issues. Chromebooks are crippled (soldered RAM/storage/wifi)
								and have too many usability issues for the libreboot project.
							</li>
						</ul>
					</li>
					<li>docs/gnulinux/grub_cbfs.html Major cleanup. Usability improvements.</li>
					<li>hocs/gnulinux/encrypted_trisquel.html: Fixed mistakes/typos. General improvements</li>
					<li>
						flash (flashrom script): remove boardmismatch=force
						<ul>
							<li>
								 This was put there before for users upgrading from libreboot r5
								 to r6, but also allows the user to flash the wrong image. For
								 example, the user could flash a T60 image on an X60, thus
								 bricking the system. It's almost certain that most people
								 have upgraded by now, so remove this potentially dangerous
								 option.
							</li>
						</ul>
					</li>
					<li>Documentation: update compatibility list for X60T LCD panels.</li>
					<li>docs/release.html: add note about X60 Tablet board in X60/X60s</li>
					<li>docs/howtos/grub_boot_installer.html: small corrections</li>
					<li>docs/howtos/grub_boot_installer.html: improved readability, fixed html errors</li>
					<li>Documentation (macbook21 related): clean up</li>
				</ul>
				
	</div>

	<div class="section">

		<h1 id="release20141015">Release 20141015</h1>

			<h2>Machines supported in this release:</h2>
				<ul>
					<li>
						<b>Lenovo ThinkPad X60/X60s</b>
						<ul>
							<li>
								You can also remove the motherboard from an X61/X61s and replace it with an X60/X60s motherboard.
								An X60 Tablet motherboard will also fit inside an X60/X60s. 
							</li>
						</ul>
					</li>
					<li>
						<b>Lenovo ThinkPad X60 Tablet</b> (1024x768 and 1400x1050) with digitizer support
						<ul>
							<li>See <b>hcl/index.html#supported_x60t_list</b> for list of supported LCD panels</li>
							<li>It is unknown whether an X61 Tablet can have its mainboard replaced with an X60 Tablet motherboard.</li>
						</ul>
					</li>
					<li>
						<b>Lenovo ThinkPad T60</b> (Intel GPU) (there are issues; see below):
						<ul>
							<li>See notes below for exceptions, and <b>hcl/index.html#supported_t60_list</b> for known working LCD panels.</li>
							<li>It is unknown whether a T61 can have its mainboard replaced with a T60 motherboard.</li>
							<li>See <b>future/index.html#t60_cpu_microcode</b>.</li>
							<li>T60P (and T60s with ATI GPU) will likely never be supported: <b>hcl/index.html#t60_ati_intel</b></li>
						</ul>
					</li>
					<li>
						<b>Apple MacBook1,1</b> (MA255LL/A, MA254LL/A, MA472LL/A)
						<ul>
							<li>See <b>hcl/index.html#macbook11</b>.</li>
						</ul>
					</li>
					<li>
						<b>Apple MacBook2,1</b> (MA699LL/A, MA701LL/A, MB061LL/A, MA700LL/A, MB063LL/A, MB062LL/A)
						<ul>
							<li>See <b>hcl/index.html#macbook21</b>.</li>
						</ul>
					</li>
				</ul>

			<h2>
				Changes for this release (latest changes first, earliest changes last)
			</h2>
				<ul>
					<li>Updated coreboot (git commit 8ffc085e1affaabbe3dca8ac6a89346b71dfc02e), the latest at the time of writing.</li>
					<li>Updated SeaBIOS (git commit 67d1fbef0f630e1e823f137d1bae7fa5790bcf4e), the latest at the time of writing.</li>
					<li>Updated Flashrom (svn revision 1850), the latest at the time of writing.</li>
					<li>Updated GRUB (git commit 9a67e1ac8e92cd0b7521c75a734fcaf2e58523ad), the latest at the time of writing.</li>
					<li>Cleaned up the documentation, removed unneeded files.</li>
					<li>ec/lenovo/h8 (x60/x60s/x60t/t60): Enable wifi/bluetooth/wwan/touchpad/trackpoint by default.</li>
					<li>Documentation: Updated list of T60 LCDs (Samsung LTN150XG 15&quot; XGA listed as non-working).</li>
					<li>builddeps-coreboot: Don't build libpayload (not needed. This was leftover by mistake, when trying out the TINT payload).</li>
					<li>Replaced most diff files (patches) for coreboot with gerrit checkouts (cherry-pick).</li>
					<li>Documentation: x60_security.html and t60_security.html: added links to info about the ethernet controller (Intel 82573).</li>
					<li>Documentation: x60_security.html and t60_security.html: added notes about DMA and the docking station.</li>
					<li>
						Documentation: configuring_parabola.html: basic post-install steps for Parabola GNU/Linux 
						(helpful, since libreboot development is being moved to Parabola at the time of writing).
					</li>
					<li>builddeps-coreboot: use 'make crossgcc-i386' instead of 'make crossgcc'. Libreboot only targets x86 at the time of writing.</li>
					<li>ROM images no longer include SeaBIOS. Instead, the user adds it afterwards. Documentation and scripts updated.</li>
					<li>docs/images/encrypted_parabola.html: Notes about linux-libre-grsec</li>
					<li>Documentation: encrypted_parabola.html: add tutorial for encrypted Parabola GNU/Linux installation.</li>
					<li>Documentation: added more info about wifi chipsets</li>
				</ul>
				
			<p><a href="#pagetop">Back to top of page.</a></p>
				
	</div>

	<div class="section">

		<h1 id="release20140911">6th release (pre-release, 7th beta)</h1>

			<ul>
				<li>Released 11th July 2014 (pre-release) 1st beta</li>
				<li>Revised (pre-release, 2nd beta) 16th July 2014</li>
				<li>Revised (pre-release, 3rd beta) 20th July 2014</li>
				<li>Revised (pre-release, 4th beta) 29th July 2014</li>
				<li>Revised (pre-release, 5th beta) 11th August 2014 (corrected 11th August 2014)</li>
				<li>Revised (pre-release, 6th beta) 3rd September 2014</li>
				<li>Revised (pre-release, 7th beta) 11th September 2014</li>
			</ul>

			<h2>Machines still supported (compared to previous release):</h2>
				<ul>
					<li>
						<b>Lenovo ThinkPad X60/X60s</b>
						<ul>
							<li>
								You can also remove the motherboard from an X61/X61s and replace it with an X60/X60s motherboard.
							</li>
						</ul>
					</li>
				</ul>
			<h2>New systems supported in this release:</h2>
				<ul>
					<li>
						<b>Lenovo ThinkPad X60 Tablet</b> (1024x768 and 1400x1050) with digitizer support
						<ul>
							<li>See <b>hcl/index.html#supported_x60t_list</b> for list of supported LCD panels</li>
							<li>It is unknown whether an X61 Tablet can have its mainboard replaced with an X60 Tablet motherboard.</li>
						</ul>
					</li>
					<li>
						<b>Lenovo ThinkPad T60</b> (Intel GPU) (there are issues; see below)
						<ul>
							<li>See notes below for exceptions, and <b>hcl/index.html#supported_t60_list</b> for known working LCD panels.</li>
							<li>It is unknown whether a T61 can have its mainboard replaced with a T60 motherboard.</li>
							<li>T60P (and T60s with ATI GPU) will likely never be supported: <b>hcl/index.html#t60_ati_intel</b></li>
						</ul>
					</li>
					<li>
						<b>Apple MacBook1,1</b> (MA255LL/A, MA254LL/A, MA472LL/A)
						<ul>
							<li>See <b>hcl/index.html#macbook11</b>.</li>
						</ul>
					</li>
					<li>
						<b>Apple MacBook2,1</b> (MA699LL/A, MA701LL/A, MB061LL/A, MA700LL/A, MB063LL/A, MB062LL/A)
						<ul>
							<li>See <b>hcl/index.html#macbook21</b>.</li>
						</ul>
					</li>
				</ul>
			<h2>Machines no longer supported (compared to previous release):</h2>
				<ul>
					<li><b>All previous systems still supported!</b></li>
				</ul>

			<h2>
				Revisions for r20140911 (7th beta) (11th September 2014)
			</h2>
				<ul>
					<li>The changes below were made in a git repository, unlike in previous releases. Descriptions below are copied from 'git log'.</li>
					<li>Update .gitignore for new dependencies.</li>
					<li>Use a submodule for i945-pwm.</li>
					<li>Don't clean packages that fail or don't need cleaning.</li>
					<li>Don't clean i945-pwm, it's not needed.</li>
					<li>Regression fix: Parabola live ISO boot issues</li>
					<li>Re-enable background images in ISOLINUX/SYSLINUX GRUB parser menus</li>
					<li>Regression fix: Re-add CD-ROM (ata0) in GRUB</li>
					<li>Documentation: add notes about performance penalty when using ecryptfs.</li>
					<li>Documentation: Fixed spelling and grammatical errors.</li>
					<li>Documentation: macbook21: add new system as tested</li>
					<li>Documentation: macbook21: add info about improving touchpad sensitivity</li>
					<li>Documentation: X60 Tablet: add more information about finger input</li>
					<li>Documentation: release.html: Add information about recently merged commit in coreboot</li>
				</ul>

			<h2>
				Revisions for r20140903 (6th beta) (3rd September 2014)
			</h2>
				<ul>
					<li>Added modified builddeb* scripts for Parabola GNU/Linux-libre: buildpac, buildpac-flashrom, buildpac-bucts (courtesy of Noah Vesely)</li>
					<li>Documentation: updated all relevant areas to mention use of buildpac* scripts for Parabola users.</li>
					<li>Documentation: added information showing how to enable or disable bluetooth on the X60</li>
					<li>MacBook1,1 tested! See <b>hcl/index.html#macbook11</b></li>
					<li>Documentation: fixed typo in index.html#get_edid_panelname (get-edit changed to get-edid)</li>
					<li>Documentation: added images/x60_lcd_change/ (pics only for now)</li>
					<li>Added gcry_serpent and gcry_whirlpool to the GRUB module list in the 'build' script (for luks users)</li>
					<li>
						<b>Libreboot is now based on a new coreboot version from August 23rd, 2014:<br/>
						Merged commits (relates to boards that were already supported in libreboot):</b>
						<ul>
							<li><a href="http://review.coreboot.org/#/c/6697/">http://review.coreboot.org/#/c/6697/</a></li>
							<li><a href="http://review.coreboot.org/#/c/6698/">http://review.coreboot.org/#/c/6698/</a> (merged already)</li>
							<li><a href="http://review.coreboot.org/#/c/6699/">http://review.coreboot.org/#/c/6699/</a> (merged already)</li>
							<li><a href="http://review.coreboot.org/#/c/6696/">http://review.coreboot.org/#/c/6696/</a> (merged already)</li>
							<li><a href="http://review.coreboot.org/#/c/6695/">http://review.coreboot.org/#/c/6695/</a> (merged already)</li>
							<li><b><a href="http://review.coreboot.org/#/c/5927/">http://review.coreboot.org/#/c/5927/</a> (merged already)</b></li>
							<li><a href="http://review.coreboot.org/#/c/6717/">http://review.coreboot.org/#/c/6717/</a> (merged already)</li>
							<li><a href="http://review.coreboot.org/#/c/6718/">http://review.coreboot.org/#/c/6718/</a> (merged already)</li>
							<li>
								<a href="http://review.coreboot.org/#/c/6723/">http://review.coreboot.org/#/c/6723/</a> (merged already)
								(text-mode patch, might enable memtest. macbook21)
							</li>
							<li>
								<a href="http://review.coreboot.org/#/c/6732/">http://review.coreboot.org/#/c/6732/</a> (MERGED)
								(remove useless ps/2 keyboard delay from macbook21. already merged)
							</li>
						</ul>
					</li>
					<li>
						These were also merged in coreboot (relates to boards that libreboot already supported):
						<ul>
							<li><a href="http://review.coreboot.org/#/c/5320/">http://review.coreboot.org/#/c/5320/</a> (merged)</li>
							<li><a href="http://review.coreboot.org/#/c/5321/">http://review.coreboot.org/#/c/5321/</a> (merged)</li>
							<li><a href="http://review.coreboot.org/#/c/5323/">http://review.coreboot.org/#/c/5323/</a> (merged)</li>
							<li><a href="http://review.coreboot.org/#/c/6693/">http://review.coreboot.org/#/c/6693/</a> (merged)</li>
							<li><a href="http://review.coreboot.org/#/c/6694/">http://review.coreboot.org/#/c/6694/</a> (merged)</li>
							<li><a href="http://review.coreboot.org/#/c/5324/">http://review.coreboot.org/#/c/5324/</a> (merged)</li>
						</ul>
					</li>
					<li>Documentation: removed the section about tft_brightness on X60 (new code makes it obsolete)</li>
					<li>Removed all patches from resources/libreboot/patch/ and added new patch: 0000_t60_textmode.git.diff</li>
					<li>Updated getcb script and DEBLOB script.</li>
					<li>Updated configuration files under resources/libreboot/config/ to accomodate new coreboot version.</li>
					<li>
						Removed grub_serial*.cfg and libreboot_serial*.rom, all configs/rom files are now unified (containing same configuration as serial rom files from before).
						<ul>
							<li>Documentation: updated index.html#rom to reflect the above.</li>
						</ul>
					</li>
					<li>Updated GRUB to new version from August 14th, 2014.</li>
					<li>Unified all grub configurations for all systems to a single grub.cfg under resources/grub/config/</li>
					<li>Updated flashrom to new version from August 20th, 2014</li>
					<li>
						Added getseabios and builddeps-seabios (builddeps and getall were also updated)
						<ul>
							<li>
								Added instructions to 'buildrom-withgrub' to include bios.bin.elf and vgaroms/vgabios.bin from SeaBIOS inside the ROM.
							</li>
						</ul>
					</li>
					<li>Added seabios (and sgavgabios) to grub as payload option in menu</li>
					<li>
						Disabled serial output in Memtest86+ (no longer needed) to speed up tests.
						<ul>
							<li>MemTest86+ now works properly, it can output on the laptop screen (no serial port needed anymore).</li>
						</ul>
					</li>
					<li>
						Added getgrubinvaders, builddeps-grubinvaders scripts. Added these to getall and builddeps.
						<ul>
							<li>
								Added <a href="http://www.coreboot.org/GRUB_invaders">GRUB Invaders</a> menu entry in resources/grub/config/grub.cfg
							</li>
						</ul>
					</li>
					<li>Added rules to builddeps-coreboot to build libpayload with TinyCurses. (added appropriate instructions to cleandeps script).</li>
					<li>Commented out lines in resources/grub/config/grub.cfg for loading font/background (not useful anymore, now that GRUB is in text-mode).</li>
					<li>Commented out lines in buildrom-withgrub that included backgrounds/fonts (not useful anymore, now that GRUB is in text-mode).</li>
					<li>
						Added resources/utilities/i945-pwm/ (from git://git.mtjm.eu/i945-pwm), for debugging acpi brightness on i945 systems.
						<ul>
							<li>Added instructions for it in builddeps, builddeps-i945pwm, builddeb and cleandeps</li>
						</ul>
					</li>
					<li>'build' script: removed the parts that generated sha512sum manifests (not needed, since release tarballs are GPG-signed)</li>
					<li>
						'build' script: removed the parts that generated libreboot_meta directory (not needed anymore, since _meta will be hosted in git)
						<ul>
							<li>Updated index.html#build_meta (and other parts of documentation) to accomodate this change.</li>
						</ul>
					</li>
					<li>Documentation: simplified (refactored) the notes in index.html#rom</li>
					<li>
						'build' script: removed the parts that generated libreboot_bin and added them to a new script: 'build-release'
						<ul>
							<li>Documentation: index.html#build updated to reflect the above.</li>
						</ul>
					</li>
					<li>Removed 'sudo' from builddeb, builddeb-flashrom, powertop.trisquel6 and builddeb-bucts scripts (assuming that the user has it is a really bad idea).</li>
					<li><s>Added all gcry_* modules to grub (luks/cryptomount): gcry_arcfour gcry_camellia gcry_crc gcry_dsa gcry_md4 gcry_rfc2268 gcry_rmd160 gcry_seed gcry_sha1 gcry_sha512 gcry_twofish gcry_blowfish gcry_cast5 gcry_des gcry_idea gcry_md5 gcry_rijndael gcry_rsa gcry_serpent gcry_sha256 gcry_tiger gcry_whirlpool</s></li>
					<li>Added GNUtoo's list of GRUB modules (includes all of the gcry_* modules above), cryptomount should be working now.</li>
					<li>Removed builddeb-bucts and builddeb-flashrom, merged them with builddeb (index.html updated accordingly)</li>
					<li>Removed buildpac-bucts and buildpac-flashrom, merged them with buildpac (index.html updated accordingly)</li>
					<li>Renamed builddeb to deps-trisquel (index.html updated accordingly)</li>
					<li>Renamed buildpac to deps-parabola (index.html updated accordingly)</li>
					<li>Documentation: removed all parts talking about build dependencies, replaced them with links to index.html#build_dependencies</li>
					<li>Documentation: emphasized more strongly on the documentation, the need to re-build bucts and/or flashrom before flashing a ROM image.</li>
					<li>build-release: flashrom, nvramtool, cbfstool and bucts are no longer provided pre-compiled in binary archives, and are now in source form only. (to maximize distro compatibility).</li>
					<li>Documentation: added gnulinux/encrypted_trisquel.html showing how to setup a fully encrypted Trisquel installation (including /boot) and boot it from the GRUB payload.</li>
					<li>'build' script: replaced grub.elf assembly instructons, it is now handled by a utility added under resources/utilities/grub-assemble</li>
					<li>Moved resources/grub/keymap to resources/utilities/grub-assemble/keymap, and updated that utility to use it</li>
					<li>Documentation: removed useless links to pictures of keyboard layouts and unmodified layouts.</li>
					<li>Removed all unused fonts from dejavu-fonts-ttf-2.34/ directory</li>
					<li>'buildrom-withgrub' script: updated it to create 2 sets of ROMs for each system: one with text-mode, one with coreboot framebuffer.</li>
					<li>Documentation: updated index.html#rom to reflect the above</li>
					<li>Deleted unused README and COPYING file from main directory</li>
					<li>Removed some rm -Rf .git* instructions from the get* scripts and moved them to build-release script</li>
					<li>
						Split up default grub.cfg into 6 parts: extra/{common.cfg,txtmode.cfg,vesafb.cfg} and menuentries/{common.cfg,txtmode.cfg,vesafb.cfg}
						<ul>
							<li>buildrom-withgrub script uses these to generate the correct grub.cfg for each type of configuration.</li>
						</ul>
					</li>
					<li>grub_memdisk.cfg (used inside grub.elf) now only loads grub.cfg from cbfs. It no longer enables serial output or sets prefix. (menuentries/common.cfg does instead)</li> 
					<li>
						resources/grub/config/extra/common.cfg, added:
						<ul>
							<li>insmod instructions to load those modules: nativedisk, ehci, ohci, uhci, usb, usbserial_pl2303, usbserial_ftdi, usbserial_usbdebug</li>
							<li>set prefix=(memdisk)/boot/grub</li>
							<li>
								For native graphics (recommended by coreboot wiki):<br/>
								gfxpayload=keep<br/>
								terminal_output --append gfxterm
							</li>
							<li>
								Play a beep on startup:<br/>
								play 480 440 1
							</li>
						</ul>
					</li>
					<li>
						Documentation: added note about 'fb=false' workaround for text-mode debian-installer (Trisquel net install) to 
						gnulinux/grub_boot_installer.html
					</li>
					<li>
						Documentation: updated gnulinux/grub_cbfs.html to make it safer (and easier) to follow.
					</li>
				</ul>

			<h2>
				Corrections to r20140811 (5th beta) (11th August 2014)
			</h2>
				<ul>
					<li>Fixed typo where revision list for 5th beta was listed as March 11th 2014, when in fact it was August 11th 2014</li>
					<li>Fixed incorrect grub.cfg that was actually placed in resources/grub/config/x60/grub_usqwerty.cfg which broke the default GRUB menu entry on X60</li>
				</ul>

			<h2>
				Revisions for r20140811 (5th beta) (11th August 2014)
			</h2>
				<ul>
					<li>build: added 'luks', 'lvm', 'cmosdump' and 'cmostest' to the list of modules for grub.elf</li>
					<li>Documentation: added pics showing T60 unbricking (still need to write a tutorial)</li>
					<li>build: include cmos.layout (coreboot/src/mainboard/manufacturer/model/cmos.layout) files in libreboot_bin</li>
					<li>Documentation: added <b>install/x60tablet_unbrick.html</b></li>
					<li>Documentation: added <b>install/t60_unbrick.html</b></li>
					<li>Documentation: added <b>install/t60_lcd_15.html</b></li>
					<li>Documentation: added <b>install/t60_security.html</b></li>
					<li>Documentation: added <b>install/t60_heatsink.html</b></li>
					<li>Documentation: Renamed RELEASE.html to release.html</li>
					<li>Documentation: removed pcmcia reference in x60_security.html (it's cardbus)</li>
					<li>Documentation: added preliminary information about randomized seal (for physical intrusion detection) in x60_security.html and t60_security.html</li>
					<li>Documentation: added preliminary information about preventing/mitigating cold-boot attack in x60_security.html and t60_security.html</li>
					<li>Documentation: added info to index.html#macbook21 warning about issues with macbook21</li>
					<li>
						Documentation: X60/T60: added information about checking custom ROMs using dd to see whether or not the top 64K 
						region is duplicated below top or not. Advise caution about this in the tutorial that deals with flashing on top 
						of Lenovo BIOS, citing the correct dd commands necessary if it is confirmed that the ROM has not been applied with
						dd yet. (in the case that the user compiled their own ROMs from libreboot, without using the build scripts, or if they forgot to use dd, etc).
					</li>
					<li>
						Split resources/libreboot/patch/gitdiff into separate patch files (getcb script updated to accomodate this change).
					</li>
					<li>Re-added .git files to bucts</li>
					<li>Fixed the oversight where macbook21_firstflash wasn't included in binary archives</li>
					<li>Release archives are now compressed using .tar.xz for better compression</li>
				</ul>

			<h2>
				Revisions for r20140729 (4th beta) (29th July 2014)
			</h2>
				<ul>
					<li>Documentation: improved (more explanations, background info) in docs/security/x60_security.html (courtesy of Denis Carikli)</li>
					<li>MacBook2,1 tested (confirmed)</li>
					<li>macbook21: Added script 'macbook21_firstflash' for flashing libreboot while Apple EFI firmware is running.</li>
					<li>Documentation: macbook21: added software-based flashing instructions for flashing libreboot while Apple EFI firmware is running.</li>
					<li>
						Reduced size of libreboot_src.tar.gz:
						<ul>
							<li>
								Removed .git and .gitignore from grub directory (libreboot_src); not needed. 
								Removing them reduces the size of the archive (by a lot). GRUB development should be upstream.
							</li>
							<li>
								Removed .git and .gitignore from bucts directory (libreboot_src); not needed. 
								Removing them reduces the size of the archive. bucts development should be upstream.
							</li>
							<li>
								Removed .svn from flashrom directory (libreboot_src); not needed. 
								Removing it reduces the size of the archive. flashrom development should be upstream.
							</li>
						</ul>
					</li>
					<li>
						Added ROMs with Qwerty (Italian) layout in GRUB (libreboot*itqwerty.rom)
					</li>
					<li>
						Added resources/utilities/i945gpu/intel-regs.py for debugging issues related to LCD panel compatibility on X60 Tablet and T60. (courtesy of <a href="http://mtjm.eu">Michał Masłowski</a>)
					</li>
				</ul>

			<h2>
				Revisions for r20140720 (3rd beta) (20th July 2014)
			</h2>
				<ul>
					<li>
						Fixed typo that existed in 2nd beta where the release date of the 2nd beta was listed as being in year 2016, when in actual fact it was 2014.
					</li>
					<li>
						Documentation: added (preliminary) details about (rare) buggy CPUs on the ThinkPad T60 that were found to fail (instability, kernel panics, etc)
						without the microcode updates. 
					</li>
					<li>Documentation: added docs/hardware/x60_heatsink.html for showing how to change the heatsink on the Thinkpad X60</li>
					<li>Added ROM images for Azerty (French) keyboard layout in GRUB (courtesy of Olivier Mondoloni)</li>
					<li>
						Tidied up some scripts:
						<ul>
							<li><s>Re-factored those scripts (made easier to read/maintain): build-x60, build-x60t, build-t60, build-macbook21</s></li>
							<li><s>Reduced the number of grub configs to 2 (or 1, for macbook21), the build scripts now generate the other configs at build time.</s></li>
							<li>Deleted build-x60, build-x60t, build-t60, build-macbook21 and replaced with intelligent (generic) buildrom-withgrub script</li>
							<li>Updated build to use buildrom-withgrub script for building the ROM images.</li>
							<li>coreboot.rom and coreboot_serial.rom renamed to coreboot_usqwerty.rom and coreboot_serial_usqwerty.rom</li>
							<li>coreboot_dvorak and coreboot_serial_dvorak.rom renamed to coreboot_usdvorak.rom and coreboot_serial_usdvorak.rom</li>
							<li>Renamed coreboot*rom to libreboot*rom</li>
							<li>Made flash, lenovobios_firstflash and lenovobios_secondflash scripts fail if the specified file does not exist.</li>
							<li>Updated all relevant parts of the documentation to reflect the above.</li>
						</ul>
					</li>
					<li>Replaced background.png with background.jpg. added gnulove.jpg. (resources/grub/background/)</li>
					<li>Updated buildrom-withgrub to use background.jpg instead of background.png</li>
					<li>Updated buildrom-withgrub to use gnulove.jpg aswell</li>
					<li>Updated resources/grub/config/macbook21/grub*cfg to use gnulove.jpg background.</li>
					<li>Updated resources/grub/config/{x60,t60,x60t}/grub*cfg to use background.jpg background.</li>
					<li>Documentation: updated docs/index.html#grub_custom_keyboard to be more generally useful.</li>
					<li>
						nvramtool:
						<ul>
							<li>Updated builddeps-coreboot script to build it</li>
							<li>Updated build script to include it in libreboot_bin</li>
						</ul>
					</li>
					<li>
						Documentation: added docs/security/x60_security.html (security hardening for X60)
					</li>
				</ul>

			<h2>
				Revisions for r20140716 (2nd beta) (16th July 2014)
			</h2>
				<ul>
					<li>
						Deleted all git-related files from the coreboot directory. This was necessary because
						with those it is possible to run 'git diff' which shows the changes made in the form
						of a patch (diff format); this includes the blobs that were deleted during deblobbing.
					</li>
				</ul>

			<h2>
				Revisions for r20140711 (1st beta) (11th July 2014)
			</h2>
				<ul>
					<li>Initial release (new coreboot base, dated 1st June 2014. See 'getcb' script for reference)</li>
					<li>DEBLOBBED coreboot</li>
					<li>Removed the part from memtest86+ 'make' where it tried to connect to some scp server while compiling. (commented out line 24 in the Makefile)</li>
					<li>X60 now uses a single .config (for coreboot)</li>
					<li>X60 now uses a single grub.cfg (for grub memdisk)</li>
					<li>X60 now uses a single grub.elf (payload)</li>
					<li>Added new native graphics code for X60 (replaces the old 'replay' code) from Vladimir Serbinenko: 5320/9 from review.coreboot.org</li>
					<li>T60 is now supported, with native graphics. (5345/4 from review.coreboot.org, cherry-picked on top of 5320/9 checkout)</li>
					<li>
						Added macbook2,1 support (from Mono Moosbart and Vladimir Serbinenko) from review.coreboot.org (see 'getcb' script to know how that was done)
						<ul>
							<li>Documentation: added information linking to correct page and talking about which models are supported.</li>
							<li>Added resources/libreboot/config/macbook21config</li>
							<li>macbook21: Added 'build-macbook21' script and linked to it in 'build' (ROMs included under bin/macbook21/)</li>
							<li>macbook21: Removed dd instructions from build-macbook21 script (macbook21 does not need bucts when flashing libreboot while Apple EFI firmware is running)</li>
							<li>Documentation: Added macbook21 ROMs to the list of ROMs in docs/index.html#rom</li>
							<li>Documentation: Write documentation linking to Mono Moosbart's macbook21 and parabola page (and include a copy)</li>
						</ul>
					</li>
					<li>Documentation: added a copy of Mono's Parabola install guide (for macbook21 with Apple EFI firmware) and linked in in main index.</li>
					<li>Documentation: added a copy of Mono's Coreboot page (for macbook21) and linked it in main index.</li>
					<li>T60: Copy CD option from the grub.cfg files for T60 *serial*.rom images into the grub configs for non-serial images. (T60s have CD/DVD drive on main laptop)</li>
					<li>macbook21: remove options in build-macbook21 for *serial*.rom (there is no dock or serial port available for macbook21)</li>
					<li>
						Added patches for backlight controls on X60 and T60 with help from Denis Carikli (see ./resources/libreboot/patch/gitdiff and ./getcb and docs/i945_backlight.html)
						<ul>
							<li>Documentation: added docs/i945_backlight.html showing how backlight controls were made to work on X60/T60</li>
						</ul>
					</li>
					<li>
						Documentation: Added info about getting LCD panel name based on EDID data.
						<ul>
							<li>Documentation: Added a link to this from the list of supported T60s and LCD panels for T60 (so that the user can check what LCD panel they have).</li>
						</ul>
					</li>
					<li>
						X60/T60: Merged patches for 3D fix (from Paul Menzel) when using kernel 3.12 or higher (see ./resources/libreboot/patch/gitdiff and ./getcb)
						<ul>
							<li>based on 5927/11 and 5932/5 from review.coreboot.org</li>
						</ul>
					</li>
					<li>
						Improved thinkpad_acpi support (from coreboot ): xsensors shows more information.
						<ul>
							<li>From 4650/29 in review.coreboot.org (merged in coreboot 'master' on June 1st 2014)</li>
						</ul>
					</li>
					<li>
						Merged changes for digitizer (X60 Tablet) and IR (X60 and T60) based on 5243/17, 5242/17 and 5239/19 from review.coreboot.org
						<ul>
							<li>(see ./resources/libreboot/patch/gitdiff and ./getcb)</li>
						</ul>
					</li>
					<li>Documentation: added information about building flashrom using 'builddeps-flashrom' script.</li>
					<li>Re-created resources/libreboot/config/x60config</li>
					<li>Re-created resources/libreboot/config/t60config</li>
					<li>
						Added 'x60tconfig' in resources/libreboot/config (because X60 Tablet has different information about serial/model/version in 'dmidecode')
						<ul>
							<li>Added 'build-x60t' script</li>
							<li>Updated 'build' script to use 'build-x60t'</li>
							<li>Documentation: added to #config section the section #config_x60t (libreboot configuration and dmidecode info)</li>
							<li>Documentation: added x60t ROMs to the list of ROMs</li>
						</ul>
					</li>
					<li>Tidied up the 'builddeps' script (easier to read)</li>
					<li>Tidied up the 'cleandeps' script (easier to read)</li>
					<li>Annotated the 'buildall' script</li>
					<li>Added 'getcb' script for getting coreboot revision used from git, and patching it.</li>
					<li>Added 'getgrub' script for getting the GRUB revision used from git, and patching it.</li>
					<li>Added 'getmt86' script for getting the memtest86+ version used, and patching it.</li>
					<li>Added 'getbucts' script for getting the bucts version used.</li>
					<li>Added 'getflashrom' script for getting the flashrom version used, and patching it</li>
					<li>Added 'getall' script which runs all of the other 'get' scripts.</li>
					<li>
						Add instructions to the 'build' script to prepare libreboot_meta.tar.gz
						<ul>
							<li>New archive: libreboot_meta.tar.gz - minimal archive, using the 'get' scripts to download all the dependencies (coreboot, memtest, grub and so on).</li>
						</ul>
					</li>
					<li>Documentation: added information about where 'build' script prepares the libreboot_meta.tar.gz archive.</li>
					<li>
						Documentation: added information about how to use the 'get' scripts in libreboot_meta.tar.gz (to generate libreboot_src.tar.gz)
						<ul>
							<li>Documentation: mention that meta doesn't create libreboot_src/ directory, but that libreboot_meta itself becomes the same.</li>
							<li>Documentation: advise to rename libreboot_meta to libreboot_src after running 'getall'.</li>
						</ul>
					</li>
					<li>Annotated the 'builddeb' script, to say what each set of dependencies are for.</li>
					<li>Separated bucts/flashrom builddeb sections into separate scripts: builddeb-flashrom, builddeb-bucts.</li>
					<li>Documentation: Updated relevant parts based on the above.</li>
					<li>Added instructions to 'build' script for including builddeb-bucts and builddeb-flashrom in libreboot_bin</li>
					<li>
						Updated flashrom checkout (r1822 2014-06-16) from SVN (http://flashrom.org/Downloads).
						<ul>
							<li>Updated flashing instructions in docs/index.html for new commands needed (Macronix chip on X60/T60)</li>
							<li>For X60/T60 (flashrom): Patched flashchips.c_lenovobios_macronix and flashchips.c_lenovobios_sst executables for SST/macronix (included in resources/flashrom/patch)</li>
							<li>Updated builddeps to build flashrom_lenovobios_sst and flashrom_lenovobios_macronix, for X60/T60 users with Lenovo BIOS</li>
							<li>moved the flashrom build instructions from 'builddeps' and put them in 'builddeps-flashrom', excecuting that from 'builddeps'.</li>
							<li>Added builddeps-flashrom to libreboot_bin.tar.gz</li>
						</ul>
					</li>
					<li>
						flashrom: added patched flashchips.c to resources/flashrom/patch (automatically use correct macronix chip on libreboot, without using '-c' switch)
						<ul>
							<li>removed 'MX25L1605' and 'MX25L1605A/MX25L1606E' entries in flashchips.c for the patched version of flashchips.c</li>
							<li>added instructions to 'builddeps-flashrom' to automatically use this modified flashchips.c in the default build</li>
						</ul>
					</li>
					<li>Added builddeb to libreboot_bin.tar.gz</li>
					<li>
						Moved 'bucts' build instructions from builddeps to builddeps-bucts
						<ul>
							<li>builddeps now runs 'builddeps-bucts' instead</li>
							<li>Added 'builddeps-bucts' to libreboot_bin.tar.gz</li>
							<li>Documentation: Added information about using 'builddep-bucts' to build the BUC.TS utility.</li>
						</ul>
					</li>
					<li>
						Added 'lenovobios_firstflash' and 'lenovobios_secondflash' scripts
						<ul>
							<li>Added instructions to 'build' script for including those files in libreboot_bin</li>
							<li>Documentation: Add tutorial for flashing while Lenovo BIOS is running (on X60/T60)</li>
						</ul>
					</li>
					<li>
						Added 'flash' script (make sure to run builddeps-flashrom first) which (while libreboot is already running) can use flashrom to flash a ROM
						<ul>
							<li>eg: &quot;sudo ./flash bin/x60/coreboot_serial_ukdvorak.rom&quot; equivalent to &quot;sudo ./flashrom/flashrom -p internal -w bin/x60/coreboot_uk_dvorak.rom&quot;</li>
							<li>updated 'build' script to include the 'flash' script in libreboot_bin.tar.gz</li>
						</ul>
					</li>
					<li>Documentation: replaced default flashrom tutorial to recommend the 'flash' script instead.</li>
					<li>
						Re-add cbfstool source code back into libreboot_bin.tar.gz, as cbfstool_standalone
						<ul>
							<li>Patched that version to work (able to be built and used) without requiring the entire coreboot source code.</li>
							<li>
								Created patched version of the relevant source files and added it into resources/cbfstool/patch
								<ul>
									<li>see coreboot/util/cbfstool/rmodule.c and then the patched version in resources/cbfstool/patch/rmodule.c</li>
									<li>see coreboot/src/include/rmodule-defs.h and the rule in 'build' for including this in ../libreboot_bin/cbfstool_standalone</li>
								</ul>
							</li>
							<li>Added instructions to 'build' script for applying this patch to the cbfstool_standalone source in libreboot_bin</li>
							<li>Added instructions to 'build' script for then re-compiling cbfstool_standalone in libreboot_bin after applying the patch</li>
							<li>Added a 'builddeps-cbfstool' script (in src, but only used in bin and put in bin by 'build') that compiles cbfstool_standalone in libreboot_bin (make), moves the cbfstool and rmodtool binaries into libreboot_bin/ and then does 'make clean' in libreboot_bin/cbfstool_standalone</li>
							<li>Updated the 'build' script to put 'builddeps-cbfstool' in libreboot_bin</li>
							<li>Updated the 'build' script in the cbfstool (standalone) part to accomodate the above.</li>
							<li>Documentation: added notes about cbfstool (standalone) in libreboot_bin</li>
						</ul>
					</li>
					<li>Documentation: made docs/gnulinux/grub_cbfs.html slightly easier to follow.</li>
					<li>Annotate the 'build*' scripts with 'echo' commands, to help the user understand what it actually happening during the build process.</li>
					<li>
						Documentation: added information about how 'dmidecode' data was put in the coreboot configs
						<ul>
							<li>Documentation: In fact, document how the 'config' files in resources/libreboot/config/ were created</li>
						</ul>
					</li>
					<li>Documentation: Added information about which ThinkPad T60s are supported, and which are not.</li>
					<li>
						Documentation: added information about LCD inverters (for upgrading the LCD panel on a T60 14.1' XGA or 15.1' XGA)
						<ul>
							<li>it's FRU P/N 41W1478 (on T60 14.1&quot;) so this was added to the docs.</li>
							<li>it's P/N 42T0078 FRU 42T0079 or P/N 41W1338 (on T60 15.1&quot;) so this was added to the docs.</li>
						</ul>
					</li>
					<li>Documentation: added information about names of LCD panels for T60 to the relevant parts of the documentation.</li>
					<li>Documentation: added information (with pictures) about the differences between T60 with Intel GPU and T60 with ATI GPU.</li>
					<li>Documentation: added pictures of keyboard layouts (US/UK Qwerty/Dvorak) to the ROM list, to let the user compare with their own keyboard.</li>
					<li>
						Move the coreboot build instructions in 'builddeps' into 'builddeps-coreboot' and link it in 'builddeps'
						<ul>
							<li>Link to 'builddeps-coreboot' in final stage of 'getcb'</li>
						</ul>
					</li>
					<li>
						Move GRUB build instructions from 'builddeps' into 'builddeps-grub', link from 'builddeps'
						<ul>
							<li>Link to 'builddeps-grub' in final stage of 'getgrub'</li>
						</ul>
					</li>
					<li>
						Move MemTest86+ build instructions from 'builddeps' into 'builddeps-memtest86', link from 'builddeps'
						<ul>
							<li>Link to 'builddeps-memtest86' in final stage of 'getmt86'</li>
						</ul>
					</li>
					<li>made 'build' script put resources/ directory in libreboot_bin, to make builddeps-flashrom work in libreboot_bin</li>
					<li>Removed instructions for building source code in the 'get' script (they don't really belong there)</li>
					<li>Added libfuse-dev and liblzma-dev to the list of GRUB dependencies in 'builddeb' script.</li>
					<li>Converted the 'RELEASE' file to 'docs/RELEASE.html'</li>
					<li>Added those dependencies to builddeb script (for GRUB part): gawk libdevmapper-dev libtool libfreetype6-dev</li>
					<li>Added to build script the instruction at the end to create a sha512sum.txt with a file manifest plus checksums.</li>
					<li>Deleted the RELEASE and BACKPORT files (no longer needed)</li>
					<li>
						Documentation: added information about X60/T60 dock (ultrabase x6 and advanced mini dock) to relevant sections.
						<ul>
							<li>Added to docs/index.html#serial</li>
						</ul>
					</li>
				</ul>

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

		<h1 id="release20140622">Release 20140622 (5th release)</h1>

			<ul>
				<li>7th March 2014</li>
				<li>revised 22nd June 2014</li>
			</ul>

			<h2>Officially supported</h2>
				<ul>
					<li>ThinkPad X60</li>
					<li>ThinkPad X60s</li>
				</ul>
			
			<h2>Revision (22nd June 2014 - extra)</h2>
				<ul>
					<li>Documentation: added X60 Unbricking tutorial</li>
					<li>Documentation: added info about enabling or disabling wifi</li>
					<li>Documentation: added info about enabling or disabling trackpoint</li>
				</ul>

			<h2>Revision (22nd June 2014 - extra)</h2>
				<ul>
					<li>Documentation: Improved the instructions for using flashrom</li>
					<li>Documentation: Improved the instructions for using cbfstool (to change the default GRUB menu)</li>
					<li>Documentation: Numerous small fixes.</li>
				</ul>
				
			<h2>Revision notes (22nd June 2014)</h2>
				<ul>
					<li>updated GRUB (git 4b8b9135f1676924a8458da528d264bbc7bbb301, 20th April 2014)</li>
					<li>Made &quot;DeJavu Sans Mono&quot; the default font in GRUB (fixes border corruption).</li>
					<li>re-added background image in GRUB (meditating GNU)</li>
					<li>
						added 6 more images: 
						<ul>
							<li>coreboot_ukqwerty.rom (UK Qwerty keyboard layout in GRUB)</li>
							<li>coreboot_serial_ukqwerty.rom (UK Qwerty keyboard layout in GRUB)</li>
							<li>coreboot_dvorak.rom (US Dvorak keyboard layout in GRUB)</li>
							<li>coreboot_serial_dvorak.rom (US Dvorak keyboard layout in GRUB)</li>
							<li>coreboot_ukdvorak.rom (UK Dvorak keyboard layout in GRUB)</li>
							<li>coreboot_serial_ukdvorak.rom (UK Dvorak keyboard layout in GRUB)</li>
							<li>(coreboot.rom and coreboot_serial.rom have US Qwerty keyboard layout in GRUB, as usual)</li>
						</ul>
					</li>
					<li>
						improved the documentation:
						<ul>
							<li>removed FLASH_INSTRUCTION and README.powertop and merged them with README</li>
							<li>removed obsolete info from README and tidied it up</li>
							<li>deleted README (replaced with docs/index.html)</li>
						</ul>
					</li>
					<li>tidied up the menu entries in GRUB</li>
					<li>tidied up the root directory of X60_source/, sorted more files into subdirectories</li>
					<li>added 'pkg-config' to the list of dependencies for building powertop on Trisquel</li>
					<li>wrote a script (powertop.trisquel6) to automatically setup Powertop to run at boot time (for Trisquel 6 users)</li>
					<li>improved the commenting inside the 'build' script (should make modifying it easier)</li>
					<li>Renamed X60_binary.tar.gz and X60_source.tar.gz to libreboot_bin.tar.gz and libreboot_src.tar.gz, respectively.</li>
					<li>Replaced &quot;GNU GRUB version&quot; with &quot;FREE AS IN FREEDOM&quot; on GNU GRUB start screen.</li>
					<li>Added sha512.txt files in libreboot_src and libreboot_bin. (inside the archives)</li>
					<li>Added libreboot_bin.tar.gz.sha512.txt and libreboot_src.tar.gz.sha512.txt files (outside of the archives)</li>
				</ul>

			<h2>Revision notes (11th June 2014):</h2>
				<ul>
					<li>removed 'CD' boot option from coreboot.rom (not needed)</li>
					<li>removed 'processor.max_cstate=2' and 'idle=halt' options (see README.powertop file)</li>
				</ul>

			<h2>Revision notes (5th June 2014):</h2>
				<ul>
					<li>added backlight support (Fn+Home and Fn+End) on X60</li>
					<li>fixed broken/unstable 3D when using kernel 3.12 or higher</li>
					<li>(see 'BACKPORT' file)</li>
				</ul>
				
			<h2>Revision notes (9th March 2015):</h2>
				<ul>
					<li>recreated coreboot config from scratch</li>
					<li>GRUB loads even faster now (less than 2 seconds).</li>
					<li>Total boot time reduced by further ~5 seconds.</li>
					<li>Added crypto and cryptodisk modules to GRUB</li>
					<li>cbfstool now included in the binary archives</li>
				</ul>

			<h2>Development notes</h2>
				<ul>
					<li>
						Binary archive now have 2 images:
						<ul>
							<li>With serial output enabled and memtest86+ included (debug level 8 in coreboot)</li>
							<li>With serial output disabled and memtest86+ excluded (faster boot speeds) (debugging disabled)</li>
						</ul>
					</li>
					<li>
						Reduced impact on battery life:
						<ul>
							<li>'processor.max_cstate=2' instead of 'idle=halt' for booting default kernel</li>
						</ul>
					</li>
					<li>
						coreboot.rom (faster boot speeds, debugging disabled):
						<ul>
							<li>Disabled coreboot serial output (Console-> in &quot;make menuconfig&quot;)</li>
							<li>Set coreboot debug level to 0 instead of 8 (Console-> in &quot;make menuconfig&quot;)</li>
							<li>Changed GRUB timeout to 1 second instead of 2 (in grub.cfg</li>
							<li>Removed background image in GRUB.</li>
							<li>Removed memtest86+ payload (since it relies on serial output)
						</ul>
					</li>
					<li>
						coreboot_serial.rom (slower boot speeds, debugging enabled):
						<ul>
							<li>Boot time still reduced, but only by ~2 seconds</li>
							<li>has the memtest86+ payload included in the ROM</li>
							<li>has serial port enabled. How this is achieved (from X60_source): Turn on debugging level to 8, and enable serial output</li>
						</ul>
					</li>
					<li>(in Console-> in coreboot &quot;make menuconfig&quot;)</li>
					<li>(and build with grub_serial.cfg and grub_memdisk_serial.cfg)</li>
				</ul>

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

	<div class="section">

		<h1 id="release20140221">Release 20140221 (4th release)</h1>

			<ul>
				<li>21st February 2014</li>
			</ul>

			<h2>Officially supported</h2>
				<ul>
					<li>ThinkPad X60</li>
					<li>ThinkPad X60s</li>
				</ul>

			<h2>Development notes</h2>
				<ul>
					<li>Removed SeaBIOS (redundant)</li>
					<li>
						New GRUB version (2.02~beta2)
						<ul>
							<li>Fixes some USB issues</li>
							<li>Includes ISOLINUX/SYSLINUX parser</li>
						</ul>
					</li>
					<li>New grub.cfg</li>
					<li>
						Removed useless options:
						<ul>
							<li>options for booting sda 2/3/4</li>
							<li>seabios boot option</li>
						</ul>
					</li>
					<li>
						Added new menu entries:
						<ul>
							<li>Parse ISOLINUX config (USB)</li>
							<li>Parse ISOLINUX config (CD)</li>
							<li>Added 'cat' module for use on GRUB command line.</li>
						</ul>
					</li>
					<li>&quot;set pager=1&quot; is set in grub.cfg, for less-like functionality</li>
				</ul>
				<p>
					The "Parse" options read ./isolinux/isolinux.cfg on a CD or USB,
					and automatically converts it to a grub config and switches to the boot menu of that distro.
					This makes booting ISOs *much* easier than before.
				</p>

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

	<div class="section">

		<h1 id="release20131214">r20131214 (3rd release)</h1>

			<ul>
				<li>14th December 2013</li>
			</ul>

			<h2>Supported:</h2>
				<ul>
					<li>ThinkPad X60</li>
					<li>ThinkPad X60s</li>
				</ul>

			<h2>Development notes</h2>
				<ul>
					<li>Added SeaBIOS payload to GRUB2 (for booting USB drives)</li>
					<li>new grub.cfg</li>
				</ul>

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

	<div class="section">

		<h1 id="release20131213">r20131213 (2nd release)</h1>

			<ul>
				<li>13th December 2013</li>
			</ul>

			<h2>Supported:</h2>
				<ul>
					<li>ThinkPad X60</li>
					<li>ThinkPad X60s</li>
				</ul>

			<h2>Development notes</h2>
				<ul>
					<li>added background image to GRUB2</li>
					<li>added memtest86+ payload to grub2</li>
					<li>improvements to the documentation</li>
					<li>new grub.cfg</li>
				</ul>

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

	<div class="section">

		<h1 id="release20131212">r20131212 (1st release)</h1>

			<ul>
				<li>12th December 2013</li>
			</ul>

			<h2>Supported:</h2>
				<ul>
					<li>ThinkPad X60</li>
					<li>ThinkPad X60s</li>
				</ul>

			<h2>Development notes</h2>
				<ul>
					<li>initial release</li>
					<li>source code deblobbed</li>
				</ul>

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

	<div class="section">

		<p>
			Copyright &copy;  2014, 2015 Francis Rowe &lt;info@gluglug.org.uk&gt;<br/>
			Permission is granted to copy, distribute and/or modify this document
			under the terms of the GNU Free Documentation License, Version 1.3
			or any later version published by the Free Software Foundation;
			with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
			A copy of the license can be found at <a href="gfdl-1.3.txt">gfdl-1.3.txt</a>
		</p>

		<p>
			Updated versions of the license (when available) can be found at
			<a href="https://www.gnu.org/licenses/licenses.html">https://www.gnu.org/licenses/licenses.html</a>
		</p>

		<p>
			UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
			EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
			AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
			ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
			IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
			WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
			PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
			ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
			KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
			ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
		</p>
		<p>
			TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
			TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
			NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
			INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
			COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
			USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
			ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
			DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
			IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
		</p>
		<p>
			The disclaimer of warranties and limitation of liability provided
			above shall be interpreted in a manner that, to the extent
			possible, most closely approximates an absolute disclaimer and
			waiver of all liability.
		</p>
		
	</div>

</body>
</html>