Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

   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
.\"	$NetBSD: contents,v 1.178.2.2 2019/11/25 05:50:16 msaitoh Exp $
.\"
.\" Copyright (c) 1999-2005 The NetBSD Foundation, Inc.
.\" All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\"    notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\"    notice, this list of conditions and the following disclaimer in the
.\"    documentation and/or other materials provided with the distribution.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
.\" PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE.
.\"
.Ss2 NetBSD/\*M subdirectory structure
The \*M-specific portion of the
.Nx
\*V release is found in the
.Pa \*M
subdirectory of the distribution:
.Pa \&.../NetBSD-\*V/\*M/ .
It contains the following files and directories:
.Pp
.(tag INSTALL.html -compact \" top level
.	It Pa INSTALL.html
.	It Pa INSTALL.ps
.	It Pa INSTALL.txt
.	It Pa INSTALL.more
Installation notes in various file formats, including this file.
The
.Pa \&.more
file contains underlined text using the
.Xr more 1
conventions for indicating italic and bold display.
.	It Pa binary/
.	(tag kernel/ -compact \" binary/
.		It Pa kernel/
.		(tag netbsd.gz -compact \" binary/kernel
.if !\n[atari]:\n[mac68k]:\n[sgimips]:\n[evbppc]:\n[sandpoint] \{\
.			It Pa netbsd-GENERIC.gz
A gzipped
.Nx
kernel containing code for everything supported in this release.
.if \n[amd64] \{\
.			It Pa netbsd-INSTALL.gz
The installation kernel.
.			It Pa netbsd-GENERIC_KASLR.gz
.			It Pa netbsd-INSTALL_XEN3_DOMU.gz
.			It Pa netbsd-XEN3_DOM0.gz
.			It Pa netbsd-XEN3_DOMU.gz
.\} \" amd64
.if \n[hpcmips] \{\
This kernel runs on Vr41xx and TX3922 CPUs only.
.\} \" hpcmips
.\} \" !atari/mac68k/sgimips/evbppc/sandpoint
.if \n[alpha]:\n[macppc]:\n[sparc]:\n[sparc64]:\n[vax] \{\
.			It Pa netbsd-GENERIC.MP.gz
A gzipped
.Nx
kernel containing code for everything supported in this release.  This 
kernel supports SMP on systems with more than one CPU.
.\}
.
.if \n[hp300] \{\
.			It Pa netbsd-RAMDISK.gz
A gzipped
.Nx
kernel containing code for all of the hardware supported in this release
with an embedded ramdisk-based installer.  This is the same kernel
that is present on the miniroot filesystem, but uses a newer more 
user-friendly installation program.
.			It Pa netbsd-RAMDISK.symbols.gz
Symbols for
.Pa netbsd-RAMDISK.gz .
.\}
.
.if \n[i386] \{\
.			It Pa netbsd-MONOLITHIC.gz
The monolithic kernel which doesn't use kernel modules.
.			It Pa netbsd-INSTALL.gz
The installation kernel.
.			It Pa netbsd-INSTALL_XEN3PAE_DOMU.gz
.			It Pa netbsd-XEN3PAE_DOM0.gz
.			It Pa netbsd-XEN3PAE_DOMU.gz
.\}
.if \n[mac68k] \{\
.			It Pa netbsd-GENERIC.gz
A kernel containing code for everything supported in this release using
the standard SCSI driver.
.			It Pa netbsd-GENERICSBC.gz
A kernel containing code for everything supported in this release using
the SBC variant of the SCSI driver.
.\}
.if \n[macppc] \{\
.			It Pa netbsd-GENERIC_MD.gz
A gzipped
.Nx
kernel containing code for everything supported in this release.
It also has a RAM-disk installer.
This is the kernel you should use when you want to install via
netboot, from a CD-R, or an HFS partition on Open Firmware 3 systems.
.			It Pa netbsd-INSTALL.gz
A gzipped
.Nx
kernel containing code only for Open Firmware 1.0.5, 1.1.22, 2.0.x,
and 2.4 systems (i.e. those that have floppy drives).
It has a RAM-disk installer.
.\}
.
.if \n[acorn32] \{\
.			It Pa netbsd-NC.gz
A kernel intended for Acorn Network Computers.
.\}
.
.if \n[atari] \{\
.			It Pa netbsd-SMALL030.gz
A kernel for memory-tight 68030 Falcon and TT030 machines.
This is the kernel supplied on the boot.fs floppy.
.			It Pa netbsd-ATARITT.gz
A kernel for the Atari TT030.
.			It Pa netbsd-FALCON.gz
A kernel for the Atari Falcon, including support for 68060
processor cards.
.			It Pa netbsd-HADES.gz
A kernel for 68040 or 68060 Hades.
.			It Pa netbsd-MILAN-ISAIDE.gz
A kernel for 68040 or 68060 MILAN using IDE in ISA mode - for
use with disks not marked byteswapped by HDDRIVER.
.			It Pa netbsd-MILAN-PCIIDE.gz
A kernel for 68040 or 68060 MILAN using IDE in PCI mode - for
use with disks marked byteswapped by HDDRIVER.
.\}
.
.if \n[hpcmips] \{\
.			It Pa netbsd-TX3912.gz
A kernel for TX3912 machines.
.\}
.
.if \n[mvme68k] \{\
.			It Pa netbsd-VME147.gz
A kernel for MVME147 boards.
.			It Pa netbsd-VME162.gz
A kernel for MVME162 boards.
.			It Pa netbsd-VME167.gz
A kernel for MVME167 boards.
.			It Pa netbsd-VME172.gz
A kernel for MVME172 boards.
.			It Pa netbsd-VME177.gz
A kernel for MVME177 boards.
.\}
.if \n[sandpoint] \{\
.			It Pa netbsd-GENERIC.gz
A generic kernel suitable for most Sandpoint-based NAS products.
.			It Pa netbsd-INSTALL.gz
An install kernel for most Sandpoint-based NAS products.
.			It Pa netbsd-INSTALL_KURO.gz
An install kernel for KuroBox / LinkStation NAS boards.
.			It Pa netbsd-KUROBOX.gz
A kernel for KuroBox / LinkStation NAS boards.
.\}
.if \n[sparc] \{\
.			It Pa netbsd-GENERIC_SCSI3.gz
A kernel with SCSI ID 3 explicitly mapped to 
.Li sd0 .
.			It Pa netbsd-KRUPS.gz
A kernel for JavaStation-NC (Krups) machines.
.			It Pa netbsd-MRCOFFEE.gz
A kernel for JavaStation-1 (Mr. Coffee) machines using Open Boot Prom firmware.
.			It Pa netbsd-MRCOFFEE_OFW.gz
A kernel for JavaStation-1 (Mr. Coffee) machines using OpenFirmware.
.			It Pa netbsd-GENERIC_SUN4U.gz
A kernel which supports sparc64 hardware in 32-bit mode only.  See the 
sparc64 INSTALL notes for help installing this kernel on your sparc64 
hardware.
.\}
.if \n[sparc64] \{\
.			It Pa netbsd-INSTALL.gz
The install kernel.
.\}
.
.if \n[sgimips] \{\
.			It Pa netbsd-GENERIC32_IP12.gz
A kernel suitable for booting on R3000 Indigo, IRIS 4D/3x and similar machines.
.			It Pa netbsd-GENERIC32_IP12.ecoff.gz
GENERIC32_IP2x targeted for being bootable on the above machines
with PROMs that do not understand the ELF binary format.
.			It Pa netbsd-GENERIC32_IP2x.gz
A kernel suitable for booting on Indy, Indigo 2 and similar machines.
.			It Pa netbsd-GENERIC32_IP2x.ecoff.gz
GENERIC32_IP2x targeted for being bootable on older Indigo 2 and possibly
Indy machines with PROMs that do not understand the ELF binary format.
.			It Pa netbsd-GENERIC32_IP3x.gz
A kernel suitable for booting on O2.
.\}
.
.if \n[evbppc] \{\
.			It Pa netbsd-EV64260.gz
A gzipped kernel (in ELF format) for the Marvell EV-64260.
.			It Pa netbsd.img-EV64260.gz
Same as the above, but in the format expected by the firmware.
.			It Pa netbsd-EXPLORA451.gz
A gzipped kernel (in ELF format) for the NCD Explora451 NC.
.			It Pa netbsd.img-EXPLORA451.gz
Same as the above, but in the format expected by the firmware.
.			It Pa netbsd-INSTALL_OPENBLOCKS266.gz
A gzipped install kernel (in ELF format) for the Plat'Home OpenBlockS266
microserver.
.			It Pa netbsd-INSTALL_OPENBLOCKS266.img.gz
Same as the above, but in the format expected by the firmware.
.			It Pa netbsd-INSTALL_OPENBLOCKS266.symbols.gz
Symbols for
.Pa netbsd-INSTALL_OPENBLOCKS266.gz .
.			It Pa netbsd-INSTALL_WALNUT.gz
A gzipped install kernel (in ELF format) for the IBM PowerPC 405GP Walnut
evaluation board.
.			It Pa netbsd-INSTALL_WALNUT.img.gz
Same as the above, but in the format expected by the firmware.
.			It Pa netbsd-INSTALL_WALNUT.symbols.gz
Symbols for
.Pa netbsd-INSTALL_WALNUT.gz .
.			It Pa netbsd-OPENBLOCKS200.gz
A gzipped kernel (in ELF format) for the Plat'Home OpenBlockS200.
.			It Pa netbsd.img-OPENBLOCKS200.gz
Same as the above, but in the format expected by the firmware.
.			It Pa netbsd-OPENBLOCKS266.gz
A gzipped kernel (in ELF format) for the Plat'Home OpenBlockS266 microserver.
.			It Pa netbsd.img-OPENBLOCKS266.gz
Same as the above, but in the format expected by the firmware.
.			It Pa netbsd-PMPPC.gz
A gzipped kernel (in ELF format) for Artesyn PM/PPC boards.
.			It Pa netbsd-WALNUT.gz
A gzipped kernel (in ELF format) for the IBM PowerPC 405GP Walnut
evaluation board.
.			It Pa netbsd.img-WALNUT.gz
Same as the above, but in the format expected by the firmware.
.\}
.
.		tag) \" binary/kernel/
.		It Pa sets/
\*M binary distribution sets;
see below.
.	tag) \" binary/
.	It Pa installation/
.
.	(tag miniroot/ -compact \" installation/
.
.if \n[i386]:\n[amd64] \{\
.		It Pa cdrom/
\*M bootable cdrom images; see below.
.\}
.if \n[sparc] \{\
.		It Pa bootfs/
Netbootable RAM disk kernel and the file system in the RAM disk; see below.
.\}
.if \n[alpha]:\n[amiga]:\n[atari]:\n[bebox]:\n[ews4800mips]:\
\n[i386]:\n[news68k]:\n[newsmips]:\n[sparc]:\n[x68k]:\n[prep] \{\
.		It Pa floppy/
\*M boot and installation floppies; see below.
.\}
.
.if \n[alpha] \{\
.		It Pa diskimage/
an image file
.Pa cdhdtape
is included for the case where the installer is written to
a CD, hard drive, or tape.
This image file is the same for the CD, HD, and tape cases.
.		It Pa instkernel/
contains a
.Pa netbsd.gz
installation kernel; this is the same installer kernel as in all the
other install
images, but without the various boot program and file system wrappers.
It can be netbooted or diskbooted from a previous installation.
no need to
.Ic gunzip
this image.
.\}
.
.if \n[bebox] \{\
.		It Pa floppy/boot.fs
.		It Pa floppy/kernel1.fs
.		It Pa floppy/kernel2.fs
\*M boot and installation floppy images.  The first is the bootloader on
old BeFS.  The other images contain the kernel and an embedded ramdisk.
.\}
.
.if \n[cats] \{\
.		It Pa kernel/
\*M installation kernels.
.\}
.
.if \n[mac68k] \{\
.		It Pa instkernel/
\*M boot and installation kernels; see installation section (Sysinst
Method), below.
.\}
.if \n[amiga]:\n[atari]:\n[hp300]:\n[mvme68k]:\n[sparc]:\n[sparc64]:\
\n[sun2]:\n[sun3] \{\
.		It Pa miniroot/
\*M miniroot file system image; see below.
.\}
.
.if !\n[alpha]:\n[bebox]:\n[cats]:\n[evbppc]:\n[mvme68k]:\n[macppc]:\
\n[sgimips]:\n[sandpoint]:\n[sparc] \{\
.		It Pa misc/
.
Miscellaneous \*M installation utilities; see
.if \n[mac68k] \{\
the Traditional method
.\}
installation section below.
.\}
.
.if \n[hp300] \{\
.	(tag HP-IB.geometry
.	It Pa HP-IB.geometry
A file containing geometry for some HB-IB disk drives.
.	It Pa SYS_INST.gz
A gzipped copy of the SYS_INST miniroot installation program.  This is 
only necessary if you can't use the RAMDISK based installer.
.	It Pa SYS_UBOOT.gz
A gzipped copy of the universal boot block.
Supports Network, tape and disk booting.
This is useful if you are installing a diskless
.Nx*M
system.
.	tag)
.\}
.
.if \n[macppc] \{\
.		It Pa floppy/boot1.fs
.		It Pa floppy/boot2.fs
\*M boot and installation floppy images.  The first is the bootloader and
kernel.  The second image has the installation tools.
Only usable on models that ship with a floppy drive (pre-Open Firmware 3);
see below.
.		It Pa ofwboot.xcf
\*M bootloader; see below.
.\}
.
.if \n[mvme68k] \{\
.		It Pa netboot/
Two programs needed to boot \*M kernels over the network; see below.
.		It Pa tapeimage/
Tape boot programs, and a RAMDISK kernel; see below.
.\}
.
.if \n[sandpoint] \{\
.		It Pa altboot
\*M bootloader in ELF format; see below
.		It Pa altboot.bin
\*M bootloader in binary format; see below
.		It Pa altboot.img
\*M bootloader as an U-Boot/PPCBoot image, suitable for bootm; see below
.\}
.
.if \n[sgimips] \{\
.		It Pa netboot/
NFS-root images
.\}
.
.if \n[sparc] \{\
.		It Pa netboot/
Netboot bootloader and root filesystem with install tools; see below.
.		It Pa tape/
\*M boot and installation tapes; see below.
.\}
.if \n[sparc64] \{\
.		It Pa netboot/
Netboot bootloader; see below.
.\}
.
.if \n[sun2] \{\
.		It Pa netboot/
Two programs needed to boot \*M kernels over the network.
.		It Pa tapeimage/
Tape boot program, and two shell scripts used to prepare tapes.
.\}
.
.if \n[sun3] \{\
.		It Pa netboot/
Two programs needed to boot \*M kernels over the network.
.		It Pa tapeimage/
Tape boot programs, and a RAMDISK kernel.
.\}
.
.	tag) \" installation/
.
.tag) \" top level
.
.
.if \n[alpha] \{\
.Ss2 Bootable installation/upgrade floppies
.Pp
There are three bootable images in the
.Nx
\*M distribution.
One is for a floppy boot and is split into three separate files.
The other is a single-file image containing the same install kernel,
but intended to be written to a CD, tape, or hard drive.
The third image is a
.Li GENERIC
kernel intended for production use in unusual cases.
This can be useful at some sites when:
.(bullet
You want to run diskless but SRM bugs prevent the firmware from
netbooting.
You can work around this problem by always booting the generic
kernel from the floppy.
.It
SRM doesn't recognize your (hard) disk controller but
.Nx
does.
This happens more frequently than you might think.
SRM will usually only boot from
.Xr siop 4
or
.Xr isp 4
SCSI devices, and on most platforms will not
boot from an IDE drive.
.Nx
will happily operate
with almost any SCSI root or an IDE root; the solution here is to netboot
a kernel or always boot from floppy.
.bullet)
.\}
.
.
.if \n[amiga] \{\
.Ss2 Miniroot file system
The Amiga now uses a single miniroot file system for both an initial
installation and for an upgrade.
A gzipped version is available, for easier downloading.
(The gzipped version has the
.Sy \&.gz
extension added to
their names.)
.(tag miniroot.fs
.It Pa miniroot.fs
This file contains a
.Bx
root file system setup to help you
install the rest of
.Nx
or to upgrade a previous version of
.Nx .
This includes formatting and mounting your
.Pa /
(root) and
.Pa /usr
partitions and getting ready to extract (and possibly first
fetching) the distribution sets.
There is enough on this file system to allow you to make a SLIP or
PPP connection, configure an Ethernet, mount an NFS file system or ftp.
You can also load distribution sets from a SCSI tape or from one of
your existing
.Tn AmigaDOS
partitions.
.tag)
.\}
.
.
.Ss2 Binary distribution sets
The
.Nx
\*M
binary distribution sets contain the binaries which
comprise the
.Nx
\*V release for \*M.
The binary distribution sets can be found in the
.Pa \*M/binary/sets
subdirectory
of the
.Nx
\*V
.ie \n[sparc64] \{\
distribution tree.  
.(Note
If you want to install 32-bit only binaries, you will 
still need to boot using the sparc64 installation tools.  When sysinst
asks you for the distribution set to install, provide the
.Nx Ns /sparc
.Pa binary/sets .
Be sure to use the 32 bit sparc
.Pa kern-GENERIC_SUN4U.tgz
kernel distribution.  Otherwise, continue to follow the \*M installation
procedure, not the sparc instructions.
.Note)
Most people will want the 64-bit \*M distribution tree:
.\}
.el distribution tree, and are as follows:
.(tag xserver \" sets
.
.It Sy base
The
.Nx
\*V
\*M
.Sy base
binary distribution.
You
.Em must
install this distribution set.
It contains the base
.Nx
utilities that are necessary for the
system to run and be minimally functional.
.
.It Sy comp
Things needed for compiling programs.
This set includes the system include files
.Pq Pa /usr/include
and the various system libraries (except the shared
libraries, which are included as part of the
.Sy base
set).
This set also includes the manual pages for
all of the utilities it contains, as well as the
system call and library manual pages.
.
.It Sy debug
This distribution set contains debug information for
all base system utilities.
It is useful when reporting issues with binaries or during
developement.
This set is huge, if the target disk is small, do not install it.
.
.It Sy etc
This distribution set contains the system
configuration files that reside in
.Pa /etc
and in several other places.
This set
.Em must
be installed if you are installing the system from scratch, but should
.Em not
be used if you are upgrading.
.
.It Sy games
This set includes the games and their manual pages.
.
.\" Kernel set(s)
.
.ie \n[atari] \{\
.It Sy kern-SMALL030, kern-ATARITT, kern-FALCON, kern-HADES , kern-MILAN-ISAIDE , kern-MILAN-PCIIDE
These sets contain a
.Nx*M
\*V
kernel, named
.Pa /netbsd .
You
.Em must
install the kernel that matches your hardware.
.\}
.el \{\
.ie \n[evbarm] \{\
.It Sy kern-INTEGRATOR
(see below)
.It Sy kern-IQ80310
(see below)
.It Sy kern-IQ80321
(see below)
.It Sy kern-MV2120
(see below)
.It Sy kern-SHEEVAPLUG
(see below)
.It Sy kern-TEAMASA_NPWR
.Pp
These sets contain a
.Nx*M
\*V
kernel, named
.Pa /netbsd .
Some of these sets also contain a binary format kernel named
.Pa /netbsd.bin
and an S-record format kernel named
.Pa /netbsd.srec
that your firmware may need to boot.
You
.Em must
install the kernel that matches your hardware.
.\}
.el \{\
.ie \n[mac68k] \{\
.It Sy kern-GENERIC
This set contains a
.Nx*M
\*V
.Li GENERIC
kernel, named
.Pa /netbsd .
You
.Em must
install either this distribution set or kern-GENERICSBC.
.It Sy kern-GENERICSBC
This set contains a
.Nx*M
\*V
.Li GENERICSBC
kernel, named
.Pa /netbsd .
You
.Em must
install either this distribution set or kern-GENERIC.
.\}
.el \{\
.ie \n[macppc] \{\
.It Sy kern-GENERIC
This set contains a
.Nx*M
\*V
.Li GENERIC
kernel named
.Pa /netbsd .
You
.Em must
install this distribution set.
.It Sy kern-GENERIC.MP
This set contains a
.Nx*M
\*V
.Li GENERIC.MP
kernel, which will use multiple processors (if present), named
.Pa /netbsd .
.\}
.el \{\
.ie \n[sandpoint] \{\
.It Sy kern-GENERIC
This set contains a
.Nx*M
\*V
.Li GENERIC
kernel for most Sandpoint-based NAS products, named
.Pa /netbsd .
.It Sy kern-KUROBOX
This set contains a
.Nx*M
\*V
.Li KUROBOX
kernel for KuroBox / LinkStation boards, named
.Pa /netbsd .
.Pp
You
.Em must
install one of these distribution sets for your machine.
.\}
.el \{\
.ie \n[sgimips] \{\
.It Sy kern-GENERIC32_IP2x
This set contains a
.Nx*M
\*V
.Li GENERIC32_IP12
kernel (for R3000 Indigo, IRIS 4D/3x machines), named
.Pa /netbsd .
This set also contains an ECOFF kernel named
.Pa /netbsd.ecoff
that your system may need to boot.
.It Sy kern-GENERIC32_IP2x
This set contains a
.Nx*M
\*V
.Li GENERIC32_IP2x
kernel (for Indy, Indigo 2 and Challenge S/M machines), named
.Pa /netbsd .
This set also contains an ECOFF kernel named
.Pa /netbsd.ecoff
that your system may need to boot.
.It Sy kern-GENERIC32_IP3x
This set contains a
.Nx*M
\*V
.Li GENERIC32_IP3x
kernel (for O2), named
.Pa /netbsd .
.Pp
You
.Em must
install one of these distribution sets for your machine.
.\}
.el \{\
.ie \n[sparc] \{\
.It Sy kern-GENERIC
This set contains a
.Nx*M
\*V
.Li GENERIC
kernel named
.Pa /netbsd .
You
.Em must
install this distribution set.
.It Sy kern-GENERIC.MP
This set contains a
.Nx*M
\*V
.Li GENERIC.MP
kernel, which will use multiple processors (if present), named
.Pa /netbsd .
.It Sy kern-GENERIC_SCSI3
This set contains a
.Nx*M
\*V
.Li GENERIC_SCSI3
kernel, which will set SCSI ID 3 to 
.Li sd0 ,
named
.Pa /netbsd .
.It Sy kern-GENERIC_SUN4U
This set contains a
.Nx*M
\*V
.Li GENERIC_SUN4U
kernel, which supports only UltraSPARC systems in 32 bit mode, named
.Pa /netbsd .
.It Sy kern-KRUPS
This set contains a
.Nx*M
\*V
.Li GENERIC-KRUPS
kernel, which supports the JavaStation-NC, named
.Pa /netbsd .
.It Sy kern-MRCOFFEE
This set contains a
.Nx*M
\*V
.Li MRCOFFE
kernel, which which supports the OpenBOOT PROM 2 JavaStation-1, named
.Pa /netbsd .
.It Sy kern-MRCOFFEE_OFW
This set contains a
.Nx*M
\*V
.Li MRCOFFE_OFW
kernel, which which supports the OpenFirmware JavaStation-1, named
.Pa /netbsd .
.\}
.el \{\
.ie \n[sparc64] \{\
.It Sy kern-GENERIC
This set contains a
.Nx*M
\*V
.Li GENERIC
kernel named
.Pa /netbsd .
You
.Em must
install this or the kern-GENERIC.MP distribution set.
.It Sy kern-GENERIC.MP
This set contains a
.Nx*M
\*V
.Li GENERIC.MP
kernel, which will use multiple processors (if present), named
.Pa /netbsd .
.\}
.el \{\
.ie \n[evbppc] \{\
.It Sy kern-EV64260
This set contains a
.Nx*M
\*V
kernel in ELF format named
.Pa /netbsd
and the same kernel in the format needed by the bootloader as
.Pa /netbsd.img .
These kernels are specific to the Marvell EV-64260.
.It Sy kern-EXPLORA451
This set contains a
.Nx*M
\*V
kernel in ELF format named
.Pa /netbsd
and the same kernel in the format needed by the bootloader as
.Pa /netbsd.img .
These kernels are specific to the NCD Explora451 NC.
.It Sy kern-OPENBLOCKS266
This set contains a
.Nx*M
\*V
kernel in ELF format named
.Pa /netbsd
and the same kernel in the format needed by the bootloader as
.Pa /netbsd.img .
These kernels are specific to the Plat'Home OpenBlockS266 microserver.
.It Sy kern-PMPPC
This set contains a
.Nx*M
\*V
kernel in ELF format named
.Pa /netbsd
and the same kernel in the format needed by the bootloader as
.Pa /netbsd.img .
These kernels are specific to Artesyn PM/PPC boards.
.It Sy kern-WALNUT
This set contains a
.Nx*M
\*V
kernel in ELF format named
.Pa /netbsd
and the same kernel in the format needed by the bootloader as
.Pa /netbsd.img .
These kernels are specific to the IBM 405GP based Walnut evaluation board.
.\}
.el \{\
.It Sy kern-GENERIC
This set contains a
.Nx*M
\*V
.Li GENERIC
kernel, named
.Pa /netbsd .
You
.Em must
install this distribution set.
.if \n[cats]:\n[shark] \{\
This set also contains an a.out kernel named
.Pa /netbsd.aout
that your system may need to boot.
.\}
.\} \" !\n[evbppc]
.\} \" !\n[sparc64]
.\} \" !\n[sparc]
.\} \" !\n[sgimips]
.\} \" !\n[macppc]
.\} \" !\n[mac68k]
.\} \" !\n[evbarm]
.\} \" !\n[atari]
.
.It Sy man
This set includes all of the manual pages for the
binaries and other software contained in the
.Sy base
set.
Note that it does not include any of the manual pages
that are included in the other sets.
.
.It Sy misc
This set includes the system dictionaries,
the typesettable document set, and other files from
.Pa /usr/share .
.
.It Sy rescue
This set includes the statically linked emergency recover binaries installed
in
.Pa /rescue .
.
.It Sy text
This set includes
.Nx Ns 's
text processing tools, including
.Xr groff 1 ,
all related programs, and their manual pages.
.
.tag) \" sets
.
.
.\" ---------------------------- X SETS
.Pp
.Nx
maintains its own set of sources for the X Window System in order to
assure tight integration and compatibility.
.ie \n[sun2] \{\
.Nx*M
currently does not ship with an X server or X clients.
.\}
.el \{\
These sources are based on
.ie \n[i386]:\n[amd64]:\n[macppc]:\n[sgimips]:\n[sparc64]:\n[shark] \{\
X.Org.
.\}
.el \{\
XFree86 4.5.0.
.\}
Binary sets for the X Window System are distributed with
.Nx .
The sets are:
.(tag xserver \" x sets
.
.It Sy xbase
The basic files needed for a complete X
client environment.
This does not include the X servers.
.
.It Sy xcomp
The extra libraries and include files needed to compile X source code.
.
.It Sy xdebug
This distribution set contains debug information for
all X11 binaries.
It is useful when reporting issues with these binaries or during
developement.
This set is huge, if the target disk is small, do not install it.
.
.It Sy xfont
Fonts needed by the X server and by X clients.
.
.It Sy xetc
Configuration files for X which could be locally modified.
.
.It Sy xserver
The X server. 
.if \n[acorn32] \{\
This includes Xarm32VIDC and Xprt servers.
.\}
.if \n[atari] \{\
Please consult the X specific section in the atari FAQ as to which server
you should use.
.\}
.if \n[bebox] \{\
This includes the modular Xorg server.
.\}
.if \n[hpcmips] \{\
This includes the Xhpc server which supports 256 and 65536 colors, with man pages.
.\}
.if \n[i386] \{\
This includes the modular Xorg server.
.\}
.if \n[mac68k] \{\
This includes the Xmac68k
.Em monochrome
server with man pages.
.\}
.if \n[macppc] \{\
This includes the modular Xorg server.
.\}
.if \n[pmax] \{\
This includes the Xpmax server with man page.
.\}
.if \n[shark] \{\
This includes the modular Xorg and Xvfb servers.
.\}
.if \n[sparc] \{\
This includes Xsun, Xsun24, XsunMono and Xvfb servers with man pages.
.\}
.if \n[sparc64] \{\
This includes the modular Xorg and Xvfb servers.
.\}
.if \n[x68k] \{\
This includes the X68k and Xprt
servers with man pages and the runtime configuration file.
.\}
.
.tag) \" x sets
.
.\} \" !\n[sun2]
.
.
.\" ---------------------------- MI DISCUSSION OF BINARY SETS
.
.
.Pp
The \*M binary distribution sets are distributed as gzipped tar files
named with the extension
.Sy .\*[setsuffix] ,
e.g.
.Pa base.\*[setsuffix] .
.
.
.Pp
The instructions given for extracting the source sets work equally
well for the binary sets, but it is worth noting that if you use that
method, the filenames stored in the sets are relative and therefore
the files are extracted
.Em below the current directory .
Therefore, if you want to extract the binaries into your system, i.e.
replace the system binaries with them, you have to run the
.Ic "tar -xzpf"
command from the root directory (
.Pa / 
) of your system.
.
.
.\" ---------------------------- MD DISCUSSION
.
.
.
.if \n[atari] \{\
.Pp
Additional kernels to those included in the distribution sets may be found
in the
.Pa atari/binary/kernel
subdirectory of the
.Nx
\*V distribution tree.
These kernels are generally named something like
.Pa netbsd-BOOT.gz
or some other suitable name.
Please note that these kernels are simply gzipped and are not in tar archives.
.Pp
There are six atari floppy images to be found in the
.Pa atari/installation/floppies
subdirectory of the
.Nx
\*V distribution.
Three of them are bootable
.Tn TOS
kernel floppies and the other
three are installation floppies.
They are described in more detail below.
There are gzipped versions of each available, for easier downloading.
(The gzipped versions have the
.Pa \&.gz
extension added to their names.)
.(tag indent \" atari
.It Em Bootable\ Kernel\ floppies
These
.Tn TOS
disks contains the
.Tn TOS
support programs (like
.Ic loadbsd.ttp
and
.Ic chg_pid.ttp
\(em see below) and a kernel.
They are setup such that you can insert them into
your floppy drive, and start the programs from GEM.
.Pp
For the TT030 and Falcon, the (720 KB) floppy is named
.Pa boot.fs
and
the kernel supplied is
.Li BOOT .
For the Hades, you need the
.Pa hades-boot.fs
floppy (1.44 MB), the kernel is
.Li HADES .
For the Milan, you need the
.Pa milan-boot.fs
floppy (1.44 MB), the kernel is MILAN-PCIIDE.
.It Em Installation\ floppy:
This disk contains a
.Bx
root file system setup to help
you install the rest of
.Nx .
This includes formatting
and mounting your
.Pa /
(root) and
.Pa /usr
partitions and getting
ready to extract (and possibly first fetching) the distribution
sets.
There is enough on this file system to allow you to
make a slip connection, configure an ethernet, mount an NFS
file system or ftp.
You can also load distribution sets from a SCSI tape or from one of
your existing
.Tn GEMDOS
partitions.
.Pp
The floppies meant for 720 KB disks are named
.Pa miniroot.fs.1
and
.Pa miniroot.fs.2 .
There is also an image for an 1.44 MB disk:
.Pa miniroot.fs .
.tag) \" atari
.Pp
There are also
.Tn TOS
utilities in the
.Pa atari/installation/misc
subdirectory, which you will need to get
.Nx*M
up-and-running.
.(bullet
The
.Ic gzip.ttp
program allows you to uncompress .gz images.
The usage is:
.Pp
.Dl Ic "gzip.ttp -d filename.gz"
.It
The
.Ic rawwrite.ttp
program allows you to create the installation
floppy disks from the files in the
.Pa atari/floppies
directory.
.It
The
.Ic aptck.ttp
program reads the partition tables present on a
given disk and tries to interpret then the same way the
.Nx
kernel does.
If you have a disk on which
.Tn GEMDOS
and
.Nx
are to co-exist, It is a good idea to run this before you begin the
.Nx*M
installation just to check that the kernel's view
of the partition tables agree with
.Tn GEMDOS Ns 's
view.
If you have more than 3 partitions defined on a disk you will notice that the
.Nx*M
partition starts one sector after the
.Tn GEMDOS
partition.
This is to allow space for the auxiliary root for
the 4th and subsequent partitions.
.It
The
.Ic loadbsd.ttp
program loads the
.Nx*M
kernel from
.Tn TOS
(or
.Tn MiNT ,
.Tn MultiTOS ,
etc.).
.It
The
.Ic chg_pid.ttp
program can be used to change the id of an
.Tn AHDI
compatible partition.
This allows you to reserve a partition for use by
.Nx*M
(id: NBD), or for use as a swap (id: SWP) partition.
.It
The
.Ic file2swp.ttp
program can be used to transfer an installation file system image, like
.Pa sysinst.fs
to a partition with id SWP.
In this way, you can run the installation from the swap partition
instead of a memory disk.
This is a necessity for small memory systems.
.bullet)
.\}
.
.\}
.
.
.if \n[hpcmips] \{\
.Pp
Additional kernels to those included in the distribution sets may be found
in the
.Pa hpcmips/binary/kernels
subdirectory of the
.Nx
\*V distribution tree.
These kernels are generally named something like
.Pa netbsd-GENERIC.gz
or some other suitable name.
Please note that these kernels are simply gzipped and are not in tar archives.
.Pp
The
.Tn "Windows CE" Ns No -based utilities
necessary for installing and running
.Nx
can
be found in the
.Pa hpcmips/installation/
subdirectory of the
.Nx
\*V distribution tree.
The important files in this directory are as follows:
.
.
.(tag pbsdboot1.exe
.It Pa netbsd.gz
.Nx*M
kernel with system installer
.Pq Ic sysinst .
This kernel runs on Vr41xx and TX3922 CPUs only.
.It Pa netbsd-TX3912.gz
.Nx*M
kernel with system installer
.Pq Ic sysinst .
This kernel runs on TX3912 CPU only.
.It Pa hpcboot.exe
The
.Nx*M
boot loader utility.
This program is used to boot the
.Nx
kernel from within
.Tn "Windows CE"
(version 2.11 and later).
.br
.Em 111 KB
.It Pa pbsdboot.exe
The
.Nx*M
boot loader utility.
This program is used to boot the
.Nx
kernel from within
.Tn "Windows CE"
(version 2.0 and later).
.br
.Em 176 KB
.It Pa pbsdboot1.exe
The
.Nx*M
boot loader utility.
This program is used to boot the
.Nx
kernel from within
.Tn "Windows CE"
(version 1.01).
.br
.Em 191 KB
.tag)
.Pp
These
.Pa *.exe
files are
.Tn "Windows CE
binaries.
If you need them,
the sources for these utilities are in the
.Pa src/arch/hpc/stand/
and the
.Pa src/arch/hpcmips/stand/
directories.
.\}
.
.
.if \n[mac68k] \{\
.Pp
Kernels suitable for booting from an AppleShare server may be found
in the
.Pa mac68k/binary/kernels
subdirectory of the
.Nx
\*V distribution tree.
These kernels are generally named something like
.Pa netbsd-GENERIC.gz
and can be booted as-is by the
.Nx*M
Booter utility, if desired.
Please note that these kernels are simply gzipped and are not in tar archives.
.Pp
The
.Tn Mac OS
based utilities necessary for installing and running
.Nx
can
be found in the
.Pa mac68k/installation/misc
subdirectory of the
.Nx
\*V distribution tree.
The important files in this directory are as follows:
.
.(tag Installer.sea.hqx
.It Pa Booter.sea.hqx
The
.Nx*M
Booter utility.
This program is used to boot the
.Nx
kernel from within
.Tn Mac OS .
.br
.Em 141 KB archived
.It Pa Installer.sea.hqx
The
.Nx*M
Installer utility.
This program is used to install the distribution sets onto your
.Nx
partition(s).
This utility is used only in a Traditional method
installation; it is not used or required for an installation using
the
.Ic sysinst
method.
.br
.Em 147 KB archived
.It Pa Mkfs.sea.hqx
The Mkfs utility.
This program is used to format your chosen partitions so that they
can be used with
.Nx .
This utility is used only in a Traditional method
installation; it is not used or required for an installation using
the
.Ic sysinst
method.
.br
.Em 76 KB archived
.tag)
.Pp
These files are all BinHexed, self-extracting archives.
If you need them, the sources for these utilities are in the
.Pa src
subdirectory.
.\}
.
.if \n[mvme68k] \{\
.Pp
The following are included in the
.Pa mvme68k/installation
directory:
.
.(tag miniroot/
.It Pa miniroot/
.(Note
The
.Ic sysinst
method of installation is the preferred method for installing
.Nx*M .
.Em The Traditional method of installation is deprecated
.Em and will be removed in a future release.
Some other important differences between the two installation methods are:
.(bullet
The Installer and Mkfs utilities are not used if the installation is done
using the
.Ic sysinst
method via booting an Installation Kernel.
.It
Mkfs creates a 4.3BSD "old" format file system.
This is the only file system format understood by the Installer.
The
.Ic sysinst
process creates "new" file systems which can't be processed by Mkfs
or the Installer.
.It
The Installer (and probably Mkfs) is known to have problems with
BSD file systems that are larger than 1 GB or extend beyond the 1 GB
physical limit.
Keep this in mind if doing a Traditional method
installation with these utilities.
.It
The Booter is known to have problems booting from a NetBSD file system
if the inode of the kernel file is too large.
For large disks it is advisable to have a small root partition and one or
more usr-type partitions for other files.
This ensures the inode of the kernel in the root file system will be small.
.It
The Booter is designed to work with 4.3BSD "old" file systems, but there
are enough similarities between the "old" and "new" file system formats in the
first few hundred blocks that the Booter can usually boot a Kernel from a
4.3BSD new file system.
If you choose to use "new" file system formats, it is advisable to use a
small root partition and one or more usr-type partitions for other files.
This is the default layout used by
.Ic sysinst .
.bullet)
.Note)
.	(tag miniroot.gz
.	It Pa miniroot.gz
A copy of the miniroot file system.
This file system image is copied into the swap partition of the disk which
you intend to boot
.Nx
from.
Normally, this step will be performed manually from the ramdisk boot
environment.
.	tag)
.tag)
.
.(tag miniroot/
.It Pa netboot/
.	(tag sboot
.	It Pa sboot
An MVME147 bootstrap program in Motorola S-Record format.
This is required when you wish to boot an MVME147 over the network since
the ROM has no built-in network support.
Instructions for getting this program into memory are discussed later.
.	tag)
.	(tag netboot
.	It Pa netboot
A standalone 2nd stage bootstrap program loaded over the network via TFTP.
This is responsible for fetching and starting the
.Nx
\*M
kernel from an NFS server.
.	tag)
.tag)
.
.(tag tapeimage/
.It Pa tapeimage/
.	(tag stboot
.	It Pa stboot
This file contains a boot sector for Motorola MVME boards.
It must be the first file written to a tape in order to make the tape bootable.
.	tag)
.	(tag bootst
.	It Pa bootst
This file contains a bootstrap program which knows how to load the
.Nx
\*M
ramdisk image from tape.
This must be the second file written to the tape.
.	tag)
.	(tag netbsd-RAMDISK.gz
.	It Pa netbsd-RAMDISK.gz
This is the
.Nx
\*M
ramdisk image.
It contains a
.Li GENERIC
kernel and a built in RAMDISK
with just enough tools to partition a disk, dump the miniroot kernel
to it and make the disk bootable.
This must be the third file written to the tape.
.	tag)
.tag)
.\} \" \n[mvme68k]
.
.
.if \n[sgimips] \{\
.Pp
The following are included in the
.Pa sgimips/installation
directory:
.
.(tag diskimage/
.It Pa diskimage/
.	(tag diskimage.\*[setsuffix]
.	It Pa diskimage.gz
FFS disk image of the installation filesystem.
.	tag)
.It Pa netboot/
.	(tag diskimage.\*[setsuffix]
.	It Pa diskimage.\*[setsuffix]
Minimal file set necessary for NFS-root installations; to be extracted on the 
NFS server.
.	tag)
.tag)
.
.Pp
.
The following are included in the
.Pa sgimips/binary/kernel
directory:
.
.(tag netbsd-INSTALL32_IPxx.symbols.gz
.It Pa netbsd-GENERIC32_IPxx.ecoff.gz
An ECOFF
version of the 
.Li GENERIC32_IPxx
kernel (gzipped).  This kernel can be used when booting machines
whose PROMs do not understand the ELF binary format.
.It Pa netbsd-INSTALL32_IPxx.gz
A gzipped
.Li INSTALL32_IPxx
kernel, which includes an embedded ramdisk with the installation tools.
.It Pa netbsd-INSTALL32_IPxx.ecoff.gz
An ECOFF version of the
.Li netbsd-INSTALL32_IPxx kernel (also gzipped).
.It Pa netbsd-INSTALL32_IPxx.symbols.gz
Symbols for
.Pa netbsd-INSTALL32_IPxx.gz .
.tag)
.\}
.
.if \n[sparc] \{\
.(Note
The distribution cannot be extracted using the
.Tn SunOS
.Ic tar
program
.Note)
.\}
.
.
.if \n[sun2] \{\
.Pp
There is a collection of Sun2 kernels in the
.Pa \*M/binary/kernel
subdirectory of the
.Nx
\*V distribution.
The one named
.Pa netbsd-RAMDISK.gz
contain a root file system image and should only be used for the
initial installation.
The others are included for convenience.
(Most people will want to use
.Pa netbsd-GENERIC.gz
or
.Pa netbsd-FOURMEG.gz
as appropriate.)
Please note that these kernels are simply gzipped and are not tar archives.
.\}
.
.if \n[sun3] \{\
.Pp
There is a collection of Sun3 and Sun3X kernels in the
.Pa \*M/binary/kernels
subdirectory of the
.Nx
\*V distribution.
The ones named
.Pa netbsd-ramdisk*.gz
contain a root file system image and should only be used for the
initial installation.
The others are included for convenience.
(Most people will want to use
.Pa netbsd-generic.gz
or
.Pa netbsd-generic3x.gz
as appropriate.)
Please note that these kernels are simply gzipped and are not tar archives.
.\}