~ikepanhc/installation-guide/1730322-1

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
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
installation-guide (20160121ubuntu4) bionic; urgency=medium

  [ Doug Smythies ]
  * Fix typos in phrases where the sentence end dot is doubled.

  [ Frank Heimes ]
  * Update IBM Z/s390x and POWER support timeline.
  * Update supported architectures.
  * Various small changes for s390x-specific details of the install.

  [ Doug Smythies ]
  * Bump version numbers for Bionic.

 -- Mathieu Trudel-Lapierre <cyphermox@ubuntu.com>  Wed, 25 Apr 2018 09:30:57 -0400

installation-guide (20160121ubuntu3) yakkety; urgency=medium

  [ Steve Langasek ]
  * what-is-ubuntu.xml: long-overdue language updates.  Don't call Ubuntu a
    "desktop operating system", and list all of the currently-supported
    architectures.
  * en/welcome/what-is-debian.xml: drop another outdated reference to Ubuntu
    being a "desktop" system.
  * build/arch-options: add a new 'supports-desktop' condition, which for the
    moment is set only on amd64, i386, and powerpc as the only architectures
    that any flavors are building desktop images for.  This may warrant
    further refinement later.
  * disable various references to desktops when 'supports-desktop' is not
    set.

  [ dann frazier ]
  * List Cavium ThunderX as a supported arm64 platform
  * Make the bios-setup UEFI section apply to arm64 as well; move U-Boot
    specific content into a U-Boot-only section.

  [ Doug Smythies ]
  * Bump version numbers for xenial (currently accurate for yakkety as well).

 -- dann frazier <dann.frazier@canonical.com>  Tue, 07 Jun 2016 13:12:46 -0600

