plan9.ini 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836
  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. .EX
  269. txkey=number
  270. .EE
  271. sets the transmit key to use to be
  272. .I number
  273. in the range 1 to 4 inclusive.
  274. If it is desired to exclude or include unencrypted packets
  275. .EX
  276. clear=[off, on]
  277. .EE
  278. configures reception and defaults to inclusion.
  279. The defaults are intended to match the common case of
  280. a managed network with encryption and a typical entry would
  281. only require, for example
  282. .EX
  283. essid=left-armpit key2=fishcalledraawaru
  284. .EE
  285. if the port and IRQ defaults are used.
  286. These options may be set after boot by writing to the device's
  287. .I ctl
  288. file using a space as the separator between option and value, e.g.
  289. .EX
  290. echo 'key2 fishcalledraawaru' > /net/ether0/0/ctl
  291. .EE
  292. .TP
  293. .B wavelanpci
  294. PCI ethernet adapters that use the same Wavelan
  295. programming interface.
  296. Currently the only tested cards are those based on the
  297. Intersil Prism 2.5 chipset.
  298. .TP
  299. .B 83815
  300. National Semiconductor DP83815-based adapters, notably
  301. the Netgear FA311, Netgear FA312, and various SiS built-in
  302. controllers such as the SiS900.
  303. On the SiS controllers, the ethernet address is not detected properly;
  304. specify it with an
  305. .B ea=
  306. attribute.
  307. .\" .TP
  308. .\" .B 83820
  309. .\" National Semiconductor DP83820-based gigabit ethernet adapters, notably
  310. .\" the D-Link DGE-500T.
  311. .TP
  312. .B rtl8139
  313. The Realtek 8139.
  314. .TP
  315. .B 82543gc
  316. The Intel RS-82543GC gigabit ethernet controller,
  317. as found on the Intel PRO/1000[FT] server adapter.
  318. The older non-[FT] cards based on the 82542 (LSI L2A1157)
  319. chip are not supported, although support would probably be
  320. easy to add.
  321. .TP
  322. .B smc91cxx
  323. SMC 91cXX chip-based PCMCIA adapters, notably the SMC EtherEZ card.
  324. .TP
  325. .B sink
  326. A
  327. .B /dev/null
  328. for ethernet packets \(em the interface discards sent
  329. packets and never receives any.
  330. This is used to provide a test bed for
  331. some experimental ethernet bridging software.
  332. .SS \fLusbX=type=uhci port=xxx irq=xxx\fP
  333. This specifies the settings for a USB UHCI controller.
  334. Like the ethernet controllers, USB controllers are autodetected
  335. after scanning for the ones listed in
  336. .IR plan9.ini .
  337. Thus, most systems will not need a
  338. .B usbX
  339. line.
  340. Also like the ethernet controllers, USB autoprobing can be
  341. disabled by specifying the line
  342. .BR *nousbprobe= .
  343. .SS \fLscsiX=value\fP
  344. This defines a SCSI interface which cannot be automatically detected
  345. by the kernel.
  346. .PP
  347. Known types are
  348. .TP
  349. .B aha1542
  350. The Adaptec 154x series of controllers (and clones).
  351. Almost completely configurable, only the
  352. .EX
  353. port=0x300
  354. .EE
  355. option need be given.
  356. .PP
  357. NCR/Symbios/LSI Logic 53c8xx-based adapters
  358. and Mylex MultiMaster (Buslogic BT-*) adapters are
  359. automatically detected and need no entries.
  360. .PP
  361. By default, the NCR 53c8xx driver searches for up to 32 controllers.
  362. This can be changed by setting the variable
  363. .BR *maxsd53c8xx .
  364. .PP
  365. By default the Mylex driver resets SCSI cards by using
  366. both the hard reset and SCSI bus reset flags in the driver interface.
  367. If a variable
  368. .BR *noscsireset
  369. is defined, the SCSI bus reset flag is omitted.
  370. .SS Uarts
  371. Plan 9 automatically configures COM1 and COM2, if found,
  372. as
  373. .B eia0
  374. (port 0x3F8, IRQ4)
  375. and
  376. .B eia1
  377. (port 0x2F8, IRQ3)
  378. respectively.
  379. These devices can be disabled by adding a line:
  380. .EX
  381. eia\fIX\fP=disabled
  382. .EE
  383. This is typically done in order to reuse the IRQ for
  384. another device.
  385. .PP
  386. Plan 9 used to support various serial concentrators,
  387. including the TTC 8 serial line card and various models
  388. in the Star Gate Avanstar series of intelligent serial boards.
  389. These are no longer supported; the much simpler
  390. Perle PCI-Fast4, PCI-Fast8, and PCI-Fast16 controllers
  391. have taken their places.
  392. These latter cards are automatically detected
  393. and need no configuration lines.
  394. .PP
  395. The line
  396. .B serial=type=com
  397. can be used to specify settings for a PCMCIA modem.
  398. .SS \fLmouseport=value\fP
  399. This specifies where the mouse is attached.
  400. .I Value
  401. can be
  402. .TP
  403. .B ps2
  404. the PS2 mouse/keyboard port. The BIOS setup procedure
  405. should be used to configure the machine appropriately.
  406. .TP
  407. .B ps2intellimouse
  408. an Intellimouse on the PS2 port.
  409. .TP
  410. .B 0
  411. for COM1
  412. .TP
  413. .B 1
  414. for COM2
  415. .SS \fLmodemport=value\fP
  416. Picks the UART line to call out on.
  417. This is used when connecting to a file server over
  418. an async line.
  419. .I Value
  420. is the number of the port.
  421. .SS \fLpccard0=disabled\fP
  422. Disable probing for and automatic configuration of PC card controllers.
  423. .SS \fLpcmciaX=type=XXX irq=value\fP
  424. If the default IRQ for the
  425. PCMCIA
  426. is correct, this entry can be omitted. The value of
  427. .B type
  428. is ignored.
  429. .SS \fLpcmcia0=disabled\fP
  430. Disable probing for and automatic configuration of PCMCIA controllers.
  431. .SS \fLconsole=value params\fP
  432. This is used to specify the console device.
  433. The default
  434. value is
  435. .BR cga ;
  436. a number
  437. .B 0
  438. or
  439. .B 1
  440. specifies
  441. .I COM1
  442. or
  443. .I COM2
  444. respectively.
  445. A serial console is initially configured with the
  446. .IR uart (3)
  447. configuration string
  448. .B b9600
  449. .B l8
  450. .B pn
  451. .BR s1 ,
  452. specifying 9600 baud,
  453. 8 bit bytes, no parity, and one stop bit.
  454. If
  455. .I params
  456. is given, it will be used to further
  457. configure the uart.
  458. Notice that there is no
  459. .B =
  460. sign in the
  461. .I params
  462. syntax.
  463. For example,
  464. .EX
  465. console=0 b19200 po
  466. .EE
  467. would use COM1 at 19,200 baud
  468. with odd parity.
  469. .SS \fLbootfile=value\fP
  470. This is used to direct the actions of
  471. .IR 9load (8)
  472. by naming the device and file from which to load the kernel.
  473. .SS \fLrootdir=dir\fP
  474. .SS \fLrootspec=spec\fP
  475. These are used by
  476. .IR 9load (8)
  477. to identify the directory
  478. .I dir
  479. to make the root directory for the kernel, and the
  480. file system specifier
  481. .I spec
  482. (see
  483. .B mount
  484. in
  485. .IR bind (2))
  486. on which it can be found.
  487. These are usually used to test variant file systems for distributions, etc.
  488. .SS \fLbootargs=value\fP
  489. The value of this variable is passed to
  490. .IR boot (8)
  491. by the kernel as the name of the root file system.
  492. It is typically used to specify additional arguments to
  493. pass to
  494. .IR kfs (4)
  495. or
  496. .IR ipconfig (8).
  497. For example, if the system is to run from a local
  498. .IR kfs (4)
  499. partition, the definition might read
  500. .BR bootargs=local!#S/sdC0/fs .
  501. See
  502. .IR boot (8)
  503. for more.
  504. .SS \fLcfs=value\fP
  505. This gives the name of the file holding the disk partition
  506. for the cache file system,
  507. .IR cfs (4).
  508. Extending the
  509. .B bootargs
  510. example, one would write
  511. .BR cfs=#S/sdC0/cache .
  512. .SS \fLbootdisk=value\fP
  513. This deprecated variable was used to specify the disk used by
  514. the cache file system and other disk-resident services.
  515. It is superseded by
  516. .B bootargs
  517. and
  518. .BR cfs .
  519. .SS \fLpartition=value\fP
  520. This defines the partition table
  521. .IR 9load (8)
  522. will examine to find disk partitioning information.
  523. By default, a partition table in a Plan 9 partition
  524. is consulted; if no such table is found, an old-Plan 9
  525. partition table on the next-to-last or last sector
  526. of the disk is consulted.
  527. A value of
  528. .B new
  529. consults only the first table,
  530. .B old
  531. only the second.
  532. .SS \fL*maxmem=value\fP
  533. This defines the maximum physical address that the system will scan when sizing memory.
  534. By default the operating system will scan up to 768 megabytes, but setting
  535. .B *maxmem
  536. will limit the scan.
  537. If the system has more than 768 megabytes, you must set
  538. .B *maxmem
  539. for the kernel to find it.
  540. .B *maxmem
  541. must be less than 1.75 gigabytes.
  542. .SS \fL*kernelpercent=value\fP
  543. This defines what percentage of available memory is reserved for the kernel allocation pool.
  544. The remainder is left for user processes. The default
  545. .I value
  546. is
  547. .B 30
  548. on CPU servers,
  549. .B 60
  550. on terminals with less than 16MB of memory,
  551. and
  552. .B 40
  553. on terminals with memories of 16MB or more.
  554. Terminals use more kernel memory because
  555. .IR draw (3)
  556. maintains its graphic images in kernel memory.
  557. This deprecated option is rarely necessary in newer kernels.
  558. .SS \fL*nomce=value\fP
  559. If machine check exceptions are supported by the processor,
  560. then they are enabled by default.
  561. Setting this variable to
  562. .B 1
  563. causes them to be disabled even when available.
  564. .SS \fL*nomp=\fP
  565. A multiprocessor machine will enable all processors by default.
  566. Setting
  567. .B *nomp
  568. restricts the kernel to starting only one processor and using the
  569. traditional interrupt controller.
  570. .SS \fL*ncpu=value\fP
  571. Setting
  572. .B *ncpu
  573. restricts the kernel to starting at most
  574. .I value
  575. processors.
  576. .SS \fL*pcimaxbno=value\fP
  577. This puts a limit on the maximum bus number probed
  578. on a PCI bus (default 255).
  579. For example, a
  580. .I value
  581. of 1 should suffice on a 'standard' motherboard with an AGP slot.
  582. This, and
  583. .B *pcimaxdno
  584. below are rarely used and only on troublesome or suspect hardware.
  585. .SS \fL*pcimaxdno=value\fP
  586. This puts a limit on the maximum device number probed
  587. on a PCI bus (default 31).
  588. .SS \fL*nopcirouting=\fP
  589. Disable pci routing during boot. May solve interrupt routing
  590. problems on certain machines.
  591. .\" .SS \fL*nobios=\fP
  592. .\" what does this do? something with pci
  593. .SS \fLioexclude=value\fP
  594. Specifies a list of ranges I/O ports to exclude from use by drivers.
  595. Ranges are inclusive on both ends and separated by commas.
  596. For example:
  597. .EX
  598. ioexclude=0x330-0x337,0x430-0x43F
  599. .EE
  600. .SS \fLapm0=\fP
  601. This enables the ``advanced power management'' interface
  602. as described in
  603. .IR apm (3)
  604. and
  605. .IR apm (8).
  606. The main feature of the interface is the ability to watch
  607. battery life (see
  608. .IR stats (8)).
  609. It is not on by default because it causes problems on some laptops.
  610. .SS \fLmonitor=value\fP
  611. .SS \fLvgasize=value\fP
  612. These are used not by the kernel but by
  613. .I termrc
  614. (see
  615. .IR cpurc (8))
  616. when starting
  617. .IR vga (8).
  618. .SS \fL*dpms=value\fP
  619. This is used to specify the screen blanking behavior of the MGA4xx
  620. video driver.
  621. Values are
  622. .BR standby ,
  623. .BR suspend ,
  624. and
  625. .BR off .
  626. The first two specify differing levels of power saving;
  627. the third turns the monitor off completely.
  628. .SS \fLnvr=value\fP
  629. This is used by a file server kernel to locate a file holding information
  630. to configure the file system.
  631. The file cannot live on a SCSI disk.
  632. The default is
  633. .B fd!0!plan9.nvr
  634. (sic),
  635. unless
  636. .B bootfile
  637. is set, in which case it is
  638. .B plan9.nvr
  639. on the same disk as
  640. .BR bootfile .
  641. The syntax is either
  642. .BI fd! unit ! name
  643. or
  644. .BI hd! unit ! name
  645. where
  646. .I unit
  647. is the numeric unit id.
  648. This variant syntax is a vestige of the file server kernel's origins.
  649. .SS \fLaudioX=value\fP
  650. This defines a sound interface.
  651. .PP
  652. Known types are
  653. .TP
  654. .B sb16
  655. Sound Blaster 16.
  656. .TP
  657. .B ess1688
  658. A Sound Blaster clone.
  659. .PP
  660. The DMA channel may be any of 5, 6, or 7.
  661. The defaults are
  662. .EX
  663. port=0x220 irq=7 dma=5
  664. .EE
  665. .SS \fLfs=a.b.c.d\fP
  666. .SS \fLauth=a.b.c.d\fP
  667. These specify the IP address of the file and authentication server
  668. to use when mounting a network-provided root file system.
  669. They are used only if the addresses cannot be determined via DHCP.
  670. .SH Multiple Configurations
  671. .PP
  672. A
  673. .B plan9.ini
  674. file may contain multiple configurations,
  675. each within a block beginning with a line
  676. .EX
  677. [tag]
  678. .EE
  679. A special block with the tag
  680. .B menu
  681. gives a list of blocks from which the user may
  682. interactively select the contents of
  683. .BR plan9.ini .
  684. There may also be multiple blocks with the tag
  685. .B common
  686. which will be included in all selections;
  687. if any lines appear in
  688. .B plan9.ini
  689. before the first block,
  690. they are treated as a
  691. .B common
  692. block.
  693. .LP
  694. Within the
  695. .B menu
  696. block the following configuration lines are allowed:
  697. .SS \fLmenuitem=tag[, description]
  698. The block identified by
  699. .B tag
  700. will appear in the presented menu.
  701. The menu entry will consist of the
  702. .B tag
  703. unless the optional
  704. .B description
  705. is given.
  706. .SS \fLmenudefault=tag[, timeout]
  707. Identifies a default block to be given in the
  708. menu selection prompt.
  709. If the optional
  710. .B timeout
  711. is given (in seconds),
  712. the default block will be selected if there is no user
  713. input within the timeout period.
  714. .SS \fLmenuconsole=value[, baud]
  715. Selects a serial console upon which to present the menu
  716. as no
  717. .B console
  718. or
  719. .B baud
  720. configuration information will have been processed yet
  721. (the
  722. .B plan9.ini
  723. contents are still to be decided...).
  724. .LP
  725. In response to the menu being printed,
  726. the user is prompted to select a menu item from the list.
  727. If the numeric response is followed by a
  728. .BR p ,
  729. the selected configuration is printed and the menu presented
  730. again.
  731. .LP
  732. The line
  733. .EX
  734. menuitem=tag
  735. .EE
  736. is prefixed to the selected configuration as an aid to
  737. user-level initialization scripts.
  738. .SH EXAMPLES
  739. .PP
  740. A representative
  741. .BR plan9.ini :
  742. .IP
  743. .EX
  744. % cat /n/c:/plan9.ini
  745. ether0=type=3C509
  746. mouseport=ps2
  747. modemport=1
  748. serial0=type=generic port=0x3E8 irq=5
  749. monitor=445x
  750. vgasize=1600x1200x8
  751. %
  752. .EE
  753. .PP
  754. Minimum CONFIG.SYS and AUTOEXEC.BAT files to use
  755. COM2 as a console:
  756. .IP
  757. .EX
  758. % cat /n/c:/config.sys
  759. SHELL=COMMAND.COM COM2 /P
  760. % cat /n/c:/autoexec.bat
  761. @ECHO OFF
  762. PROMPT $p$g
  763. PATH C:\eDOS;C:\eBIN
  764. mode com2:96,n,8,1,p
  765. SET TEMP=C:\eTMP
  766. %
  767. .EE
  768. .PP
  769. Simple
  770. .B plan9.ini
  771. with multiple configurations:
  772. .IP
  773. .EX
  774. [menu]
  775. menuitem=vga, Plan 9 with VGA
  776. menuitem=novga, Plan 9 no automatic VGA
  777. menudefault=vga
  778. [vga]
  779. monitor=multisync135
  780. vgasize=1024x768x8
  781. [novga]
  782. [common]
  783. ether0=type=i82557
  784. audio0=type=sb16 port=0x220 irq=5 dma=1
  785. .EE
  786. .PP
  787. With this, the following menu will be presented on boot:
  788. .IP
  789. .EX
  790. Plan 9 Startup Menu:
  791. ====================
  792. 1. Plan 9 with VGA
  793. 2. Plan 9 no automatic VGA
  794. Selection[default==1]:
  795. .EE
  796. .PP
  797. Selecting item 1 generates the following
  798. .B plan9.ini
  799. to be used by the remainder of the bootstrap process:
  800. .IP
  801. .EX
  802. menuitem=vga
  803. monitor=multisync135
  804. vgasize=1024x768x8
  805. ether0=type=i82557
  806. audio0=type=sb16 port=0x220 irq=5 dma=1
  807. .EE
  808. .PP
  809. and selecting item 2:
  810. .IP
  811. .EX
  812. menuitem=novga
  813. ether0=type=i82557
  814. audio0=type=sb16 port=0x220 irq=5 dma=1
  815. .EE
  816. .SH "SEE ALSO"
  817. .IR 9load (8),
  818. .IR booting (8),
  819. .IR boot (8)
  820. .SH BUGS
  821. Being able to set the console device to other than a
  822. display is marginally useful on file servers; MS-DOS
  823. and the programs which run under it are so tightly bound
  824. to the display that it is necessary to have a display if any
  825. setup or reconfiguration programs need to be run.
  826. Also, the delay before any messages appear at boot time
  827. is disconcerting, as any error messages from the BIOS
  828. are lost.
  829. .PP
  830. This idea is at best an interesting experiment that needs another iteration.