plan9.ini 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893
  1. .TH PLAN9.INI 8
  2. .SH NAME
  3. plan9.ini \- configuration file for PCs
  4. .SH SYNOPSIS
  5. .I none
  6. .SH DESCRIPTION
  7. When booting Plan 9 on a PC, the DOS program
  8. .IR 9load (8)
  9. first reads a DOS file
  10. containing configuration information from the boot disk.
  11. This file,
  12. .BR plan9.ini ,
  13. looks like a shell script containing lines of the form
  14. .PP
  15. .EX
  16. name=\f2value\fP
  17. .EE
  18. .LP
  19. each of which defines a kernel or device parameter.
  20. .PP
  21. For devices, the generic format of
  22. .I value
  23. is
  24. .PP
  25. .EX
  26. type=TYPE [port=N] [irq=N] [mem=N] [size=N] [dma=N] [ea=N]
  27. .EE
  28. .LP
  29. specifying the controller type,
  30. the base I/O port of the interface, its interrupt
  31. level, the physical starting address of any mapped memory,
  32. the length in bytes of that memory, the DMA channel,
  33. and for Ethernets an override of the physical network address.
  34. Not all elements are relevant to all devices; the relevant values
  35. and their defaults are defined below in the description of each device.
  36. .PP
  37. The file is used by
  38. .B 9load
  39. and the kernel to configure the hardware available.
  40. The information it contains is also passed to the boot
  41. process, and subsequently other programs,
  42. as environment variables
  43. (see
  44. .IR boot (8)).
  45. However, values whose names begin with an asterisk
  46. .B *
  47. are used by the kernel and are not converted into environment variables.
  48. .PP
  49. The following sections describe how variables are used.
  50. .SS \fLetherX=value\fP
  51. This defines an Ethernet interface.
  52. .IR X ,
  53. a unique monotonically increasing number beginning at 0,
  54. identifies an Ethernet card to be probed at system boot.
  55. Probing stops when a card is found or there is no line for
  56. .BR etherX+1 .
  57. After probing as directed by the
  58. .BI ether X
  59. lines, any remaining ethernet cards that can be automatically
  60. detected are added.
  61. Almost all cards can be automatically detected.
  62. For debugging purposes, automatic probing can
  63. be disabled by specifying the line
  64. .BR *noetherprobe= .
  65. This automatic probing is only done by the kernel, not by
  66. .IR 9load (8).
  67. Thus, if you want to load a kernel over the ethernet, you need
  68. to specify an
  69. .B ether0
  70. line so that
  71. .I 9load
  72. can find the ethernet card, even if the kernel would
  73. have automatically detected it.
  74. .PP
  75. Some cards are software configurable and do not require all options.
  76. Unspecified options default to the factory defaults.
  77. .PP
  78. Known types are
  79. .TP
  80. .B ne2000
  81. Not software configurable. 16-bit card.
  82. Defaults are
  83. .EX
  84. port=0x300 irq=2 mem=0x04000 size=0x4000
  85. .EE
  86. The option (no value)
  87. .B nodummyrr
  88. is needed on some (near) clones to turn off a dummy remote read in the driver.
  89. .TP
  90. .B amd79c970
  91. The AMD PCnet PCI Ethernet Adapter (AM79C970).
  92. (This is the ethernet adapter used by VMware.)
  93. Completely configurable, no options need be given.
  94. .TP
  95. .B wd8003
  96. Includes WD8013 and SMC Elite and Elite Ultra cards. There are varying degrees
  97. of software configurability. Cards may be in either 8-bit or 16-bit slots.
  98. Defaults are
  99. .EX
  100. port=0x280 irq=3 mem=0xD0000 size=0x2000
  101. .EE
  102. BUG: On many machines only the 16 bit card works.
  103. .TP
  104. .B elnk3
  105. The 3COM Etherlink III series of cards including the 5x9, 59x, and 905 and 905B.
  106. Completely configurable, no options need be given.
  107. The media may be specified by setting
  108. .B media=
  109. to the value
  110. .BR 10BaseT ,
  111. .BR 10Base2 ,
  112. .BR 100BaseTX ,
  113. .BR 100BaseFX ,
  114. .BR aui ,
  115. and
  116. .BR mii .
  117. If you need to force full duplex, because for example the Ethernet switch does not negotiate correctly,
  118. just name the word (no value)
  119. .B fullduplex
  120. or
  121. .BR 100BASE-TXFD .
  122. Similarly, to force 100Mbit operation, specify
  123. .BR force100 .
  124. Port 0x110 is used for the little ISA configuration dance.
  125. .TP
  126. .B 3c589
  127. The 3COM 3C589 series PCMCIA cards, including the
  128. 3C562 and the 589E.
  129. There is no support for the modem on the 3C562.
  130. Completely configurable, no options need be given.
  131. Defaults are
  132. .EX
  133. port=0x240 irq=10
  134. .EE
  135. The media may be specified as
  136. .B media=10BaseT
  137. or
  138. .BR media=10Base2 .
  139. .TP
  140. .B ec2t
  141. The Linksys Combo PCMCIA EthernetCard (EC2T),
  142. EtherFast 10/100 PCMCIA cards (PCMPC100) and integrated controllers (PCM100),
  143. the Netgear FA410TX 10/100 PCMCIA card
  144. and the Accton EtherPair-PCMCIA (EN2216).
  145. Completely configurable, no options need be given.
  146. Defaults are
  147. .EX
  148. port=0x300 irq=9
  149. .EE
  150. These cards are NE2000 clones.
  151. Other NE2000 compatible PCMCIA cards may be tried
  152. with the option
  153. .EX
  154. id=string
  155. .EE
  156. where
  157. .B string
  158. is a unique identifier string contained in the attribute
  159. memory of the card (see
  160. .IR pcmcia (8));
  161. unlike most options in
  162. .BR plan9.ini ,
  163. this string is case-sensitive.
  164. The option
  165. .B dummyrr=[01]
  166. can be used to turn off (0) or on (1) a dummy remote read in the driver
  167. in such cases,
  168. depending on how NE2000 compatible they are.
  169. .TP
  170. .B i82557
  171. Cards using the Intel 8255[789] Fast Ethernet PCI Bus LAN Controller such as the
  172. Intel EtherExpress PRO/100B.
  173. Completely configurable, no options need be given.
  174. If you need to force the media, specify
  175. one of the options (no value)
  176. .BR 10BASE-T ,
  177. .BR 10BASE-2 ,
  178. .BR 10BASE-5 ,
  179. .BR 100BASE-TX ,
  180. .BR 10BASE-TFD ,
  181. .BR 100BASE-TXFD ,
  182. .BR 100BASE-T4 ,
  183. .BR 100BASE-FX ,
  184. or
  185. .BR 100BASE-FXFD .
  186. .TP
  187. .B 2114x
  188. Cards using the Digital Equipment (now Intel) 2114x PCI Fast Ethernet Adapter Controller,
  189. for example the Netgear FA310.
  190. Completely configurable, no options need be given.
  191. Media can be specified the same was as for the
  192. .BR i82557 .
  193. Some cards using the
  194. .B PNIC
  195. and
  196. .B PNIC2
  197. near-clone chips may also work.
  198. .\" .TP
  199. .\" .B ga620
  200. .\" Netgear GA620 and GA620T Gigabit Ethernet cards,
  201. .\" and other cards using the Alteon Acenic chip such as the
  202. .\" Alteon Acenic fiber and copper cards,
  203. .\" the DEC DEGPA-SA and the SGI Acenic.
  204. .\" Completely configurable.
  205. .TP
  206. .B wavelan
  207. Lucent Wavelan (Orinoco) IEEE 802.11b
  208. and compatible PCMCIA cards.
  209. Compatible cards include the Dell TrueMobile 1150
  210. and the Linksys Instant Wireless Network PC Card.
  211. Port and IRQ defaults are 0x180 and 3 respectively.
  212. These cards take a number of unique options to aid in
  213. identifying the card correctly on the 802.11b network.
  214. The network may be
  215. .I "ad hoc"
  216. or
  217. .I managed
  218. (i.e. use an access point):
  219. .EX
  220. mode=[adhoc, managed]
  221. .EE
  222. and defaults to
  223. .IR managed .
  224. The 802.11b network to attach to
  225. .RI ( managed
  226. mode)
  227. or identify as
  228. .RI ( "ad hoc"
  229. mode),
  230. is specified by
  231. .EX
  232. essid=string
  233. .EE
  234. and defaults to a null string.
  235. The card station name is given by
  236. .EX
  237. station=string
  238. .EE
  239. and defaults to
  240. .IR "Plan 9 STA" .
  241. The channel to use is given by
  242. .EX
  243. channel=number
  244. .EE
  245. where
  246. .I number
  247. lies in the range 1 to 16 inclusive;
  248. the channel is normally negotiated automatically.
  249. If the card is capable of encryption,
  250. the following options may be used:
  251. .EX
  252. crypt=[off, on]
  253. .EE
  254. and defaults to
  255. .IR on .
  256. .EX
  257. key\fIN\fP=string
  258. .EE
  259. sets the encryption key
  260. .I N
  261. (where
  262. .I N
  263. is in the range 1 to 4 inclusive) to
  264. .IR string ;
  265. this will also set the transmit key to
  266. .I N
  267. (see below).
  268. There are two formats for
  269. .I string
  270. which depend on the length of the string.
  271. If it is exactly 5 or 13 characters long it is assumed
  272. to be an alphanumeric key; if it is exactly 10 or 26 characters
  273. long the key is assumed to be in hex format (without a leading
  274. .IR 0x ).
  275. The lengths are checked,
  276. as is the format of a hex key.
  277. .EX
  278. txkey=number
  279. .EE
  280. sets the transmit key to use to be
  281. .I number
  282. in the range 1 to 4 inclusive.
  283. If it is desired to exclude or include unencrypted packets
  284. .EX
  285. clear=[off, on]
  286. .EE
  287. configures reception and defaults to inclusion.
  288. The defaults are intended to match the common case of
  289. a managed network with encryption and a typical entry would
  290. only require, for example
  291. .EX
  292. essid=left-armpit key1=afish key2=calledraawaru
  293. .EE
  294. if the port and IRQ defaults are used.
  295. These options may be set after boot by writing to the device's
  296. .I ctl
  297. file using a space as the separator between option and value, e.g.
  298. .EX
  299. echo 'key2 1d8f65c9a52d83c8e4b43f94af' > /net/ether0/0/ctl
  300. .EE
  301. Card-specific power management may be enabled/disabled by
  302. .EX
  303. pm=[on, off]
  304. .EE
  305. .TP
  306. .B wavelanpci
  307. PCI ethernet adapters that use the same Wavelan
  308. programming interface.
  309. Currently the only tested cards are those based on the
  310. Intersil Prism 2.5 chipset.
  311. .TP
  312. .B 83815
  313. National Semiconductor DP83815-based adapters, notably
  314. the Netgear FA311, Netgear FA312, and various SiS built-in
  315. controllers such as the SiS900.
  316. On the SiS controllers, the ethernet address is not detected properly;
  317. specify it with an
  318. .B ea=
  319. attribute.
  320. .\" .TP
  321. .\" .B 83820
  322. .\" National Semiconductor DP83820-based gigabit ethernet adapters, notably
  323. .\" the D-Link DGE-500T.
  324. .TP
  325. .B rtl8139
  326. The Realtek 8139.
  327. .TP
  328. .B igbe
  329. The Intel 8254X Gigabit Ethernet controllers,
  330. as found on the Intel PRO/1000 adapters for copper (not fiber).
  331. .TP
  332. .B smc91cxx
  333. SMC 91cXX chip-based PCMCIA adapters, notably the SMC EtherEZ card.
  334. .TP
  335. .B sink
  336. A
  337. .B /dev/null
  338. for ethernet packets \(em the interface discards sent
  339. packets and never receives any.
  340. This is used to provide a test bed for
  341. some experimental ethernet bridging software.
  342. .SS \fLusbX=type=uhci port=xxx irq=xxx\fP
  343. This specifies the settings for a USB UHCI controller.
  344. Like the ethernet controllers, USB controllers are autodetected
  345. after scanning for the ones listed in
  346. .IR plan9.ini .
  347. Thus, most systems will not need a
  348. .B usbX
  349. line.
  350. Also like the ethernet controllers, USB autoprobing can be
  351. disabled by specifying the line
  352. .BR *nousbprobe= .
  353. .SS \fLscsiX=value\fP
  354. This defines a SCSI interface which cannot be automatically detected
  355. by the kernel.
  356. .PP
  357. Known types are
  358. .TP
  359. .B aha1542
  360. The Adaptec 154x series of controllers (and clones).
  361. Almost completely configurable, only the
  362. .EX
  363. port=0x300
  364. .EE
  365. option need be given.
  366. .PP
  367. NCR/Symbios/LSI Logic 53c8xx-based adapters
  368. and Mylex MultiMaster (Buslogic BT-*) adapters are
  369. automatically detected and need no entries.
  370. .PP
  371. By default, the NCR 53c8xx driver searches for up to 32 controllers.
  372. This can be changed by setting the variable
  373. .BR *maxsd53c8xx .
  374. .PP
  375. By default the Mylex driver resets SCSI cards by using
  376. both the hard reset and SCSI bus reset flags in the driver interface.
  377. If a variable
  378. .BR *noscsireset
  379. is defined, the SCSI bus reset flag is omitted.
  380. .SS Uarts
  381. Plan 9 automatically configures COM1 and COM2, if found,
  382. as
  383. .B eia0
  384. (port 0x3F8, IRQ4)
  385. and
  386. .B eia1
  387. (port 0x2F8, IRQ3)
  388. respectively.
  389. These devices can be disabled by adding a line:
  390. .EX
  391. eia\fIX\fP=disabled
  392. .EE
  393. This is typically done in order to reuse the IRQ for
  394. another device.
  395. .PP
  396. Plan 9 used to support various serial concentrators,
  397. including the TTC 8 serial line card and various models
  398. in the Star Gate Avanstar series of intelligent serial boards.
  399. These are no longer supported; the much simpler
  400. Perle PCI-Fast4, PCI-Fast8, and PCI-Fast16 controllers
  401. have taken their places.
  402. These latter cards are automatically detected
  403. and need no configuration lines.
  404. .PP
  405. The line
  406. .B serial=type=com
  407. can be used to specify settings for a PCMCIA modem.
  408. .SS \fLmouseport=value\fP
  409. This specifies where the mouse is attached.
  410. .I Value
  411. can be
  412. .TP
  413. .B ps2
  414. the PS2 mouse/keyboard port. The BIOS setup procedure
  415. should be used to configure the machine appropriately.
  416. .TP
  417. .B ps2intellimouse
  418. an Intellimouse on the PS2 port.
  419. .TP
  420. .B 0
  421. for COM1
  422. .TP
  423. .B 1
  424. for COM2
  425. .SS \fLmodemport=value\fP
  426. Picks the UART line to call out on.
  427. This is used when connecting to a file server over
  428. an async line.
  429. .I Value
  430. is the number of the port.
  431. .SS \fLpccard0=disabled\fP
  432. Disable probing for and automatic configuration of PC card controllers.
  433. .SS \fLpcmciaX=type=XXX irq=value\fP
  434. If the default IRQ for the
  435. PCMCIA
  436. is correct, this entry can be omitted. The value of
  437. .B type
  438. is ignored.
  439. .SS \fLpcmcia0=disabled\fP
  440. Disable probing for and automatic configuration of PCMCIA controllers.
  441. .SS \fLconsole=value params\fP
  442. This is used to specify the console device.
  443. The default
  444. value is
  445. .BR cga ;
  446. a number
  447. .B 0
  448. or
  449. .B 1
  450. specifies
  451. .I COM1
  452. or
  453. .I COM2
  454. respectively.
  455. A serial console is initially configured with the
  456. .IR uart (3)
  457. configuration string
  458. .B b9600
  459. .B l8
  460. .B pn
  461. .BR s1 ,
  462. specifying 9600 baud,
  463. 8 bit bytes, no parity, and one stop bit.
  464. If
  465. .I params
  466. is given, it will be used to further
  467. configure the uart.
  468. Notice that there is no
  469. .B =
  470. sign in the
  471. .I params
  472. syntax.
  473. For example,
  474. .EX
  475. console=0 b19200 po
  476. .EE
  477. would use COM1 at 19,200 baud
  478. with odd parity.
  479. .SS \fLbootfile=value\fP
  480. This is used to direct the actions of
  481. .IR 9load (8)
  482. by naming the device and file from which to load the kernel.
  483. .SS \fLrootdir=dir\fP
  484. .SS \fLrootspec=spec\fP
  485. These are used by
  486. .IR 9load (8)
  487. to identify the directory
  488. .I dir
  489. to make the root directory for the kernel, and the
  490. file system specifier
  491. .I spec
  492. (see
  493. .B mount
  494. in
  495. .IR bind (2))
  496. on which it can be found.
  497. These are usually used to test variant file systems for distributions, etc.
  498. .SS \fLbootargs=value\fP
  499. The value of this variable is passed to
  500. .IR boot (8)
  501. by the kernel as the name of the root file system.
  502. It is typically used to specify additional arguments to
  503. pass to
  504. .IR kfs (4)
  505. or
  506. .IR ipconfig (8).
  507. For example, if the system is to run from a local
  508. .IR kfs (4)
  509. partition, the definition might read
  510. .BR bootargs=local!#S/sdC0/fs .
  511. See
  512. .IR boot (8)
  513. for more.
  514. .SS \fLdebugfactotum=\fP
  515. Causes
  516. .IR boot (8)
  517. to start factotum with the
  518. .B -p
  519. flag, so that it can be debugged.
  520. .SS \fLventi=value\fP
  521. When booting from a local fossil server backed by a local
  522. or remote venti server,
  523. this variable specifies how to establish the connection to the
  524. venti server.
  525. See
  526. .IR boot (8)
  527. for more.
  528. .SS \fLcfs=value\fP
  529. This gives the name of the file holding the disk partition
  530. for the cache file system,
  531. .IR cfs (4).
  532. Extending the
  533. .B bootargs
  534. example, one would write
  535. .BR cfs=#S/sdC0/cache .
  536. .SS \fLbootdisk=value\fP
  537. This deprecated variable was used to specify the disk used by
  538. the cache file system and other disk-resident services.
  539. It is superseded by
  540. .B bootargs
  541. and
  542. .BR cfs .
  543. .SS \fLpartition=value\fP
  544. This defines the partition table
  545. .IR 9load (8)
  546. will examine to find disk partitioning information.
  547. By default, a partition table in a Plan 9 partition
  548. is consulted; if no such table is found, an old-Plan 9
  549. partition table on the next-to-last or last sector
  550. of the disk is consulted.
  551. A value of
  552. .B new
  553. consults only the first table,
  554. .B old
  555. only the second.
  556. .SS \fL*norealmode=\fP
  557. The kernel switches the processor to 16-bit real mode
  558. to run BIOS interrupts, for example to find the memory map or to enable VESA.
  559. This variable disables such switches.
  560. .SS \fL*noe820scan=\fP
  561. When available, the kernel uses the BIOS E820 memory map
  562. to size memory. This variable disables the scan.
  563. .SS \fL*maxmem=value\fP
  564. This defines the maximum physical address that the system will scan when sizing memory.
  565. By default the operating system will scan up to 768 megabytes, but setting
  566. .B *maxmem
  567. will limit the scan.
  568. If the system has more than 768 megabytes, you must set
  569. .B *maxmem
  570. for the kernel to find it.
  571. .B *maxmem
  572. must be less than 1.75 gigabytes.
  573. This variable is not consulted if using the E820 memory map.
  574. .SS \fL*kernelpercent=value\fP
  575. This defines what percentage of available memory is reserved for the kernel allocation pool.
  576. The remainder is left for user processes. The default
  577. .I value
  578. is
  579. .B 30
  580. on CPU servers,
  581. .B 60
  582. on terminals with less than 16MB of memory,
  583. and
  584. .B 40
  585. on terminals with memories of 16MB or more.
  586. Terminals use more kernel memory because
  587. .IR draw (3)
  588. maintains its graphic images in kernel memory.
  589. This deprecated option is rarely necessary in newer kernels.
  590. .SS \fL*nomce=value\fP
  591. If machine check exceptions are supported by the processor,
  592. then they are enabled by default.
  593. Setting this variable to
  594. .B 1
  595. causes them to be disabled even when available.
  596. .SS \fL*nomp=\fP
  597. A multiprocessor machine will enable all processors by default.
  598. Setting
  599. .B *nomp
  600. restricts the kernel to starting only one processor and using the
  601. traditional interrupt controller.
  602. .SS \fL*ncpu=value\fP
  603. Setting
  604. .B *ncpu
  605. restricts the kernel to starting at most
  606. .I value
  607. processors.
  608. .SS \fL*pcimaxbno=value\fP
  609. This puts a limit on the maximum bus number probed
  610. on a PCI bus (default 255).
  611. For example, a
  612. .I value
  613. of 1 should suffice on a 'standard' motherboard with an AGP slot.
  614. This, and
  615. .B *pcimaxdno
  616. below are rarely used and only on troublesome or suspect hardware.
  617. .SS \fL*pcimaxdno=value\fP
  618. This puts a limit on the maximum device number probed
  619. on a PCI bus (default 31).
  620. .SS \fL*nopcirouting=\fP
  621. Disable pci routing during boot. May solve interrupt routing
  622. problems on certain machines.
  623. .SS \fL*nodumpstack=\fP
  624. Disable printing a stack dump on panic.
  625. Useful if there is only a limited cga screen available,
  626. otherwise the textual information about the panic may scroll off.
  627. .\" .SS \fL*nobios=\fP
  628. .\" what does this do? something with pci
  629. .SS \fLioexclude=value\fP
  630. Specifies a list of ranges of I/O ports to exclude from use by drivers.
  631. Ranges are inclusive on both ends and separated by commas.
  632. For example:
  633. .EX
  634. ioexclude=0x330-0x337,0x430-0x43F
  635. .EE
  636. .SS \fLumbexclude=value\fP
  637. Specifies a list of ranges of UMB to exclude from use by drivers.
  638. Ranges are inclusive on both ends and separated by commas.
  639. For example:
  640. .EX
  641. umbexclude=0xD1800-0xD3FFF
  642. .EE
  643. .SS \fLapm0=\fP
  644. This enables the ``advanced power management'' interface
  645. as described in
  646. .IR apm (3)
  647. and
  648. .IR apm (8).
  649. The main feature of the interface is the ability to watch
  650. battery life (see
  651. .IR stats (8)).
  652. It is not on by default because it causes problems on some laptops.
  653. .SS \fLmonitor=value\fP
  654. .SS \fLvgasize=value\fP
  655. These are used not by the kernel but by
  656. .I termrc
  657. (see
  658. .IR cpurc (8))
  659. when starting
  660. .IR vga (8).
  661. .SS \fL*dpms=value\fP
  662. This is used to specify the screen blanking behavior of the MGA4xx
  663. video driver.
  664. Values are
  665. .BR standby ,
  666. .BR suspend ,
  667. and
  668. .BR off .
  669. The first two specify differing levels of power saving;
  670. the third turns the monitor off completely.
  671. .SS \fLnvram=file\fP
  672. .SS \fLnvrlen=length\fP
  673. .SS \fLnvroff=offset\fP
  674. This is used to specify an nvram device and optionally the length of the ram
  675. and read/write offset to use.
  676. These values are consulted by
  677. .I readnvram
  678. (see
  679. .IR authsrv (2)).
  680. The most common use of the nvram is to hold a
  681. .IR secstore (1)
  682. password for use by
  683. .IR factotum (4).
  684. .SS \fLnvr=value\fP
  685. This is used by the WORM file server kernel to locate a file holding information
  686. to configure the file system.
  687. The file cannot live on a SCSI disk.
  688. The default is
  689. .B fd!0!plan9.nvr
  690. (sic),
  691. unless
  692. .B bootfile
  693. is set, in which case it is
  694. .B plan9.nvr
  695. on the same disk as
  696. .BR bootfile .
  697. The syntax is either
  698. .BI fd! unit ! name
  699. or
  700. .BI hd! unit ! name
  701. where
  702. .I unit
  703. is the numeric unit id.
  704. This variant syntax is a vestige of the file server kernel's origins.
  705. .SS \fLaudioX=value\fP
  706. This defines a sound interface.
  707. .PP
  708. Known types are
  709. .TP
  710. .B sb16
  711. Sound Blaster 16.
  712. .TP
  713. .B ess1688
  714. A Sound Blaster clone.
  715. .PP
  716. The DMA channel may be any of 5, 6, or 7.
  717. The defaults are
  718. .EX
  719. port=0x220 irq=7 dma=5
  720. .EE
  721. .SS \fLfs=a.b.c.d\fP
  722. .SS \fLauth=a.b.c.d\fP
  723. These specify the IP address of the file and authentication server
  724. to use when mounting a network-provided root file system.
  725. They are used only if the addresses cannot be determined via DHCP.
  726. .SH Multiple Configurations
  727. .PP
  728. A
  729. .B plan9.ini
  730. file may contain multiple configurations,
  731. each within a block beginning with a line
  732. .EX
  733. [tag]
  734. .EE
  735. A special block with the tag
  736. .B menu
  737. gives a list of blocks from which the user may
  738. interactively select the contents of
  739. .BR plan9.ini .
  740. There may also be multiple blocks with the tag
  741. .B common
  742. which will be included in all selections;
  743. if any lines appear in
  744. .B plan9.ini
  745. before the first block,
  746. they are treated as a
  747. .B common
  748. block.
  749. .LP
  750. Within the
  751. .B menu
  752. block the following configuration lines are allowed:
  753. .SS \fLmenuitem=tag[, description]
  754. The block identified by
  755. .B tag
  756. will appear in the presented menu.
  757. The menu entry will consist of the
  758. .B tag
  759. unless the optional
  760. .B description
  761. is given.
  762. .SS \fLmenudefault=tag[, timeout]
  763. Identifies a default block to be given in the
  764. menu selection prompt.
  765. If the optional
  766. .B timeout
  767. is given (in seconds),
  768. the default block will be selected if there is no user
  769. input within the timeout period.
  770. .SS \fLmenuconsole=value[, baud]
  771. Selects a serial console upon which to present the menu
  772. as no
  773. .B console
  774. or
  775. .B baud
  776. configuration information will have been processed yet
  777. (the
  778. .B plan9.ini
  779. contents are still to be decided...).
  780. .LP
  781. In response to the menu being printed,
  782. the user is prompted to select a menu item from the list.
  783. If the numeric response is followed by a
  784. .BR p ,
  785. the selected configuration is printed and the menu presented
  786. again.
  787. .LP
  788. The line
  789. .EX
  790. menuitem=tag
  791. .EE
  792. is prefixed to the selected configuration as an aid to
  793. user-level initialization scripts.
  794. .SH EXAMPLES
  795. .PP
  796. A representative
  797. .BR plan9.ini :
  798. .IP
  799. .EX
  800. % cat /n/c:/plan9.ini
  801. ether0=type=3C509
  802. mouseport=ps2
  803. modemport=1
  804. serial0=type=generic port=0x3E8 irq=5
  805. monitor=445x
  806. vgasize=1600x1200x8
  807. %
  808. .EE
  809. .PP
  810. Minimum CONFIG.SYS and AUTOEXEC.BAT files to use
  811. COM2 as a console:
  812. .IP
  813. .EX
  814. % cat /n/c:/config.sys
  815. SHELL=COMMAND.COM COM2 /P
  816. % cat /n/c:/autoexec.bat
  817. @ECHO OFF
  818. PROMPT $p$g
  819. PATH C:\eDOS;C:\eBIN
  820. mode com2:96,n,8,1,p
  821. SET TEMP=C:\eTMP
  822. %
  823. .EE
  824. .PP
  825. Simple
  826. .B plan9.ini
  827. with multiple configurations:
  828. .IP
  829. .EX
  830. [menu]
  831. menuitem=vga, Plan 9 with VGA
  832. menuitem=novga, Plan 9 no automatic VGA
  833. menudefault=vga
  834. [vga]
  835. monitor=multisync135
  836. vgasize=1024x768x8
  837. [novga]
  838. [common]
  839. ether0=type=i82557
  840. audio0=type=sb16 port=0x220 irq=5 dma=1
  841. .EE
  842. .PP
  843. With this, the following menu will be presented on boot:
  844. .IP
  845. .EX
  846. Plan 9 Startup Menu:
  847. ====================
  848. 1. Plan 9 with VGA
  849. 2. Plan 9 no automatic VGA
  850. Selection[default==1]:
  851. .EE
  852. .PP
  853. Selecting item 1 generates the following
  854. .B plan9.ini
  855. to be used by the remainder of the bootstrap process:
  856. .IP
  857. .EX
  858. menuitem=vga
  859. monitor=multisync135
  860. vgasize=1024x768x8
  861. ether0=type=i82557
  862. audio0=type=sb16 port=0x220 irq=5 dma=1
  863. .EE
  864. .PP
  865. and selecting item 2:
  866. .IP
  867. .EX
  868. menuitem=novga
  869. ether0=type=i82557
  870. audio0=type=sb16 port=0x220 irq=5 dma=1
  871. .EE
  872. .SH "SEE ALSO"
  873. .IR 9load (8),
  874. .IR booting (8),
  875. .IR boot (8)
  876. .SH BUGS
  877. Being able to set the console device to other than a
  878. display is marginally useful on file servers; MS-DOS
  879. and the programs which run under it are so tightly bound
  880. to the display that it is necessary to have a display if any
  881. setup or reconfiguration programs need to be run.
  882. Also, the delay before any messages appear at boot time
  883. is disconcerting, as any error messages from the BIOS
  884. are lost.
  885. .PP
  886. This idea is at best an interesting experiment that needs another iteration.