installation-guide (20160121ubuntu2) xenial; urgency=medium

  * en/appendix/chroot-install.xml: Revert Ubuntu delta about setting UTC in
    /etc/default/rcS instead of /etc/adjtime. (LP: #1541532)

 -- Martin Pitt <martin.pitt@ubuntu.com>  Thu, 04 Feb 2016 22:15:31 +0100

installation-guide (20160121ubuntu1) xenial; urgency=low

  * Merge from Debian unstable.  Remaining changes:
    - Extensive (although possibly incomplete) Ubuntu branding, adjustments
      for our mirror layout, etc.
    - Build only English (for now, until we figure out how to avoid trashing
      translations quite so badly with Ubuntu branding etc.).
    - Drop build-dependency on poxml for now, since we don't ship any
      translations.
    - Add "Ubuntu and Debian" and "What is Ubuntu?" section, text borrowed
      from the Ubuntu web site. Disable the "What is Debian GNU/Linux?"
      section.
    - Build only Ubuntu architectures (amd64, arm64, armhf, i386, powerpc,
      ppc64el, s390x).
    - Direct installation reports to ubuntu-users for now.
    - Document mounting /sys in various places.
    - Update chroot-install guide for language packs; add
      a bit more advice about installing grub.
    - Document our root password and sudo arrangements.
    - Adjust various memory and disk space requirements. Talk about the
      default Ubuntu desktop and Ubuntu tasks rather than Debian tasks.
    - Document network-console/authorized_keys_url feature
    - Document mirror/udeb/components.
    - Document scheme for preseeding the use of CC.archive.ubuntu.com
      mirrors.
    - Document how to override the weak password check.
    - Document preseeding user-setup's home directory encryption facility.
    - Document new simplified partman preseeding.
    - Document partman-auto-lvm/guided_size.
    - Document partman/default_filesystem.
    - Document live-installer/net-image.
    - Improve examples of tasksel/first preseeding to avoid mentioning
      standard, which is installed by default.
    - Document pkgsel/update-policy.
    - Document pkgsel/updatedb.
    - Document apt-setup/security_path.
    - Disable documentation of win32-loader.
    - Document netboot-style USB images. Still mention the hd-media images,
      but they're downplayed since many USB sticks are too small for a full
      Ubuntu ISO image.
    - Retain delta for commented-out OldWorld Mac support because it's easier
      than reverting it; but at this point OldWorld Macs will almost
      certainly never be supported in Ubuntu or Debian.
    - Remove comments about automatic installation methods that have been
      removed from Ubuntu.
    - Document Kickstart installations.
    - Unset supports-floppy-boot for all our architectures.
    - Don't recommend passing http://archive.ubuntu.com/ubuntu to
      debootstrap.
    - Document that i586 processors and i686 without cmov are no longer
      supported.
    - Translate '&debian;' and '&debian-gnu;' xml entities to 'Ubuntu',
      allowing us to significantly reduce the branding delta.
    - Bump names for xenial.
    - Bump kernelversion to 4.3.
    - Disable all the documentation of loadlin, not just half of it.
    - Never enable the "new-arch" status for any Ubuntu archs.
    - Set the archive url dynamically based on the architecture, to cover
      ports.u.c vs. archive.u.c.  LP: #1391019.
    - Revert installation guide changes that say to use /etc/adjtime instead
      of etc/default/rcS; /etc/adjtime is evilbadwrong and not used in
      Ubuntu.
    - Don't include information about tasks that Ubuntu doesn't have.
  * Revert the Debian change to mark "graphical install" as the default, which
    is not a supported option on our d-i based images.

 -- Steve Langasek <steve.langasek@ubuntu.com>  Mon, 25 Jan 2016 23:14:43 -0800

installation-guide (20160121) unstable; urgency=medium

  [ Martin Michlmayr ]
  * Update scripts and entities to stretch release.
  * Remove the DNS-323 from the list of supported Orion devices.
  * Remove IXP4xx from the list of supported armel platforms.
  * Remove references to platforms that were last supported in Debian 7.
  * Document armel devices and platforms for which support was dropped.
  * Update list of supported QNAP models.
  * Add "MX53 LOCO Board" as alternative name for the MX53 Quick Start
    Board (see #788782).
  * List Seagate FreeAgent DockStar as supported plug computer.
  * Convert supported Kirkwood devices to a list.
  * Added QNAP TS-109, TS-209, TS-409 and TS-409U as supporteded
    models again.

  [ Vincent McIntyre ]
  * Document discrepancy between halt and poweroff. Closes: #789652.

  [ Łukasz Stelmach ]
  * Update information on hashed passwords. Closes: #801810.

  [ Samuel Thibault ]
  * Document the fourth bootline parameter of brltty.
  * Document the zoom support.

  [ Matt Kraai ]
  * Fix Instructions for creating syslinux.cfg according to syslinux 5.00
    change. Closes: #803267.

  [ Holger Wansing ]
  * Documenting that the graphical installer is now the default.

  [ Cyril Brulebois ]
  * Remove alternative build-dep on openjade1.3, thanks to Neil Roeth
    (Closes: #809523).

 -- Samuel Thibault <sthibault@debian.org>  Thu, 21 Jan 2016 20:14:33 +0100

installation-guide (20150528ubuntu1) xenial; urgency=low

  * Merge from Debian unstable; LP: #887663.
    - fixes a wrong init script name for dhcpd.  LP: #666726.
    - fixes a typo in the table of memory requirements.  LP: #1030336.
    - drops obsolete mention of 2.6 kernels in keyboard preseeding.
      LP: #1000354.
    - fixes wrong make-kpkg example invocation.  LP: #1019906.
    - fixes stale link to debian-installer subversion repo.  LP: #1233732.
  * Remaining changes:
    - Extensive (although possibly incomplete) Ubuntu branding, adjustments
      for our mirror layout, etc.
    - Build only English (for now, until we figure out how to avoid trashing
      translations quite so badly with Ubuntu branding etc.).
    - Drop build-dependency on poxml for now, since we don't ship any
      translations.
    - Add "Ubuntu and Debian" and "What is Ubuntu?" section, text borrowed
      from the Ubuntu web site. Disable the "What is Debian GNU/Linux?"
      section.
    - Build only Ubuntu architectures (amd64, arm64, armhf, i386, powerpc,
      ppc64el, s390x).
    - Direct installation reports to ubuntu-users for now.
    - Document mounting /sys in various places.
    - Update chroot-install guide for language packs; add
      a bit more advice about installing grub.
    - Document our root password and sudo arrangements.
    - Adjust various memory and disk space requirements. Talk about the
      default Ubuntu desktop and Ubuntu tasks rather than Debian tasks.
    - Document network-console/authorized_keys_url feature
    - Document mirror/udeb/components.
    - Document scheme for preseeding the use of CC.archive.ubuntu.com
      mirrors.
    - Document how to override the weak password check.
    - Document preseeding user-setup's home directory encryption facility.
    - Document new simplified partman preseeding.
    - Document partman-auto-lvm/guided_size.
    - Document partman/default_filesystem.
    - Document live-installer/net-image.
    - Improve examples of tasksel/first preseeding to avoid mentioning
      standard, which is installed by default.
    - Document pkgsel/update-policy.
    - Document pkgsel/updatedb.
    - Document apt-setup/security_path.
    - Disable documentation of win32-loader.
    - Document netboot-style USB images. Still mention the hd-media images,
      but they're downplayed since many USB sticks are too small for a full
      Ubuntu ISO image.
    - Retain delta for commented-out OldWorld Mac support because it's easier
      than reverting it; but at this point OldWorld Macs will almost
      certainly never be supported in Ubuntu or Debian.
    - Remove comments about automatic installation methods that have been
      removed from Ubuntu.
    - Document Kickstart installations.
    - Unset supports-floppy-boot for all our architectures.
    - Don't recommend passing http://archive.ubuntu.com/ubuntu to
      debootstrap.
    - Document that i586 processors and i686 without cmov are no longer
      supported.
  * Dropped changes, included in Debian:
    - Update keyboard preseeding documentation for console-setup.
    - Replace 'netcfg/disable_dhcp' with 'netcfg/disable_autoconfig'
      throughout.
    - Add a few more supports-floppy-boot and bootable-usb conditionals.
    - Remove some 2.6 kernel specifics.
    - Remove documentation of
      base-installer/kernel/linux/initramfs-generators
    - Update url-us-keymap
    - Replace 'console-setup' with 'keyboard-config' in preseeding.
  * Dropped changes:
    - Rename armel manual to armhf: there are both armel and armhf manuals
      in Debian, and the armel one contains information only relevant for
      non-armhf systems.
    - Documentation of X preseeding: hardware should now be automatically
      detected, and xserver-xorg no longer uses debconf.  LP: #881984.
    - Don't suppress mention of using a CD as an archive even if the
      system doesn't boot from CD; this is very relevant for s390x, for
      instance.
    - Drop comment about Ubuntu desktop CDs, since this manual is not
      applicable to non-di images at all and we no longer have an Ubuntu
      alternate CD.
    - Drop unnecessary delta to debian/rules which causes e.g. preseed
      file to show the wrong target release name.  LP: #1316242.
  * Translate '&debian;' and '&debian-gnu;' xml entities to 'Ubuntu', allowing
    us to significantly reduce the branding delta.
  * Bump names for xenial.
  * Bump kernelversion to 4.3.
  * Disable all the documentation of loadlin, not just half of it.
  * Never enable the "new-arch" status for any Ubuntu archs.
  * Set the archive url dynamically based on the architecture, to cover
    ports.u.c vs. archive.u.c.  LP: #1391019.
  * Revert installation guide changes that say to use /etc/adjtime instead of
    /etc/default/rcS; /etc/adjtime is evilbadwrong and not used in Ubuntu.
  * Don't include information about tasks that Ubuntu doesn't have.

 -- Steve Langasek <steve.langasek@ubuntu.com>  Thu, 17 Dec 2015 01:07:23 -0800

installation-guide (20150528) unstable; urgency=medium

  [ Samuel Thibault ]
  * Give to make-kpkg a "1.0.custom" revision instead of bogus "custom.1.0".
    Closes: #783613.
  * Add an example preseed entry for setting up multi-arch.
    Closes: #785165 . Thanks to Matthew Sweet for the patch.

  [ Christian Perrier ]
  * Fix kernel source compression extension in kernel-baking.xml

  [ Holger Wansing ]
  * Revert to documenting that the text installer is still the default
    installer.
  * Remove mention of kfreebsd as supported archs for Jessie

 -- Samuel Thibault <sthibault@debian.org>  Mon, 04 May 2015 00:13:28 +0200

installation-guide (20150423) unstable; urgency=medium

  * A few translation updates.

  [ Samuel Thibault ]
  * Make size needed on / an entity, and bump its max to 310. Thanks Paolo
    Cavallini for the report and Laura Arjona Reina for the investigation!

 -- Samuel Thibault <sthibault@debian.org>  Wed, 22 Apr 2015 22:24:35 +0200

installation-guide (20150417) unstable; urgency=medium

  [ Stéphane Blondon ]
  * Improve html table aspect.
  * Add missing "warning" icon.

  [ Karsten Merker ]
  * Add a "Debian-provided U-Boot (system firmware) images" subsection
    in the "Pre-Installation Hardware and Operating System Setup" section
    and add a link to the U-Boot images in the "Downloading Files from
    Debian Mirrors" section.
  * Add a "Using pre-built SD-card images with the installer" subsection
    in the "Booting the Installer on ARM" section.
  * Correct the number of supported architectures (arm64 and ppc64el are
    release architectures now).
  * Add a "Pre-built netboot tarball" subsection for armhf in the
    "Booting by TFTP" section.
  * Add a "Console configuration" subsection in the "Booting the Installer
    on ARM" section.
  * Add information that the IXP4xx platform support in Jessie is limited
    to dist-upgrades from Wheezy, that new installations are not supported
    for the IXP4xx platform and that kernel support for it will definitely
    be dropped in Stretch.
  * Add LinkSprite pcDuino3 to the list of supported armhf systems.
  * Change http.debian.net references to httpredir.debian.org.

  [ Holger Wansing ]
  * Add ppc64el bits.

  [ Wookey ]
  * Update the "Supported Hardware" section for arm64.

  [ Steve McIntyre ]
  * Update stats for number of packages per arch, number of DDs and number
    of mailing lists
  * Add mention of BD-ROM like CD/DVD
  * Lots of updates to documentation about EFI
  * Make USB boot a more prominent option for booting the installer on x86
  * Remove the old hdX device names, switch to sdX for disks
  * Various fixes for arm* support
  * Loads of trivial translations.

  [ Samuel Thibault ]
  * Add missing "set -e" in build/Makefile to trap build failures.
    Closes: #782673.
  * Loads of trivial translations.
  * Fix moving the html images when destination already contains a built
    manual. Closes: #782765.

 -- Samuel Thibault <sthibault@debian.org>  Sat, 28 Mar 2015 10:10:34 +0100

installation-guide (20150323) unstable; urgency=medium

  [ Samuel Thibault ]
  * Rephrase documentation of grub-installer/bootdev to make it clear that it
    has to be specified. document that it can be preseeded with "default".
  * Update preseed grub-style partition name from grub1 style (hd0,0) to grub2
    style (hd0,1).
  * Avoid security issues while making an encrypted root password for a
    preseed file. Closes: #775718.
  * Re-enable da language.

  [ Stuart Prescott ]
  * Advise users not to use unetbootin
  * Suggest win32diskimager as an alternativee to unetbootin
  * Explicitly list the netinst, CD-1 and DVD-1 images as "which image should
    I use" is a FAQ.

  [ Karsten Merker ]
  * Update the armhf platform support status.
  * Update the U-Boot USB boot command in the "Booting from a USB stick in
    U-Boot" section as required by newer U-Boot versions.

  [ Holger Wansing ]
  * Make year for copyright an entity.

  [ Stéphane Blondon ]
  * Add CSS for the html version.

 -- Samuel Thibault <sthibault@debian.org>  Sun, 04 Jan 2015 00:05:14 +0100

installation-guide (20141230) unstable; urgency=medium

  [ Karsten Merker ]
  * List the armel MV78xx0 platform as no longer supported in Jessie
    (support was removed with linux-image 3.16.2-1) and remove the
    mv78xx0 flavor from the architecture table.
  * List the armel ixp4xx platform as (again) supported in Jessie.
    Support for it has been reenabled with kernel 3.16.
  * List the Wandboard Quad as supported armhf platform (based on
    installation report #773127).
  * Add a "Booting from a USB stick in U-Boot" subsection in the
    "Booting the Installer on ARM" section.
 
  [ Ben Hutchings ]
  * Warn that one must copy hybrid images on whole USB sticks, not just a
    partition. Closes: #762024.

  [ Samuel Thibault ]
  * Fix preseed name: netcfg/link_detection_timeout ->
    netcfg/link_wait_timeout. Thanks Julien Cristau for noticing.
  * Update brltty URLs and version.
  * Update preseeding of desktops and list of desktops.
  * Add arm64 and ppc64el manual builds.
  * Update tasks installation sizes.
  * It is now possible to choose the installed desktop, and the default is now
    Gnome on x86. Closes: #764026.
  * Fix documentation for -- after it was turned into --- for fixing #764675.
  * Explicit that console=ttyS0,something has to be put after ---.
    Closes: #764677.

  [ Baptiste Jammet ]
  * Update installation-guide for no separated /usr. Closes: #772461.

 -- Samuel Thibault <sthibault@debian.org>  Tue, 30 Dec 2014 22:26:53 +0100

installation-guide (20140916) unstable; urgency=low

  [ Martin Michlmayr ]
  * Remove information about Cobalt devices.

  [ Samuel Thibault ]
  * Reference the DEBIAN_FRONTEND parameter in the accessibility section.
  * Do not document a "d-i keymap" alias, it does not work, only the bootcommand
    keymap alias works.
  * Emphasize about the issue of language/keyboard being by default asked before
    disk and network preseeding.
  * Mention where filesystems are mounted for preseed commands.
  * Fix setting up ssh access now that root with password is disabled by
    default. Closes: #756065.
  * Add support for "any" and "x86" magics in preseed.pl. Closes: #758476.
  * Update linux-x86 lowmem limits.
  * Add arch-parallel build support.
  * Bump Standards-Version to 3.9.5 (no change).

  [ Karsten Merker ]
  * Update and extend the "Supported Hardware" section for armel
    and armhf:
      - update the architecture/subarch/flavor table
      - add general information about armel and armhf
      - add information about platform-specific and multiplatform kernels
      - update the platform support status
  * Disable the "Booting the SS4000-E" section as it describes hardware
    which is not supported in Jessie anymore (Intel iop32-based NAS).
  * Disable the references to the Thecus N2100 and the GLAN Tank in the
    "Where to Find Installation Images" section. Both are Intel
    iop32-based systems which are not supported in Jessie anymore.
  * Add an "ARM firmware", a "Setting the ethernet MAC address
    in U-Boot" and a "Kernel/Initrd/Device-Tree relocation issues in
    U-Boot" subsection in the "Pre-Installation Hardware and
    Operating System Setup" section.
  * Add a "Boot image formats" and a "TFTP-booting in U-Boot" subsection
    in the "Booting the Installer on ARM" section.
  * Add location information for the armmp flavor to the "Where to Find
    Installation Images" section.
  * Add a "Making the system bootable with flash-kernel" subsection
    to the "Making Your System Bootable" section for arm platforms.
  * Remove ia64, s390 and sparc from the supported architecture list
    for Jessie.
  * Update several common entities for Jessie.
  * Reword the "Installing Additional Software" section to make it 
    easier to change the default desktop environment in the installation
    guide.
  * Remove outdated reference to booting from floppy disks in the
    "Booting from CD-ROM" section.
  * Add a "Systems with UEFI firmware" subsection and a
    "Disabling the Windows 8 'fast boot' feature" subsection in the
    "Pre-Installation Hardware and Operating System Setup" section.

  [ Cyril Brulebois ]
  * Drop installation-guide-ia64 package (commented out).
  * Target release is now jessie.

  [ Colin Watson ]
  * Remove mention of partman's ability to copy data between partitions,
    since that relies on libparted's filesystem-handling code which is being
    removed.

  [ Holger Wansing ]
  * Drop s390, ia64 and sparc from control / archlist files for Jessie
    (means dropping installation-guide-s390 and installation-guide-sparc
    packages)
  * Update manual for graphical installer being the default installer
    under i386 and amd64 for Jessie.
  * Move contents of 'Graphical installer' appendix to regular parts
    of the manual.
  * Remove references of loop-AES (no longer supported by the installer).

 -- Samuel Thibault <sthibault@debian.org>  Tue, 16 Sep 2014 12:39:53 +0200

installation-guide (20131009) unstable; urgency=low

  [ Samuel Thibault ]
  * Add /run directory to the tree summary.
  * Document that we need to update the disk size figure in the boot help text
    too.
  * Drop texlive-lang-finnish build-dep: Finnish is currently disabled.
  * Replace texlive-lang-swedish build-dep with texlive-lang-european for
    hyphenation support, thanks Ansgar Burchardt for the hint.
  * Drop texlive-lang-vietnamese build-dep, now provided by
    texlive-lang-other. Closes: #709759.
  * chroot installation:
    - Advise to mount /proc before running MAKEDEV generic. Closes: #725398.
    - Advise to install ncurses-term for unusual TERM values. Closes: #725400.
  * rules: Add build-arch and build-indep targets.
  * control: Bump Standards-Version to 3.9.4 (no changes).

  [ Holger Wansing ]
  * Removal of references to 'volatile'.

 -- Samuel Thibault <sthibault@debian.org>  Wed, 09 Oct 2013 00:30:38 +0200

installation-guide (20130503) unstable; urgency=low

  [ Vincent McIntyre ]
  * Clearly distinguish between auto boot label and auto=true kernel
    parameter.

  [ Samuel Thibault ]
  * Add some details about serial console boot parameter.
  * Rework the auto wording.
  * Default fs is ext4, not ext3. Thanks Regid Ichira for the report.
  * Apply killall.sh -> kill-all-dhcp renaming, thanks Yoshito Komatsu for the
    report. Closes: #705819.
  * Switch from dhcp3-server to isc-dhcp-server, thanks Salvatore Bonaccorso
    for the report.Closes: #706103.
  * Stop advising to use init 1 to restart servers. Thanks Regid Ichira for
    the report.
  * Make it clear that dark theme is about colors.

  [ Jakub Wilk ]
  * Fix some typos. Closes: #705311.

  [ Milan Kupcevic ]
  * How to boot YDL Powerstation from factory default CD/DVD drive.
  * Update list of supported PowerPC machines.

 -- Samuel Thibault <sthibault@debian.org>  Fri, 03 May 2013 23:22:25 +0200

installation-guide (20130408) unstable; urgency=low

  [ Samuel Thibault ]
  * Document IPv6 preseeding. Thanks Vincent McIntyre for the suggestion.
  * Rename disable_dhcp into disable_autoconfig, the former is now deprecated.
  * Document that IPv6 autoconfiguration is disabled along DHCP.
  * Disable outdated Catalan and Finnish translations.
  * Update installation sizes.
  * Document that the mirror host name actually has to be a URL base for now.
  * Suffix web documents with http lang ids rather than locale lang ids, for
    working content-language negociation.
  * Fix space typo reported by Enrico Zini.
  * Fix spurious syncs reported by Enrico Zini.
  * Fix Linux kernel package version, reported by Enrico Zini.
  * /etc/adjtime is not automatically built by debootstrap any more, document
    how to create it.

  [ Milan Kupcevic ]
  * Debian-installer partition table editing tool not compatible with 
    MacOS 9. Closes: #604134.

 -- Cyril Brulebois <kibi@debian.org>  Mon, 08 Apr 2013 00:25:20 +0200

installation-guide (20130208) unstable; urgency=low

  [ Brian Potkin ]
  * Remove references to businesscard images, which are no more.
  * Document how to get back from help to menu.
  * Improve documentation about kernel modules needing firmwares, including
    how to look for firmware in dmesg's output. Closes: #695403.
  * Improve documentation about user accounts: move it to the right place
    and explain how setting an empty root password leads to sudo being
    installed. Closes: #692314.
  * Explain how to include firmware or packages on a USB stick built by hand.
  * Explain one can use a USB stick while having booted another
    way. Closes: #692309.

  [ Salvatore Bonaccorso ]
  * Fix typo in network configuration preseed example snipped
    Closes: #691164

  [ Samuel Thibault ]
  * Update lowmem, disk usage, package numbers, lists number values.
  * Fix po detection.
  * Fix bogus URLs, thanks Brian Potkin for the hint. Closes: #692310.
  * Document speakup shortcuts for speed and volume.
  * Add wiki URL for installed system accessibility.
  * Provide more details on software speech synthesis support.

  [ Holger Wansing ]
  * Fix location of UTC vs local timezone configuration. Closes: #699297.

 -- Samuel Thibault <sthibault@debian.org>  Fri, 08 Feb 2013 19:02:17 +0100

installation-guide (20121010) unstable; urgency=low

  * Replace \n with spaces from getfromlist output in buildweb.sh.
    Closes: #690065.

 -- Samuel Thibault <sthibault@debian.org>  Wed, 10 Oct 2012 00:51:53 +0200

installation-guide (20121008) unstable; urgency=low

  [ Samuel Thibault ]
  * debian/rules: Fix suite name.
  * preseed: Add authorized_keys url preseed example, thanks Charles Plessy
    for the patch. Closes: #684629.
  * official-cdrom: Add link to CD FAQ. Thanks Holger Wansing and Richard
    Owlett for the heads-up. Closes: #280348, #309568.
  * Add language-parallel build support.
  * Update figures.
  * Remove outdated keyboard configuration bits.
  * Update preseed aliases.
  * Document that only basic keymap variants are available for preseeding.
    Closes: #682857.
  * Advise virtualization+serial users into using screen to fix glitches.
    Closes: #689548.

  [ Simon Guinot ]
  * Document support for LaCie NASes. Closes: #686128

  [ Karsten Merker ]
  * Various small removals / updates / amendments in the chapters 2,3 and 5,
    most of them concerning outdated information.
  * Extended the "Devices Requiring Firmware" section.
  * Rewrote large parts of the "Avoid Proprietary or Closed Hardware"
    section.
  * Rewrote the "Hardware Compatibility" section.
  * Amended the "Network Settings" section.
  * Rewrote the "Pre-Partitioning for Multi-Boot Systems" section 
    to bring it up to date with the current d-i features and make it
    easier to read for beginners.
  * Rewrote the "Pre-Installation Hardware and Operating System Setup"
    section to bring it up to date for modern hardware.
  * Amended the "Official Debian GNU/Linux CD/DVD-ROM Sets" section
    (CD1 without network mirror too small for a full GNOME/KDE install).
  * Added a note that for some devices firmware may not be necessary,
    even though a firmware prompt is displayed.
    Closes: #687454 
  * Reworked the "Configuring the Network" section, added information
    regarding IPv6 support.
  * Added a "Choosing a network mirror" section, added information
    regarding IPv6 connectivity of debian mirrors and information about 
    ftp.ipv6.debian.org and http.debian.net.

 -- Samuel Thibault <sthibault@debian.org>  Mon, 08 Oct 2012 22:38:08 +0200

installation-guide (20120826) unstable; urgency=low

  [ Samuel Thibault ]
  * Reference the French translation of the brltty manual in fr.
  * Disable G-I on kfreebsd-*.
  * Document booting d-i from grub2. Closes: #612165.
  * Mention preseeding as an alternative for accessibility.
  * Document that the text installer is selected by default.
  * Avoid referencing BRLTTY manual chapter precise numbers. Closes: #580508.
  * Make it clear that it's the ISO file which needs to be copied to the USB
    key.
  * Update powerpc's copy of documentation for copying ISO file on USB keys.
  * Add software speech synthesis documentation.
  * Document SCSI partition raise to 255. Closes: Bug#644734. Thanks David
    Prévot.
  * Do not make users think that only "Graphical install" has speakup support,
    and not "64 bit graphical install" too.
  * Mention the 64bit variant installation options.
  * Update chroot manual into using grub2.
  * Document that installing makedev is needed to get MAKEDEV.
    Closes: #620881, #656939.
  * Document the availability of other apt sources, thanks Karl for the
    patch. Closes: Bug#608828.
  * Update xorg, brltty and speakup versions.
  * WPA/WPA2 is now available. Closes: #659648.
  * Use dd of= instead of cat >, to save users who use sudo. Advise to make
    sure the stick is unmounted. Closes: #660776.
  * Rename kbd-chooser component to console-setup.
  * Fix preseeding for keyboard-configuration.
  * Simply use cp instead of dd to prepare USB stick.
  * Remove heading / from pxelinux.0, it seems to pose problem with some
    implementations. Thanks Ulrich Krause for the report.
  * Document that flexible-built USB keys do not show the boot menu by
    default, and document how to enable it. Thanks Filipus Klutiero for the
    report. Closes: #666105.
  * Document that installing an MBR is needed to get a bootable USB key.
  * Add armhf, s390x architectures, comment hppa architecture.
  * Enable korean language.
  * Use base-system-size and task-desktop-lxde-inst instead of hardcoding
    install size in chroot method.
  * Advise to install ssh and set root passwd in chroot method, thanks Michael
    Stapelberg for the patch. Closes: #413649.
  * Remove PA-RISC architecture from documented supported list.
  * Add partman-lvm/confirm_nooverwrite to preseed example. Closes: #610282,
    #609704.
  * Update scripts and entities to wheezy name.
  * Add myself as uploader.

  [ Steve McIntyre ]
  * Make it clearer how we expect users to write CDs to USB sticks.
    Closes: #680650.

  [ Joey Hess ]
  * Fix typo in example preseed. Closes: #612631

  [ Didier Raboud ]
  * Document win32-loader as a possible boot method. Closes: #444017.

  [ Colin Watson ]
  * The text frontend is available on most default install media.  Adjust
    the Boot Parameters section to say so.
  * Update url-us-keymap.  Thanks, Manfred Hampl; LP: #741134.
  * Document log_host and log_port.
  * Update link to installer/doc/devel/ to cope with the switch to git.

  [ Christian Perrier ]
  * Document preseed-md5 and keymap preseed aliases
    Closes: #621825, #621824, #681801
  * Add VCS-Browser to debian/control. Closes: #636937

  [ Martin Michlmayr ]
  * Update list of supported ARM devices.

  [ Miguel Figueiredo ]
  * Fix chroot install keyboard configuration. Closes: #634168.

  [ Julian Andres Klode ]
  * Use C.UTF-8 locale for chroot install. Closes: #634167.

  [ Joey Hess ]
  * Remove dead link to Phoenix large disk BIOS faq. Closes: #638268
  * Add a pointer to the unofficial non-free CDs with firmware.
  * 1 gb USB key now needed for hd-media. Closes: #666090

  [ Vincent McIntyre ]
  * Mention DEBCONF_DEBUG. Closes: #668572.

  [ Milan Kupcevic ]
  * Clarify how to boot PowerMacs from external Firewire and internal
    factory default CD/DVD drives. Closes: #378119.
  * Document how to boot Pegasos II from factory default CD/DVD drive.

  [ Nozomu Kurasawa ]
  * Fix xml file test. Closes: #684834.

 -- Samuel Thibault <sthibault@debian.org>  Sun, 26 Aug 2012 02:16:10 +0200

installation-guide (20110122) unstable; urgency=low

  [ Frans Pop ]
  * List myself as one of the main authors in the administrativa appendix.
  * Clarify IP addresses in example for booting SS4000-E (arm). Thanks to
    Miroslav Kure for the patch.
  * Add link to boot screen section in accessibility section. Closes: #579954.

  [ Martin Michlmayr ]
  * Update links for ARM images.

  [ Samuel Thibault ]
  * Update brltty version.
  * Document booting from DOS (Closes: Bug#518808).
  * Add non-Linux infrastructure to the build system.
  * Add kFreeBSD infrastructure.
  * Replace Linuxish bits with per-port entities.
  * Rephrase Hurd-specific paragraph explaining that Debian GNU/Hurd is not
    Linux.
  * Add a "What is Debian GNU/kFreeBSD" section.
  * Add the list of architectures supported by the kFreeBSD port.
  * Restrict "Board Devices" accessibility section to Linux.
  * Fix port URL for non-Linux ports.
  * Fix "hardware" part for non-Linux ports. Now needs fine-tune from BSD
    people.
  * Fix "boot-installer" part for non-Linux ports. Still needs extensive
    review from BSD people.
  * Fix "preparing", "using-d-i", "boot-new", "post-install", "howto",
    "preseed", "partitioning", and "random-bits" parts for non-Linux ports.
  * Factorize os-specific parameters in build/arch-options.
  * Rename debian entity to debian-gnu. Introduce new debian entity which just
    stands for "Debian".
  * Rename Mandrake into Mandriva (Closes: Bug#601308).
  * Update installation sizes for amd64 instead of i386.
  * Mention Windows 2003, Vista, and 7.
  * Fix graphical boot options.
  * Move user setup to before clock setup in "Using the Debian Installer" and
    "Automating the installation using preseeding".
  * Document dpkg-reconfigure keyboard-configuration instead of kbd-config.
  * Add installation-guide-kfreebsd-{i386,amd64} packages.
  * Reference Debian Installer modules documentation from the preseed section
    (Closes: Bug#603159).
  * Move boot parameters subsections from inside the debian installer parameters
    section, to which they don't really belong.
  * Make subsection Installation Over the Network a direct child of Using
    Individual Components instead of hiding it in "Miscellaneous".
  * Rename 6.3.8 "Miscellaneous" into "Troubleshooting".
  * Fix default tftp directory from /var/lib/tftpboot to /srv/tftp, thanks
    Charles Plessy (Closes: Bug#606725).
  * Enable Spanish and Swedish translations (almost up-to-date).
  * Reword i386 and amd64 arch names to be consistent with the corresponding
    release-notes change: Intel x86  32-bit PC, AMD64  64-bit PC.
  * Add keyboard-configuration/xkb-keymap preseed variable.
    (Closes: Bug#599772)

  [ Joey Hess ]
  * Update USB stick documentation to reflect isohybird mini.iso files,
    as generated by debian-installer >= 20100913.

  [ Christian Perrier ]
  * Remove obsolete reference to the replicator package
    Closes: #597983

  [ Maximilian Attems ]
  * Remove obsolete reference to kernel-img.conf

  [ Colin Watson ]
  * Fix "/etc/init.d/dhcpd3-server" typo (should be
    /etc/init.d/dhcp3-server), and unfuzzy all translations (LP: #666726).

  [ Joey Hess ]
  * Updated USB stick documentation to describe the much simpler, more
    flexible, and likely more robust use of isohybrid images. All i386
    and amd64 ISO images are now isohybrid.
  * Remove documentation of no longer supported
    grub-installer/grub2_instead_of_grub_legacy preseed. Closes: #610739

 -- Christian Perrier <bubulle@debian.org>  Sat, 22 Jan 2011 13:16:49 +0100

installation-guide (20100518ubuntu12) vivid; urgency=medium

  * Cherry-picked changes:
    - Update documentation for changes to the multi partitioning scheme: /usr
      is no longer made onto its own separate partition, but rather included
      with /.
    - Replace -- with --- in details about how to pass parameters to the kernel
      that need to be passed on to the installed system. (LP: #1427252)

 -- Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com>  Sat, 28 Feb 2015 10:27:06 -0500

installation-guide (20100518ubuntu11) vivid; urgency=low

  [ Doug Smythies ]
  * Bump versions and names for Trusty, including kernel and GNOME.
  * Include Changes as per MP 190783, as I got it to build.
  * Bump kernel version for Utopic.

  [ Iain Lane ]
  * Bump names for Utopic, including GNOME but not kernel

  [ Colin Watson ]
  * Stop describing Kickstart support as "preliminary".

  [ Mathieu Trudel-Lapierre ]
  * Add documentation for the live-installer/net-image preseed. (LP: #1368700)
  * Bump versions and names for Vivid, including kernel, but not GNOME: not
    all apps are 3.14 yet, so it seems better to keep it to the lowest version
    until most packages are 3.14.

 -- Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com>  Wed, 28 Jan 2015 16:12:19 -0500

installation-guide (20100518ubuntu10) saucy; urgency=low

  * Bump versions and names for Saucy, including kernel and GNOME.
  * Rename armel manual to armhf, and s/armel/armhf/ throughout.

 -- Adam Conrad <adconrad@ubuntu.com>  Sun, 04 Aug 2013 02:13:22 +0100

installation-guide (20100518ubuntu9) raring; urgency=low

  * Bump kernelversion
  * Bump release version and names for Raring. (LP: #1169800)
  * Use entity subsitution in an xml file.

 -- doug smythies <dsmythies@telus.net>  Tue, 16 Apr 2013 21:08:00 -0700

installation-guide (20100518ubuntu8) quantal; urgency=low

  * Document network-console/authorized_keys_url feature (LP: #1042480)

 -- dann frazier <dann.frazier@canonical.com>  Mon, 17 Sep 2012 11:11:49 +0100

installation-guide (20100518ubuntu7) quantal; urgency=low

  * Drop build-dependency on poxml for now, since we don't ship any
    translations (LP: #1031478).
  * Bump kernelversion to 3.5.
  * Bump GNOME version to 3.6.
  * Bump release version and names for Quantal.

 -- Colin Watson <cjwatson@ubuntu.com>  Wed, 01 Aug 2012 15:00:44 +0100

installation-guide (20100518ubuntu6) precise; urgency=low

  * Bump kernelversion to 3.2.
  * Bump GNOME version to 3.4.
  * Bump release version and names for Precise.
  * Add an example Kickstart configuration file, thanks to Ameet Paranjape
    (LP: #969568).
  * Expand &archive-mirror; to archive.ubuntu.com when generating example
    preseed file (LP: #955607).

 -- Colin Watson <cjwatson@ubuntu.com>  Thu, 05 Apr 2012 09:40:37 +0100

installation-guide (20100518ubuntu5) oneiric; urgency=low

  * Bump kernelversion to 3.0.
  * Remove some 2.6 kernel specifics.
  * Bump GNOME version to 3.0.
  * Bump release version and names for Oneiric.
  * Replace 'netcfg/disable_dhcp' with 'netcfg/disable_autoconfig'
    throughout.  (We could probably do with some description of the new IPv6
    behaviour as well, but this is better than nothing.)
  * Replace 'console-setup/modelcode', 'console-setup/layoutcode', and
    'console-setup/variantcode' with 'keyboard-configuration/modelcode',
    'keyboard-configuration/layoutcode', and
    'keyboard-configuration/variantcode' respectively (LP: #800822).

 -- Colin Watson <cjwatson@ubuntu.com>  Mon, 26 Sep 2011 16:06:37 +0100

installation-guide (20100518ubuntu4) natty; urgency=low

  * Update URL to Red Hat Kickstart documentation.
  * Update url-us-keymap (thanks, Manfred Hampl; LP: #741134).
  * Document that i586 processors and i686 without cmov are no longer
    supported (LP: #688195).

 -- Colin Watson <cjwatson@ubuntu.com>  Wed, 20 Apr 2011 17:30:04 +0100

installation-guide (20100518ubuntu3) natty; urgency=low

  * Apply Ubuntu branding to i386 "CPU, Main Boards, and Video Support"
    section; there's one remaining instance of "Debian", but it makes sense
    in context (LP: #689153).
  * Apply Ubuntu branding to "Braille Displays", "Hardware Speech
    Synthesis", and powerpc "CPU, Main Boards, and Video Support" sections
    (thanks, Mahyuddin Susanto; LP: #689157).

 -- Colin Watson <cjwatson@ubuntu.com>  Wed, 26 Jan 2011 17:48:51 +0000

installation-guide (20100518ubuntu2) natty; urgency=low

  * Bump kernelversion to 2.6.37.
  * Bump GNOME version to 2.32.
  * Bump release version and names for Natty.
  * Disable building for ia64 and sparc (LP: #669669).
  * Fix formatting error in supported architectures table (LP: #666393).

 -- Colin Watson <cjwatson@ubuntu.com>  Thu, 04 Nov 2010 16:45:27 +0000

installation-guide (20100518ubuntu1) maverick; urgency=low

  * Resynchronise with Debian.  Remaining changes:
    - Build only English (for now, until we figure out how to avoid trashing
      translations quite so badly with Ubuntu branding etc.).
    - Build only Ubuntu architectures (amd64, armel, i386, ia64, powerpc,
      sparc).
    - Extensive (although possibly incomplete) Ubuntu branding, adjustments
      for our mirror layout, etc.
    - Add "Ubuntu and Debian" and "What is Ubuntu?" section, text borrowed
      from the Ubuntu web site. Disable the "What is Debian GNU/Linux?"
      section.
    - Direct installation reports to ubuntu-users for now.
    - Adjust various memory and disk space requirements. Talk about the
      default Ubuntu desktop and Ubuntu tasks rather than Debian tasks.
    - Document mounting /sys in various places.
    - Unset supports-floppy-boot for all our architectures.
    - Add a few more supports-floppy-boot and bootable-usb conditionals.
    - Document our root password and sudo arrangements.
    - Document netboot-style USB images. Still mention the hd-media images,
      but they're downplayed since many USB sticks are too small for a full
      Ubuntu ISO image.
    - Document Kickstart installations (currently only the basics, a
      reference to Red Hat's documentation, and the differences from
      Anaconda).
    - Update keyboard preseeding documentation for console-setup.
    - Update chroot-install guide for console-setup and language packs; add
      a bit more advice about installing grub.
    - Disable documentation of win32-loader.
    - Document new simplified partman preseeding.
    - Document mirror/udeb/components.
    - Document apt-setup/security_path.
    - Don't recommend passing http://archive.ubuntu.com/ubuntu to
      debootstrap.
    - Document pkgsel/update-policy.
    - Document preseeding user-setup's home directory encryption facility.
    - Improve examples of tasksel/first preseeding to avoid mentioning
      standard, which is installed by default.
    - Document partman-auto-lvm/guided_size.
    - Document scheme for preseeding the use of CC.archive.ubuntu.com
      mirrors.
    - Document pkgsel/updatedb.
    - Document partman/default_filesystem.
    - Document how to override the weak password check.
    - Remove comments about automatic installation methods that have been
      removed from Ubuntu.
    - Remove documentation of
      base-installer/kernel/linux/initramfs-generators; setting this to
      anything other than the default will cause the installer to fail.
  * Adjust list of armel architectures for Ubuntu.
  * Bump kernelversion to 2.6.35.
  * Bump release version and names for Maverick.
  * Update Canonical's copyright years.

 -- Colin Watson <cjwatson@ubuntu.com>  Fri, 25 Jun 2010 10:28:30 +0100

installation-guide (20100518) unstable; urgency=low

  [ Colin Watson ]
  * Note that partman-auto/init_automatically_partition is only honoured if
    partman-auto/method is not set.
  * Document the use of grub-installer/grub2_instead_of_grub_legacy to
    switch back to GRUB Legacy for those who need it.
  * Remove spurious quoting in network-console documentation, pointed out by
    Jonathan Amery.
  * partman now asks a slightly different (and less scary) confirmation
    question if it doesn't appear that any data is being overwritten.
    Document the associated preseeding changes.

  [ Frans Pop ]
  * Add missing hyphen in command "kbd-config". With thanks to Tapio Lehtonen.
    Closes: #545584.
  * Include a caution in the IA64 version of the manual against using IA64
    for "normal" 64-bit Intel systems.
  * Disable the variant for the alpha architecture: it is being dropped as a
    release architecture for Squeeze.
  * When updating PO files, set them to a standard width of 79 (same as used
    for l10n-sync for D-I master PO files).
  * Document that Debian now installs Recommends by default and how to disable
    that.
  * x86 USB boot: two improvements suggested by Timo Juhani Lindfors and one
    by Samuel Thibault. Closes: #532437, #532440, #548534.
  * welcome: add a link to www.kernel.org and remove the no longer valid link
    to www.kerneltraffic.org. Closes: #331523.
  * Document new help functionality.
  * Update for changes in locale selection in localechooser 2.17 and 2.18:
    - selecting a different country is now always possible at high priority;
    - change in order of selection of additional locales and default locale;
    - selection of a preferred locale if a combination of language and country
      was selected for which no locale exists;
    - support for separate preseeding of language, country and locale.
  * Mention option to select UTC as time zone at medium/low priority.

  [ Martin Michlmayr ]
  * Mention more Kirkwood-based devices that are supported.
  * Document where to get Kirkwood installer images from.
  * Fix the preseeding example to say that allow_unauthenticated is a
    boolean (and not a string).

  [ Joey Hess ]
  * Reword section on installer's support of wireless.

  [ Steve Langasek ]
  * Update the appendix on chroot installs to not recommend mapping 127.0.0.1
    to the hostname; use 127.0.1.1, the same as the installer itself does.

  [ Frans Pop ]
  * Update and extend information on preseeding partman. Based on a patch from
    Vincent McIntyre. Closes: #511053.
  * Use 'ip addr' instead of 'ifconfig' to get MAC address for RARP setup.
  * Update information on setting up a TFTP server.
  * As of Lenny syslinux no longer requires that the TFTP server supports the
    'tsize' option (see #570273). With thanks to Ferenc Wagner.
  * Using D-I: add subsection intruducing supported partitioning options,
    including a list of supported file systems.
  * Disabling framebuffer on x86 now also requires passing 'vga=normal'. With
    thanks to Samuel Thibault. Closes: #577461.
  * Update for switch of G-I from DirectFB to X.Org.
  * Update kernel version to 2.6.32, number of Debian Developers and program
    versions.
  * Update URL for Debian mirror list. Closes: #579935.
  * Disable Korean, Portuguese (BR), Spanish and Swedish translations as they
    are incomplete.

 -- Frans Pop <fjp@debian.org>  Tue, 18 May 2010 03:51:35 +0200

installation-guide (20090901) unstable; urgency=low

  [ Frans Pop ]
  * Switch over from Lenny to Squeeze. Current kernel is 2.6.29.
  * Change the Debian designation for the ARM architecture from arm to armel.
    The internal 'arch-spec' and file naming convention remains "arm" in order
    to avoid unnecessary changes and work for translators.
  * Mention that TERM= can be passed as boot parameter to set the terminal type
    for serial console installs. Based on a patch suggested by Samuel Thibault.
    Closes: #524666.
  * Update copyright for 2009.

  [ Martin Michlmayr ]
  * Updates for ARM (armel):
    - Remove sections about Netwinder/CATS, which are no longer supported.
    - Update the "supported hardware" table.
    - Add a section about Marvell's Kirkwood, which is now supported.
  * Updates for MIPS:
    - Show some sections on mipsel that apply there too.
    - Say that the Cobalt Qube 2700 (Qube1) is no longer supported.
    - Remove everything about the Broadcom SWARM and BigSur since we no
      longer support these devices in the installer.

  [ Colin Watson ]
  * Merge from Ubuntu:
    - Document partman/mount_style, which controls how filesystems are
      mounted.
  * Document pkgsel/include/install-recommends.
  * partman/confirm_write_new_label was renamed to
    partman-partitioning/confirm_write_new_label in r50363, December 2007.
    Adjust preseeding documentation to match.

  [ Frans Pop ]
  * Document installation of localization tasks.
  * Document the debian-installer/add-kernel-opts preconfiguration option.
  * Add links to website documenting braille keybindings. Thanks to
    Samuel Thibault for the patch. Closes: #534260.
  * Fix typo in chroot install appendix. Closes: #535494.
  * Improve bootp documentation. Thanks to Holger Wansing for the patch.
    Closes: #282614.
  * On s390 the system clock is not modified by the installer.

  [ Otavio Salvador ]
  * Document the netcfg/enable preseeding that allows for disabling the
    network configuration. Thanks to Anthony L. Awtrey <tony@awtrey.com>
    for the patch.

  [ Frans Pop ]
  * Move most build dependencies to Build-Depends-Indep.

 -- Frans Pop <fjp@debian.org>  Tue, 01 Sep 2009 14:10:10 +0200

installation-guide (20090427) unstable; urgency=low

  [ Colin Watson ]
  * Document partman/early_command (added in partman-base 129).
  * Add note about preseeding ownership to preseed-seenflag section, since I
    had a user confused by this who hadn't found the note elsewhere
    explaining owners.
  * Use /dev/sda and /dev/sdb in the RAID preseeding example rather than
    /dev/discs/disc0/disc and /dev/discs/disc1/disc, since the latter
    devices no longer exist.
  * Document noshell boot parameter. See #504381.
  * Clarify behaviour of "auto" preseed alias.
  * Clarify that preseeding aliases are only aliases for question names, and
    that a value is always needed as well.
  * Apparently you can pass extra boot parameters to OpenBoot at the end of
    the 'boot' command. Document this as it has been known to cause some
    confusion.

  [ Frans Pop ]
  * Document preseeding of network-console now that its postinst can be
    relied on to be executed.
  * Update info on passing boot parameter for PPPoE.
  * Explain Standard system task.
  * Add LXDE desktop environment.
  * Mention option to select desktop environment from boot menu for x86 CDs.
  * Add task sizes for alternative desktop environments.
  * chroot install: 'tzconfig' is deprecated for 'dpkg-reconfigure tzdata'.
    Closes: #520582.
  * Booting using LILO or GRUB: minor improvements. Closes: #519508.
  * Fix example how to generate md5-encoded password. Closes: #518018.
  * Fix missing tags in Japanese translation. Closes: #509372.
  * Improve script that extracts preconfiguration example file from appendix.

  [ Samuel Thibault ]
  * Document accessibility support. Closes: #509371.

  [ Frans Pop ]
  * (Re-)enable Vietnamese translation (not fully up-to-date).
  * Convert PO translations for Finnish, Korean and Vietnamese to XML using
    their last fully translated version.
  * Release update of the manual for Lenny. Six translations have not been
    updated: Brazilian, Catalan, Finnish, Korean, Spanish and Vietnamese.

 -- Frans Pop <fjp@debian.org>  Mon, 27 Apr 2009 13:23:30 +0200

installation-guide (20081208ubuntu7) lucid; urgency=low

  * Document partman/confirm_nooverwrite.

 -- Colin Watson <cjwatson@ubuntu.com>  Tue, 30 Mar 2010 09:39:43 +0100

installation-guide (20081208ubuntu6) lucid; urgency=low

  * Bump kernelversion to 2.6.32.
  * Bump x11ver to 7.5.
  * Bump GNOME version to 2.30.
  * Bump release version and names for Lucid (LP: #501572).
  * Remove comments about automatic installation methods that have been
    removed from Ubuntu (LP: #496554).
  * Remove documentation of
    base-installer/kernel/linux/initramfs-generators; setting this to
    anything other than the default will cause the installer to fail
    (LP: #415469).
  * Stop building for lpia.

 -- Colin Watson <cjwatson@ubuntu.com>  Fri, 12 Mar 2010 18:22:07 +0000

installation-guide (20081208ubuntu5) karmic; urgency=low

  * Remove link to kerneltraffic.org since it no longer contains any
    linux kernel information (LP: #415108)

 -- Brian Murray <brian@ubuntu.com>  Fri, 28 Aug 2009 10:42:59 -0700

installation-guide (20081208ubuntu4) karmic; urgency=low

  * Document how to override the weak password check.
  * Disable building for hppa, since it's EOL.

 -- Colin Watson <cjwatson@ubuntu.com>  Wed, 15 Jul 2009 12:15:22 +0100

installation-guide (20081208ubuntu3) jaunty; urgency=low

  * Document pkgsel/updatedb (LP: #8195).
  * Document partman/default_filesystem.
  * Document controlling how partitions are mounted (LP: #347817).
  * Mention that Kickstart LVM configuration is now experimentally
    supported, and document the pieces currently known to be missing.
  * Update Canonical's copyright years.

 -- Colin Watson <cjwatson@ubuntu.com>  Thu, 16 Apr 2009 21:56:50 +0100

installation-guide (20081208ubuntu2) jaunty; urgency=low

  * Document new scheme for preseeding the use of CC.archive.ubuntu.com
    mirrors (LP: #18225).
  * Bump kernelversion to 2.6.28.

 -- Colin Watson <cjwatson@ubuntu.com>  Thu, 05 Mar 2009 14:38:51 +0000

installation-guide (20081208ubuntu1) jaunty; urgency=low

  * Resynchronise with Debian. Remaining changes:
    - Build only English (for now, until we figure out how to avoid trashing
      translations quite so badly with Ubuntu branding etc.).
    - Build only Ubuntu architectures (amd64, hppa, i386, ia64, lpia,
      powerpc, sparc).
    - Extensive (although possibly incomplete) Ubuntu branding, adjustments
      for our mirror layout, etc.
    - Add "Ubuntu and Debian" and "What is Ubuntu?" section, text borrowed
      from the Ubuntu web site. Disable the "What is Debian GNU/Linux?"
      section.
    - Direct installation reports to ubuntu-users for now.
    - Adjust various memory and disk space requirements. Talk about the
      default Ubuntu desktop and Ubuntu tasks rather than Debian tasks.
    - Document mounting /sys in various places.
    - Unset supports-floppy-boot for all our architectures.
    - Add a few more supports-floppy-boot and bootable-usb conditionals.
    - Document our root password and sudo arrangements.
    - Document netboot-style USB images. Still mention the hd-media images,
      but they're downplayed since many USB sticks are too small for a full
      Ubuntu ISO image.
    - Document Kickstart installations (currently only the basics, a
      reference to Red Hat's documentation, and the differences from
      Anaconda).
    - Update keyboard preseeding documentation for console-setup.
    - Update chroot-install guide for console-setup and language packs; add
      a bit more advice about installing grub.
    - Disable documentation of win32-loader.
    - Document new simplified partman preseeding.
    - Document mirror/udeb/components.
    - Document apt-setup/security_path.
    - Don't recommend passing http://archive.ubuntu.com/ubuntu to
      debootstrap.
    - Document partman/early_command.
    - Document pkgsel/update-policy.
  * Document that values for Kickstart's preseed command containing spaces
    must be quoted.
  * Document pkgsel/install-recommends.
  * Replace documentation on preseeding user-setup's encrypted private
    directory facility with documentation on preseeding its new home
    directory encryption facility (LP: #323174).
  * Improve examples of tasksel/first preseeding to avoid mentioning
    standard, which is installed by default.
  * Document partman-auto-lvm/guided_size.

 -- Colin Watson <cjwatson@ubuntu.com>  Thu, 05 Mar 2009 08:37:50 +0000

installation-guide (20081208) unstable; urgency=low

  * Move documentation files to separate subdirectory doc.
  * Document how the manual is built for the Debian website.
  * Correct error spotted by Osamu Aoki: text web browser is w3m, not w3c.
  * Correct two minor errors in preconfiguration examples. With thanks to
    Andreas Beckmann for reporting them. Closes: #507544.
  * Add new script check-preseed to help translators check if their
    translation of the appendix about preseeding is complete/correct.
  * Re-enable Spanish translation.

 -- Frans Pop <fjp@debian.org>  Mon, 08 Dec 2008 09:50:48 +0100

installation-guide (20081113ubuntu1) jaunty; urgency=low

  * Document user-setup encrypted private directory preseeding.
  * Resynchronise with Debian. Remaining changes:
    - Build only English (for now, until we figure out how to avoid trashing
      translations quite so badly with Ubuntu branding etc.).
    - Build only Ubuntu architectures (amd64, hppa, i386, ia64, lpia,
      powerpc, sparc).
    - Extensive (although possibly incomplete) Ubuntu branding, adjustments
      for our mirror layout, etc.
    - Add "Ubuntu and Debian" and "What is Ubuntu?" section, text borrowed
      from the Ubuntu web site. Disable the "What is Debian GNU/Linux?"
      section.
    - Direct installation reports to ubuntu-users for now.
    - Adjust various memory and disk space requirements. Talk about the
      default Ubuntu desktop and Ubuntu tasks rather than Debian tasks.
    - Document mounting /sys in various places.
    - Unset supports-floppy-boot for all our architectures.
    - Add a few more supports-floppy-boot and bootable-usb conditionals.
    - Document our root password and sudo arrangements.
    - Document netboot-style USB images. Still mention the hd-media images,
      but they're downplayed since many USB sticks are too small for a full
      Ubuntu ISO image.
    - Document Kickstart installations (currently only the basics, a
      reference to Red Hat's documentation, and the differences from
      Anaconda).
    - Update keyboard preseeding documentation for console-setup.
    - Update chroot-install guide for console-setup and language packs; add
      a bit more advice about installing grub.
    - Disable documentation of win32-loader.
    - Document new simplified partman preseeding.
    - Document mirror/udeb/components.
    - Document apt-setup/security_path.
    - Don't recommend passing http://archive.ubuntu.com/ubuntu to
      debootstrap.
    - Document partman/early_command.
    - Document pkgsel/update-policy.
  * Bump kernelversion to 2.6.27.
  * Bump GNOME version to 2.26.
  * Bump release version and names for Jaunty.
  * Re-enable documentation of the GTK frontend.

 -- Colin Watson <cjwatson@ubuntu.com>  Thu, 20 Nov 2008 19:15:23 +0000

installation-guide (20081113) unstable; urgency=medium

  [ Martin Michlmayr ]
  * Remove everything about DECstation since these machines are
    no longer supported.
  * Provide information about all iop32x and orion5x installation media.
  * Describe Orion and Versatile as supported platforms.
  * Fix the NSLU2 download link.
  * Describe MIPS Malta.
  * Document netcfg/get_gateway=none

  [ Frans Pop ]
  * Update copyright to 2008.
  * Update description of country selection in line with recent changes in
    localechooser.
  * Request output of lspci -knn in installation reports.
  * Apply patch from Frank Lichtenheld to improve netboot instructions for
    PowerPC. Closes: #275565.

  [ Joey Hess ]
  * Comment out partman-auto/disk setting in preseed since lenny d-i will
    automatically work w/o it if there's just 1 disk. Closes: #490287
  * Document hw-detect/load_firmware. Closes: #493845

  [ Ryan Niebur ]
  * Added documentation for RAID 6 and 10.

  [ Jérémy Bobbio ]
  * Explicitly mention that preseeded keymaps must be known to d-i.
    Closes: #493720
  * Mention parman-md/device_remove_md in preseeding appendix.

  [ Frans Pop ]
  * Restructure supported hardware section.
  * Update of supported subarches/flavors for powerpc.
  * hardware-supported:
    - suppress m68k from arches table, unless building for m68k
    - show which subarches are supported by arm/armel
    - various minor updates and improvements
  * Remove section on X.Org preseeding as all descibed options are obsolete.
  * Document support in the installer for loading missing firmware.
  * Update partman preseeding: use Choices-C values instead of descriptions.
  * Correct short description of iso-scan. Closes: #501175.
  * PowerPC currently doesn't have hd-media images, so is not "bootable-usb".
  * There are no floppy images for i386 for Lenny; disable relevant sections.
  * Major rewrite of section about preparing a USB stick for booting the
    installer. Closes: #500206, #500283.
  * Update preconfiguration section for latest changes in the preseed udebs
    and clarify preseeding of language/country.
  * Remove duplicated text about using tasksel. Closes: #502773.
  * Update task sizes and nr. of packages per arch and current nr. of Debian
    Developers for Lenny.
  * (Re-)enable Catalan, Greek, Finnish, Japanese and Korean translations.
  * Disable Vietnamese translations as it is incomplete.

 -- Frans Pop <fjp@debian.org>  Thu, 13 Nov 2008 10:15:38 +0100

installation-guide (20080520ubuntu3) intrepid; urgency=low

  * Document pkgsel/update-policy.

 -- Colin Watson <cjwatson@ubuntu.com>  Sun, 19 Oct 2008 09:11:40 +0100

installation-guide (20080520ubuntu2) intrepid; urgency=low

  * Don't recommend passing http://archive.ubuntu.com/ubuntu to debootstrap;
    it can figure out a good default for itself, and that URL is wrong for
    ports architectures (see
    https://answers.launchpad.net/ubuntu/+source/debian-installer/+question/38180).
  * Document partman/early_command.
  * Build installation-guide-lpia package.

 -- Colin Watson <cjwatson@ubuntu.com>  Mon, 18 Aug 2008 08:25:33 +0100

installation-guide (20080520ubuntu1) intrepid; urgency=low

  * Drop bogus "/ubuntu" from URL to example-preseed on help.ubuntu.com.
  * Resynchronise with Debian. Remaining changes:
    - Build only English (for now, until we figure out how to avoid trashing
      translations quite so badly with Ubuntu branding etc.).
    - Build only Ubuntu architectures (amd64, hppa, i386, ia64, powerpc,
      sparc).
    - Extensive (although possibly incomplete) Ubuntu branding, adjustments
      for our mirror layout, etc.
    - Add "Ubuntu and Debian" and "What is Ubuntu?" section, text borrowed
      from the Ubuntu web site. Disable the "What is Debian GNU/Linux?"
      section.
    - Direct installation reports to ubuntu-users for now.
    - Adjust various memory and disk space requirements. Talk about the
      default Ubuntu desktop and Ubuntu tasks rather than Debian tasks.
    - Document mounting /sys in various places.
    - Unset supports-floppy-boot for all our architectures.
    - Add a few more supports-floppy-boot and bootable-usb conditionals.
    - Document our root password and sudo arrangements.
    - Document netboot-style USB images. Still mention the hd-media images,
      but they're downplayed since many USB sticks are too small for a full
      Ubuntu ISO image.
    - Document Kickstart installations (currently only the basics, a
      reference to Red Hat's documentation, and the differences from
      Anaconda).
    - Update keyboard preseeding documentation for console-setup.
    - Update chroot-install guide for console-setup and language packs; add
      a bit more advice about installing grub.
    - Disable documentation of the GTK frontend.
    - Disable documentation of win32-loader.
    - Document new simplified partman preseeding.
    - Document mirror/udeb/components.
    - Document apt-setup/security_path.
  * Bump kernelversion to 2.6.26 (main architectures) and 2.6.25 (ports).
  * Bump GNOME version to 2.24.
  * Bump release version and names for Intrepid.

 -- Colin Watson <cjwatson@ubuntu.com>  Mon, 23 Jun 2008 13:15:29 +0100

installation-guide (20080520) unstable; urgency=medium

  [ Frans Pop ]
  * Clarify console switching for the graphical installer.
    Thanks to Tim Richardson for the suggestion.

  [ Colin Watson ]
  * Spell "multiselect" correctly in apt-setup/services-select preseeding
    example.
  * Note that an empty preseed file is equivalent to a normal manual
    installation (thanks, Nathan Sutton).

  [ Robert Millan ]
  * Document how to start the installer from Windows.

  [ Frans Pop ]
  * Document installation using multiple CD/DVDs; update text about using a
    mirror in line with that.
  * Lenny will be version 5.0.
  * Warn about boot issues when using RAID on the root file system.
  * Update task selection section for changes in desktop task preseeding.
  * Fix double / in links, spotted by Stanislav Gromov. Closes: #472813.
  * Document new boot parameters to define mouse protocol and device (port)
    for the graphical installer.
  * Correct command to use to allow preseeding of netcfg when using a
    preconfiguration file downloaded from a server (preseed/url).
    Thanks to Durk Strooisma for the report and analysis. Closes: #476524.
  * Specify for which release the example preseed file is valid.
  * Document preseeding of grub password.
  * Update how to suppress the removal of existing LVM data using preseeding.
  * Update version of X11 used in Lenny.
  * Update kernel versions.
  * Update memory requirements for i386 and amd64. Elaborate on installing
    systems with less memory than the listed minimum.
  * Update known issues for graphical installer: entropy gathering for
    encrypted partitioning is now supported; localechooser now has nice
    columns but other components still need to be done.
  * Document finish-install/keep-consoles boot parameter and preseeding.
  * Define two new translatable entities: escapekey and tabkey.
  * Update task sizes, and number of packages and developers.
  * x86: update description of the boot screen for the new syslinux vesamenu.

  [ Joey Hess ]
  * Remove autopartkit from the module list.

  [ Frans Pop ]
  * Disable Catalan, Korean and Japanese translations as they are incomplete.
  * Upload with priority medium because of D-I Beta 2 release.

 -- Frans Pop <fjp@debian.org>  Sat, 10 May 2008 17:59:43 +0200

installation-guide (20080211ubuntu4) hardy; urgency=low

  * Document GRUB password preseeding (LP: #42019).

 -- Colin Watson <cjwatson@ubuntu.com>  Tue, 15 Apr 2008 02:04:27 +0100

installation-guide (20080211ubuntu3) hardy; urgency=low

  * Document mirror/udeb/components (LP: #191262).
  * Document apt-setup/security_path (LP: #51470).
  * Document console-setup/modelcode=SKIP (LP: #59889).

 -- Colin Watson <cjwatson@ubuntu.com>  Mon, 31 Mar 2008 14:52:32 +0100

installation-guide (20080211ubuntu2) hardy; urgency=low

  * Document new simplified partman preseeding (LP: #181296).

 -- Colin Watson <cjwatson@ubuntu.com>  Fri, 29 Feb 2008 12:15:34 +0000

installation-guide (20080211ubuntu1) hardy; urgency=low

  * Resynchronise with Debian. Remaining changes:
    - Build only English (for now, until we figure out how to avoid trashing
      translations quite so badly with Ubuntu branding etc.).
    - Build only Ubuntu architectures (amd64, hppa, i386, ia64, powerpc,
      sparc).
    - Extensive (although possibly incomplete) Ubuntu branding, adjustments
      for our mirror layout, etc.
    - Add "Ubuntu and Debian" and "What is Ubuntu?" section, text borrowed
      from the Ubuntu web site. Disable the "What is Debian GNU/Linux?"
      section.
    - Direct installation reports to ubuntu-users for now.
    - Adjust various memory and disk space requirements. Talk about the
      default Ubuntu desktop and Ubuntu tasks rather than Debian tasks.
    - Document mounting /sys in various places.
    - Unset supports-floppy-boot for all our architectures.
    - Add a few more supports-floppy-boot and bootable-usb conditionals.
    - Document our root password and sudo arrangements.
    - Document netboot-style USB images. Still mention the hd-media images,
      but they're downplayed since many USB sticks are too small for a full
      Ubuntu ISO image.
    - Document Kickstart installations (currently only the basics, a
      reference to Red Hat's documentation, and the differences from
      Anaconda).
    - Note that an empty preseed file is equivalent to a normal manual
      installation.
    - Update keyboard preseeding documentation for console-setup.
    - Update chroot-install guide for console-setup and language packs; add
      a bit more advice about installing grub.
    - Disable documentation of the GTK frontend.
  * Bump kernelversion to 2.6.24.
  * Bump GNOME version to 2.22.
  * Bump release version and names for Hardy.

 -- Colin Watson <cjwatson@ubuntu.com>  Mon, 25 Feb 2008 12:37:48 +0000

installation-guide (20080211) unstable; urgency=low

  [ Martin Michlmayr ]
  * Remove all information about RiscPC because these machines are
    no longer supported.

  [ Joey Hess ]
  * Document the new tasksel/desktop preseed for lenny.

  [ Frans Pop ]
  * Add cm-super to build dependencies as that improves the quality of the
    Russian PDF version.
  * Suggest 'nousb' instead of debian-installer/probe/usb as USB modules are
    now loaded automatically.
  * Fix incorrect instruction for preseeding local repositories.
    Thanks to Rémi Demarthe. Closes: #420894.
  * Add translatable entities for Continue, Cancel and Go Back buttons.
  * Add build dependencies on texlive-lang-* packages for languages for which
    the manual has translations.
  * Document new boot parameters "lowmem" and "dmraid".
  * Document new location of graphical mini.iso images.
  * Document base-installer/kernel/image preseed.

  [ Joey Hess ]
  * Document new lilo-installer/skip preseed.
  * Document passwd/user-default-groups preseed.

  [ Colin Watson ]
  * Recommend preseeding mirror/country to "manual" rather than "enter
    information manually" (choose-mirror 2.17).
  * Remove text talking about devfs-style device names, which are no longer
    supported.
  * preparing/minimum-hardware-reqts.xml: Pluralise "gigabyte" consistently.

  [ Joey Hess ]
  * Document clock-setup/ntp.

  [ Frans Pop ]
  * Support for sparc32 has been discontinued for Lenny. This also means that
    booting from floppy is no longer supported for sparc.
  * Extend the documentation of apt-setup, especially the decision whether or
    not to use a network mirror. Document selection of services.
  * Document new apt-setup/services-select and related hostname preseeds.
  * Add some information about creating device files in the appendix on chroot
    installs; also add a note that the appendix only covers the basic steps
    of a chroot install.
  * Warn against installing Debian while another OS is hibernated.

  [ Joey Hess ]
  * Document how to preseed partman-auto to use only available disk, no matter
    what it's name is.
  * debian/rules: call dh_md5sums.
  * Document debian-installer/exit/halt preseed.

  [ Colin Watson ]
  * Clarify that you need to actually provide an autopartitioning method as
    well as preseeding the partman confirmation messages.

  [ Frans Pop ]
  * Make copyright refer explicitly to GPL version 2 as that is the version
    included in the appendix; add reference to /usr/share/common-licenses to
    make Lintian happy.
  * Rename doc-base.TEMPLATE to TEMPLATE.doc-base to avoid its inclusion in
    the package for the first architecture. Closes: #416304.
  * Modify language codes that include a country for the doc-base document ID
    so they only contain valid characters.
  * Remove the PDF section in doc-base files if PDF format is not built for a
    language.
  * Update standards version to 3.7.3; no changes needed.
  * Patch from Changwoo Ryu to replace Hangul-ucs with ko.tex fonts for Korean
    PDF version of the manual. Closes: #457137.
  * using-d-i:
    - move clock-setup, tzsetup and user-setup to reflect their changed
      position in the installation procedure
    - mention that clock-setup will now attempt to set the system time from a
      time server
    - split clock-setup as part is now executed during finish-install
    - add instructions on how a different time zone from the one(s) that match
      the selected location can be set (as that is a FAQ)
    - improve readability of partman section by using separate subsections for
      guided and manual partitioning
    - network-console: add information about dropped connections and how to
      avoid that (closes: #458154); add footnote with command to remove a host
      from the known_hosts file
  * howto, preseed: update for reordering of the installation procedure.
  * Change build dependency on gs-common to ghostscript.
  * Use --previous when updating PO files so translators can see the changes
    in a string.

  [ Colin Watson ]
  * Use &releasename; rather than hardcoding etch in sources.list
    recommendation for chroot installs. Closes: #458459.

  [ Frans Pop ]
  * Make UTF-8 the default encoding for the text version for all languages
    that still used ISO-8859-1.
  * Korean text version changed to UTF-8 on request of Changwoo Ryu.
  * Japanese text version changed to UTF-8 on request of KURASAWA Nozomu.
  * Enable PDF for Korean for website builds.
  * Disable Finnish, Hungarian and Spanish for this release as they have not
    been updated.

 -- Frans Pop <fjp@debian.org>  Mon, 11 Feb 2008 19:35:22 +0100

installation-guide (20070319ubuntu3) hardy; urgency=low

  * Set Vcs-Bzr for Ubuntu.
  * Document use of apt-install in Kickstart, and the fact that it only
    works with %post --nochroot (thanks, Ryan Lovett).
  * Document pkgsel/language-packs (LP: #145665).

 -- Colin Watson <cjwatson@ubuntu.com>  Mon, 28 Jan 2008 23:26:03 +0000

installation-guide (20070319ubuntu2) gutsy; urgency=low

  * Correct URLs pointing to example-preseed.txt (LP: #135502).

 -- Colin Watson <cjwatson@ubuntu.com>  Thu, 30 Aug 2007 13:00:45 +0100

installation-guide (20070319ubuntu1) gutsy; urgency=low

  * Resynchronise with Debian. Remaining changes:
    - Build only English (for now, until we figure out how to avoid trashing
      translations quite so badly with Ubuntu branding etc.).
    - Build only Ubuntu architectures (amd64, hppa, i386, ia64, powerpc,
      sparc).
    - Extensive (although possibly incomplete) Ubuntu branding, adjustments
      for our mirror layout, etc.
    - Add "Ubuntu and Debian" and "What is Ubuntu?" section, text borrowed
      from the Ubuntu web site. Disable the "What is Debian GNU/Linux?"
      section.
    - Direct installation reports to ubuntu-users for now.
    - Adjust various memory and disk space requirements. Talk about the
      default Ubuntu desktop and Ubuntu tasks rather than Debian tasks.
    - Document mounting /sys in various places.
    - Unset supports-floppy-boot for all our architectures.
    - Add a few more supports-floppy-boot and bootable-usb conditionals.
    - Document our root password and sudo arrangements.
    - Document netboot-style USB images. Still mention the hd-media images,
      but they're downplayed since many USB sticks are too small for a full
      Ubuntu ISO image.
    - Document Kickstart installations (currently only the basics, a
      reference to Red Hat's documentation, and the differences from
      Anaconda).
    - Note that an empty preseed file is equivalent to a normal manual
      installation.
    - Rename doc-base.TEMPLATE to TEMPLATE.doc-base.
    - Update keyboard preseeding documentation for console-setup.
    - Update chroot-install guide for console-setup and language packs; add
      a bit more advice about installing grub.
    - Remove text talking about devfs-style device names, which are no
      longer supported.
    - Fix links to web copies of installation manual and example preseed
      file.
  * Bump kernelversion to 2.6.22.
  * Bump x11ver to 7.3.
  * Bump GNOME version to 2.20.
  * Bump release version and names for Gutsy (LP: #119177).
  * Refer to the standard task rather than ubuntu-standard.
  * Disable documentation of the GTK frontend.
  * Remove latex-hangul-ucs-hlatex build-dependency, as we don't build for
    Korean.

 -- Colin Watson <cjwatson@ubuntu.com>  Mon, 23 Jul 2007 15:52:44 +0100

installation-guide (20070319) unstable; urgency=low

  [ Frans Pop ]
  * Cleaned up definitions of some entities and removed unused ones.
  * Implement infrastructure that allows entities to be translated.
    Thanks to Miroslav Kure for providing the patch. Closes: #344048, #406515.
  * Disable Korean PDF/PS formats for builds for the website.
  * appendix/files: update information about mouse configuration, based on a
    patch from Peter Samuelson (for which thanks). Closes: #406290.
  * boot-installer, appendix/preseed: document preseed/interactive parameter.

  [ Joey Hess ]
  * Fix package name for installation-reports, and manual unfuzzy of all
    translations. Closes: #408408

  [ Frans Pop ]
  * welcome:
    - make links to FSF and GNU more consistent (closes: #410317)
    - we do not necessarily share the ideals of the FSF (closes: #410129)
    Thanks to Francesco Poli for suggesting these changes.
  * using-d-i: guided partitioning now creates swap inside LVM.
    Thanks to Francesco Poli. Closes: #411399.
  * Document installs over PPPoE. Based on a text proposed by Eddy Petrisor.
    Closes: #408340.
  * installation-howto: update for the integration of base-config into D-I.
  * appendix/preseed:
    - as exim no longer asks any questions during installations, there is no
      real need to document it anymore
    - add link to Philip Hand's website as it contains many creative examples
    - document how to select the ftp protocol during mirror selection
    - document how to install from CD/DVD only (and not use a network mirror)
  * Update base/standard system and task sizes.

  [ Joey Hess ]
  * Document debian-installer/allow_unauthenticated.

  [ Wouter Verhelst ]
  * Update mac68k installation after notes from Finn Thain, upstream mac68k
    kernel hacker.

  [ Frans Pop ]
  * Replace entity in example-preseed.txt file. Thanks to Geert Stappers for
    spotting the error. Closes: #413257.

 -- Frans Pop <fjp@debian.org>  Mon, 19 Mar 2007 15:00:12 +0100

installation-guide (20070122) unstable; urgency=low

  * Enable Catalan, Brazillian, Korean and Spanish again.
  * Enable new Hungarian translation.

 -- Frans Pop <fjp@debian.org>  Mon, 22 Jan 2007 12:41:57 +0100

installation-guide (20070115) unstable; urgency=low

  [ Colin Watson ]
  * Document new pkgsel/include setting.
  * Fix incorrect documentation on preseeding additional apt sources.
  * Fix typo in hppa hardware support documentation
    (https://launchpad.net/bugs/55164).
  * Adjust chroot-install guide to take account of debootstrap being
    Architecture: all now (https://launchpad.net/bugs/64765).

  [ Frans Pop ]
  * Various corrections suggested by Clytie Siddall and Holger Wansing.
    Closes: #378404, #370484, #370425.
  * Update instructions on how to set module parameters for PLIP installation.
  * Update chroot install instructions to use aptitude instead of apt-get.
  * Add /srv in overview of directory tree in partitioning appendix.
  * Update section on partitioning using LVM to reflect recent changes.
  * Apply various patches by or based on suggestions from Nathanael Nerode.
    Some of the bigger changes include:
    - Update of processor support for the i386 architecture.
    - Update information on setting up a RARP server.
  * Add variant for the AMD64 architecture. Closes: #305977.
  * Suppress warnings about missing IDs for sections and such.
  * Reorganize supported hardware table; i386 no longer has flavors.
  * Document SMP-alternatives as one of the variants of SMP support.
  * Document how to shut down the system. Based on patch from Holger Levsen.
    Closes: #248067.

  [ Miroslav Kure ]
  * Update information about booting with encrypted partitions.
    Closes: #378651.

  [ Joey Hess ]
  * Update preseeding docs to document listing more than one disk for
    partman-auto/disk and grub-installer/bootdev

  [ Changwoo Ryu ]
  * Add support for Korean PDF output. Requires latex-hangul-ucs-hlatex.
    Closes: #381657.

  [ David Härdeman ]
  * Update preseeding documentation for partman-auto.

  [ Frans Pop ]
  * Correct error for alpha netboot installations. Thanks to Aurélien Géröme.
    Closes: #386591.
  * Correct number of release arches. Thanks to Holger Wansing. Closes: #384321.
  * Minor corrections suggested by Malcolm Parsons. Closes: #388138.
  * Document new boot parameters theme and directfb/hw-accel.
  * Remove now obsolete distinction between classic and common kpkg.
  * Update all arches to kernel version 2.6.17.
  * Set default value for manual_release in build wrapper scripts.
  * Add new section in preseeding appendix on partman-auto-raid. Not included
    in preseed text file as it is still somewhat experimental.
  * Document changes in guided partitioning and added encrypted LVM support.
  * Disable m68k for official builds as it is not a release architecture.
  * buildweb.sh: use 'mv -f' to avoid errors during builds on the webserver.
  * Minor corrections suggested by Clytie Siddall. Closes: #394413, #394471.
  * Update task sizes as per D-I RC1.
  * New troubleshooting section on how to deal with CD-ROM related problems.
  * Document how to pass parameters to kernel modules on boot.
  * Document how to install KDE instead of Gnome in the section on pkgsel.

  [ Joey Hess ]
  * Update for recent floppy changes.
  * Remove hardcoded paths to executables in buildone.sh.
  * Set HOME to a temporary directory before running w3m, to avoid it
    trying to write to a home directory that may not exist on the buildds.
    (See #393641)
  * Update the installation report template to match current one in
    installation-report.

  [ Philip Hands ]
  * Clarify how -- affects which parameters end up in the target system's
    bootloader's command line.

  [ Joey Hess ]
  * Applied Phil's auto mode documentation patch, edited it, and moved
    some things around for clarity. Closes: #395910
  * Document auto=true boot parameter.

  [ Frans Pop ]
  * Add condition "g-i" for arches that support the graphical installer.
  * Document mouse/left boot parameter.
  * Explain usage of "owner" prefix when setting values for debconf variables
    intended for the target system at the boot prompt.
  * Give some examples of preseeding questions from the boot prompt.
  * Document how to install the KDE desktop environment instead of GNOME.
  * Don't list unsupported frontends in boot parameters section.
  * Minor corrections suggested by Tapio Lehtonen. Closes: #397790.
  * Minor corrections suggested by Holger Wansing. Closes: #397974.

  [ Martin Michlmayr ]
  * Mention that RiscPC support is incomplete.
  * Mention Intel IOP32x support.
  * Talk about ixp4xx rather than the more specific nslu2.

  [ Frans Pop ]
  * Update all arches to kernel version 2.6.18.
  * Minor corrections and some rewrites based on suggestions from
    Clytie Siddall. Closes: #367861, #380588.
  * Update Sparc specific information and document common installation issues
    for Sparc. Many thanks to Jurij Smakov for reviewing the Sparc manual and
    for his overview of issues.
  * Etch ships with X.Org 7.1.
  * Update number of developers, packages and mailing lists.
  * General revision of minimum hardware requirements throughout the manual.
  * Update of installed/download size of tasks.
  * Document the graphical installer, including the main known issues.
  * Avoid generating XML files multiple times for translations using PO files
    when using build.sh or buildweb.sh sripts.
  * bookinfo:
    - Add note for m68k that it is not a release architecture for Etch.
  * hardware:
    - Remove ancient section on parity RAM. Closes: #403035.
    - Update documenation for Sparc, based on patch by Jurij Smakov.
      Closes: #389516.
    - PowerPC/APUS is currently not supported; removed from hardware table.
    - Remove sun4cd (sparc32) from and add sun4v (sparc64) in hardware table.
    - Rewrite of NIC support, document wireless support (for selected arches)
      and explain issues surrounding drivers that require firmware.
  * preparing:
    - Clean out ancient hardware issues.
  * boot-installer/parameters:
    - Document anna/choose_modules and mirror/protocol boot parameters.
    - Use a clearer way to list the short form of parameters.
    - Document new option to blacklist kernel modules.
  * boot-installer/trouble:
    - Fix reference to Save debug logs menu option.
      Thanks, Philippe Batailler. Closes: #402439.
    - Add a note that installation reports will be published.
  * install-methods:
    - All architectures that support TFTP booting also support DCHP, so remove
      the "supports-dhcp" condition.
    - According to the text, Alpha supports BOOTP.
    - Use dhcp3-server for examples rather than dhcp (version 2).
    - tftpd-hpa does not use /tftpboot by default; allow for this in examples.
      Closes: #342076.
  * using-d-i:
    - Extend description of lowmem installs based on a patch suggested by
      Holger Wansing. Closes: #400263.
  * boot-new:
    - Remove reference to apt guide (not installed by default) and obsolete
      debian-guide. Thanks, Philippe Batailler. Closes: #402492.
    - As lynx is no longer installed, suggest w3m as text based browser.
    - Explain how to browse /usr/share/doc/ using a graphical web browser.
    - Mention documentation packages.
    - Clarify what happens on first boot and how to get help to in case of
      problems.
  * post-install:
    - Remove section on reactivating Windows; the installer should detect it
      automatically after all. Closes: #402437.
    - Add extended section on email configuration (moved from using-d-i as
      exim4 now configures for "local mail only" by default). Closes: #402857.
  * appendix/preseed:
    - Clarifications based on comments from Tapio Lehtonen and Holger Wansing.
      Closes: #397923.
  * appendix/chroot-install:
    - Changes suggested in review by Wiktor Wandachowicz. Closes: #394929.

  [ Frans Pop ]
  * Prepare for release. This release is mostly for testing purposes, the real
    release targeted at Etch will be next week.
  * Add and enable amd64 architecture.
  * Update control file for dropped m68k and added amd64 architectures.
  * Disable Catalan, Korean, Spanish and Brazillian translations as they are
    not yet complete.
  * Enable Finnish translation.

 -- Frans Pop <fjp@debian.org>  Mon, 15 Jan 2007 22:10:16 +0100

installation-guide (20060726ubuntu6) feisty; urgency=low

  * en/appendix/preseed.xml: Document console-setup/ask_detect.
  * en/appendix/preseed.xml: Don't claim that devfs paths are allowed (the
    preseed examples were correct, but the surrounding text was wrong;
    LP: #65493).
  * build/buildweb.sh, build/entities/urls.ent,
    en/preparing/needed-info.xml: Fix links to web copies of installation
    manual (LP: #33133) and example preseed file (LP: #78711).
  * Bump kernelversion to 2.6.20.
  * Bump release version and names for Feisty.
  * Update GNOME version to 2.18.

 -- Colin Watson <cjwatson@ubuntu.com>  Thu, 18 Jan 2007 22:12:08 +0000

installation-guide (20060726ubuntu5) edgy; urgency=low

  * en/appendix/preseed.xml, en/using-d-i/modules/lilo-installer.xml: Device
    name updates for no-more-devfs.

 -- Colin Watson <cjwatson@ubuntu.com>  Tue, 17 Oct 2006 21:50:19 +0100

installation-guide (20060726ubuntu4) edgy; urgency=low

  * Various fixes to chroot-install guide (see Malone #64765):
    - Adjust chroot-install guide to take account of debootstrap being
      Architecture: all now (backported from trunk).
    - Reconfigure console-setup, not console-data.
    - Point to language packs rather than suggesting reconfiguring locales.
    - Add a bit more advice about installing grub.
    - Fix tasksel instructions.

 -- Colin Watson <cjwatson@ubuntu.com>  Mon,  9 Oct 2006 14:39:56 +0100

installation-guide (20060726ubuntu3) edgy; urgency=low

  * Backport from trunk:
    - Fix incorrect documentation on preseeding additional apt sources.

 -- Colin Watson <cjwatson@ubuntu.com>  Mon,  9 Oct 2006 14:17:50 +0100

installation-guide (20060726ubuntu2) edgy; urgency=low

  * Update Kickstart documentation for %packages and keyboard changes in
    Edgy.
  * Update keyboard preseeding documentation for console-setup.

 -- Colin Watson <cjwatson@ubuntu.com>  Mon, 25 Sep 2006 11:47:20 +0100

installation-guide (20060726ubuntu1) edgy; urgency=low

  * Resynchronise with Debian.
  * Remove archive-copier documentation.
  * Bump kernelversion to 2.6.17.
  * Bump release version and names for Edgy.
  * Bump x11ver to 7.1.
  * Switch back to documenting tasksel, and update some places with Ubuntu
    task information.
  * Update GNOME version to 2.16.
  * Update Ubuntu branding. Fill in "Further Reading" section with some
    useful Ubuntu-related links.

 -- Colin Watson <cjwatson@ubuntu.com>  Sun,  6 Aug 2006 17:35:34 +0100

installation-guide (20060726) unstable; urgency=low

  [ Joey Hess ]
  * Update kernel building section to conditionalise some more 2.4 kernel
    stuff.
  * Suggest passing --initrd to make-kpkg since the docs say nothing about
    compiling disk drivers into the kernel.
  * Document new passwd/root-login setting.
  * Booting a USB stick via a boot floppy is not supported by current
    installer images.
  * Update preseeding docs to use task names, not short descriptions, since
    that will work now and is more convenient for preseeding.
  * Document the kde-desktop and gnome-desktop subtasks.

  [ Frans Pop ]
  * Various corrections suggested by Clytie Siddall.
  * chroot-install:
    - add /etc/hosts to be created for network configuration (closes: #364517)
    - make kernel/linux-image variable (closes: #345482)
  * Document -- command line option for passing parameters to boot loader
    configuration (closes: #309889).
  * Switch Finnish from XML-based to PO-based translation.
  * Bring numbering and layout of GPL more in line with original. With thanks
    to Holger Wansing.
  * Add functionality to include optional paragraphs in translations.
    Initially two have been defined:
    - a paragraph in bookinfo for information about the translation;
    - a note in appendix/gpl.xml required with unofficial GPL translations.

  [ Joey Hess ]
  * Document new preseed/run setting.
  * Prebaseconfig renamed to finish-install, which changes some documentation,
    and. notably, renames one of the xml files.
  * hd-media size changed to 256 mb.
  * Document new aliases added in preseed 1.17 for common debconf boot
    parameters: fb, url, file, locale, interface.

  [ Frans Pop ]
  * Document guided partitioning using LVM and update partitioning section.

  [ Martin Michlmayr ]
  * The RiscPC flavour is now known as "rpc" rather than "riscpc".
  * As of 2.6, r4k-ip22 also rupports r5k machines do the r5k-ip22 flavour
    has been dropped.

  [ Holger Levsen ]
  * Added the remaining suggestions about nubus and non-powerpc macs
    (closes: #364546).
  * Restructured the chapter about powerpc supported hardware, moved
    unsupported machines to the end.
  * Updated the information about existing kernel flavours.

  [ Miroslav Kure ]
  * Document installation to encrypted partitions (partman-crypto).
  * Update XOrg to 7.0.

  [ Frans Pop ]
  * Etch has been assigned version 4.0.
  * Update kernel versions to 2.6.16.
  * Base languages to be built for website on list of release languages.
  * arm, mips and mipsel switched to 2.6 kernels.
  * Enable Brazillian Portuguese and Vietnamese translation for release.
  * Disable Greek translation as it is too incomplete.

 -- Frans Pop <fjp@debian.org>  Wed, 26 Jul 2006 07:27:52 +0200

installation-guide (20060427) unstable; urgency=low

  [ Joey Hess ]
  * Update preseeding docs for base-config removal.
  * Add documentation of how to change apt-setup security source with
    preseeding.
  * Remove the sarge preseeding docs.
  * Remove mentions of base-config and move base-config stuff to elsewhere.
  * Add documentation of apt-setup, user-setup, clock-setup, tzsetup, and
    pkgsel.
  * Change some references to tty3 (messages) to instead refer to tty4
    (syslog).
  * Change references to /var/log/debian-installer to just /var/log/installer.
  * Remove docs for baseconfig-udeb; going away with base-config.
  * Removed various bits of sarge cruft when it made things easier.

  [ Frans Pop ]
  * Change default build to Etch.
  * Remove all Sarge specific content and make Etch specific content default.
  * Delete some obsolete entities.
  * Change references from package d-i-manual to package installation-guide.
  * Explicitly specify XML declaration as required by openjade 1.4devel1-15
    (closes: #360241).
  * Update appendix on chroot installs:
    - mention that debootstrap also requires basic Unix/Linux commands;
    - comment out link to outdated rpm packages of debootstrap.

  [ Colin Watson ]
  * Add a few more supports-floppy-boot and bootable-usb conditionals to
    make it easier to turn all this off in rebuilds of the manual.
  * Etch uses X.Org 6.9, and xserver-xorg instead of xserver-xfree86.
  * Document how to pick a particular interface with
    netcfg/choose_interface, including how to do this before reading a
    preseed file.
  * Remove obsolete substvar.
  * Build-depend on libhtml-parser-perl for build/preseed.pl.

  [ Joey Hess ]
  * Add docs about preseeding a fallback to a static IP if dhcp fails.
  * Update copyright date.
  * It's possible to use preseeding to set up LVM now, so remove stuff about
    it not working.
  * Document DHCP preseeding. Note that this documents it as of netcfg 1.24
    and preseed 1.13.

  [ Martin Michlmayr ]
  * Bring ARM up to date with reality: remove unsupported flavours, add
    NSLU2.
  * Fix Netwinder/CATS download location.
  * Improve the Netwinder TFTP boot instructions.
  * The Netwinder firmware is no longer available due to license problems.
  * Mention NSLU2 download location.
  * Describe how to flash the installer image onto the NSLU2.
  * Describe how to boot a Cobalt machine.

  [ Frans Pop ]
  * Document new option to preseed additional apt sources for target system.
  * Document how to create a preconfiguration file.
  * Enable Catalan, Italian and Swedish translations for release.
  * Disable Brazillian Portuguese translation as it is too incomplete.

 -- Frans Pop <fjp@debian.org>  Thu, 27 Apr 2006 03:00:32 +0200

installation-guide (20060102ubuntu7) dapper; urgency=low

  * build/entities/common.ent, en/hardware/memory-disk-requirements.xml:
    Update requirements for Ubuntu.

 -- Colin Watson <cjwatson@ubuntu.com>  Mon, 22 May 2006 16:40:18 +0100

installation-guide (20060102ubuntu6) dapper; urgency=low

  * build/entities/common.ent: Set release to "6.06 LTS".

 -- Colin Watson <cjwatson@ubuntu.com>  Mon, 22 May 2006 16:01:34 +0100

installation-guide (20060102ubuntu5) dapper; urgency=low

  * Document new passwd/root-login question (user-setup 1.1).

 -- Colin Watson <cjwatson@ubuntu.com>  Mon, 15 May 2006 15:56:54 +0100

installation-guide (20060102ubuntu4) dapper; urgency=low

  * Rename doc-base.TEMPLATE to TEMPLATE.doc-base.  Malone #28512

 -- Tollef Fog Heen <tfheen@ubuntu.com>  Tue, 25 Apr 2006 15:09:29 +0200

installation-guide (20060102ubuntu3) dapper; urgency=low

  * en/preparing/minimum-hardware-reqts.xml: Drop minimum memory requirement
    to 32MB.
  * en/appendix/preseed.xml: Note that an empty preseed file is equivalent
    to a normal manual installation (thanks, Nathan Sutton).

 -- Colin Watson <cjwatson@ubuntu.com>  Tue, 14 Mar 2006 11:22:09 +0000

installation-guide (20060102ubuntu2) dapper; urgency=low

  * debian/control: Comment out stanzas for non-Ubuntu architectures rather
    than changing the Architecture to disabled, to avoid the .dsc ending up
    with "Architecture: any".
  * build/buildone.sh: Add /usr/share/xml/declaration/xml.dcl to openjade
    invocation to work around Debian bug #345478.
  * Build-depend on libhtml-parser-perl for build/preseed.pl.

 -- Colin Watson <cjwatson@ubuntu.com>  Wed, 11 Jan 2006 14:32:54 +0000

installation-guide (20060102ubuntu1) dapper; urgency=low

  * Merge changes from debian-installer in breezy:
    - Build only English (for now, until we figure out how to avoid trashing
      translations quite so badly with Ubuntu branding etc.).
    - Build only Ubuntu architectures (amd64, hppa, i386, ia64, powerpc,
      sparc).
    - Extensive (although possibly incomplete) Ubuntu branding, adjustments
      for our mirror layout, etc.
    - Describe X.Org rather than XFree86.
    - Add "Ubuntu and Debian" and "What is Ubuntu?" section, text borrowed
      from the Ubuntu web site. Disable the "What is Debian GNU/Linux?"
      section.
    - Direct installation reports to ubuntu-users for now.
    - Adjust various disk space requirements. Talk about the default Ubuntu
      desktop rather than Debian tasks.
    - Document mounting /sys in various places.
    - Unset supports-floppy-boot for all our architectures.
    - Add a few more supports-floppy-boot and bootable-usb conditionals.
    - Change references to /var/log/debian-installer to just
      /var/log/installer.
    - Disable discussion of MTA and PPP configuration.
    - Document our root password and sudo arrangements.
    - Talk about powerpc64 rather than power3 and power4.
    - Document netboot-style USB images. Still mention the hd-media images,
      but they're downplayed since many USB sticks are too small for a full
      Ubuntu ISO image.
    - Document Kickstart installations (currently only the basics, a
      reference to Red Hat's documentation, and the differences from
      Anaconda).
    - Mention /srv in the description of the filesystem hierarchy.
    - Document archive-copier.
  * Bump kernelversion to 2.6.15.
  * Bump release version and names for Dapper.
  * Bump x11ver to 7.0.
  * Update URL to README.mouse.
  * Update preseeding information.
  * Hardcode dapper in example preseed file, since the script that extracts
    example-preseed.txt doesn't expand entities like &releasename; (closes:
    Ubuntu #17578).
  * Update GNOME version to 2.12.
  * Update archive-copier documentation to reflect the new single-stage
    installer arrangements.
  * Re-enable documentation of iso-scan.
  * Adjust packaging to build the manual only for English and for Ubuntu
    architectures. Add installation-guide-amd64.
  * Hardcode SUITE to etch (yes, really; this makes sure features introduced
    upstream after sarge are documented).

 -- Colin Watson <cjwatson@ubuntu.com>  Mon,  9 Jan 2006 12:56:26 +0000

installation-guide (20060102) unstable; urgency=low

  [ Frans Pop ]
  * Fix build error caused by description for s390. Closes: #337382.
  * Update kernel package names and kernel versions per architecture.
  * Move documentation on preseeding to separate appendix for etch.
  * Use new, more flexible perl script to extract example preseed file from
    new appendix.
  * Set proper POT-Creation-Date when generating new POT files.
  * New translations started: Polish, Swedish, Vietnamese.
  * First release of Greek and Korean translations.
  * Exclude Traditional Chinese translation as it was not updated.
  * Switch release name to Etch (3.1+δ).

  [ Joey Hess ]
  * Update installation report template and instructions for etch.

 -- Frans Pop <fjp@debian.org>  Mon,  2 Jan 2006 18:44:59 +0100

installation-guide (20051025) unstable; urgency=low

  * Mention in copyright that full GPL is included in the manual.
    Closes: #334925
  * Register installed documents with doc-base.
  * Minor updates in English text and translations.

 -- Frans Pop <fjp@debian.org>  Tue, 25 Oct 2005 17:37:25 +0200

installation-guide (20051019) unstable; urgency=low

  [ Joey Hess ]
  * Split off from the debian-installer source package.
    See the changelog for debian-installer for older changelog entries.

  [ Frans Pop ]
  * Change over to building arch all packages in section doc. Build separate
    packages for each arch containing all translations.
  * Change package name to installation-guide.
  * Include translations already available on official website.

 -- Frans Pop <fjp@debian.org>  Tue, 18 Oct 2005 17:12:35 +0200