MONITOR.8
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:13k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. .TH MONITOR 8
  2. .SH NAME
  3. monitor, edparams - load and start Minix, modify boot parameters
  4. .SH SYNOPSIS
  5. .B edparams
  6. .I device
  7. .RB [ command " ...]"
  8. .br
  9. .B boot.com
  10. .I virdisk
  11. .SH DESCRIPTION
  12. .de SP
  13. .if t .sp 0.4
  14. .if n .sp
  15. ..
  16. This text describes the Boot Monitor, a boot time interactive program designed
  17. not only to load and start Minix, its most important task, but to also
  18. provide an easy to use interface to configure Minix and to boot other
  19. operating systems.
  20. .PP
  21. The monitor is controlled with an environment that is modeled after the
  22. Bourne shell.  This environment is filled at startup with default values
  23. that depend on the machine the monitor is running on and the environment
  24. settings saved into the boot parameters sector (the second sector on a
  25. device).  When the environment is loaded, the monitor executes the function
  26. named
  27. .BR main ,
  28. which by default starts a simple menu.
  29. .PP
  30. The environment can be manipulated at boot time from the monitor prompt,
  31. but may also be edited using
  32. .B edparams
  33. on a given device.
  34. .B Edparams
  35. simulates the monitor as much as it can, echoing commands it can't execute
  36. between brackets.  It can also be used in Makefiles and scripts by giving
  37. it commands as arguments.
  38. .PP
  39. The MS-DOS version of the monitor, usually named
  40. .B boot.com
  41. under DOS, boots Minix from a "DOS virtual disk".  (See below.)
  42. .SH COMMANDS
  43. The monitor is best described by the commands you can type to the '>'
  44. prompt.  This is known as the "monitor mode".  You can enter this mode by
  45. hitting the Escape key.  These are the monitor commands:
  46. .PP
  47. fInamefP = [fBdevicefP] fIvaluefP
  48. .SP
  49. .RS
  50. Set environment variable.
  51. .br
  52. Changes the value of
  53. .I name
  54. to
  55. .IR value .
  56. The optional word
  57. .B device
  58. marks
  59. .I name
  60. as being subject to device translation.  (See the section on devices.)  These
  61. (name, value) pairs are passed to the kernel who uses them to configure
  62. itself.  These variables are passed by default:
  63. .SP
  64. .B rootdev
  65. .RS
  66. This is the device used as your root device.  It is by default set to
  67. .BR ram,
  68. which means that the device specified by
  69. .B ramimagedev
  70. will be loaded into the RAM disk and used as root.  If you change this
  71. variable then a physical device will be used as root, and the RAM disk will
  72. be uninitialized and have the size specified by
  73. .BR ramsize .
  74. .RE
  75. .SP
  76. .B ramimagedev
  77. .RS
  78. Describes the device to use to initialize the RAM disk if
  79. .B rootdev
  80. is set to
  81. .BR ram .
  82. It's by default set to
  83. .BR bootdev ,
  84. a special name for the device the monitor booted from.
  85. .RE
  86. .SP
  87. .B ramsize
  88. .RS
  89. The size of the RAM disk.  If the RAM disk is used for the root file system
  90. then the root file system is stretched out to
  91. .B ramsize
  92. if possible.
  93. .RE
  94. .SP
  95. .B processor
  96. .RS
  97. Set by default to
  98. .BR 86 ,
  99. .BR 186 ,
  100. .BR 286 ,
  101. .BR 386 ,
  102. .BR 486 ", ..."
  103. depending on the hardware you have.  You can set it to a smaller value to
  104. test your kernel in a more limited environment.
  105. .RE
  106. .SP
  107. .B bus
  108. .RS
  109. The type of system bus, either
  110. .BR xt ,
  111. .BR at
  112. or
  113. .BR mca .
  114. This answers basic questions like: "How many interrupt controllers and how
  115. to initialize?"  Or: "Does the keyboard have LEDs?"
  116. .RE
  117. .SP
  118. .B memsize
  119. .RS
  120. Kilobytes of conventional memory.  This is the amount of RAM within the
  121. first megabyte.
  122. .RE
  123. .SP
  124. .B emssize
  125. .RS
  126. Kilobytes of extended memory.
  127. .RE
  128. .SP
  129. .B video
  130. .RS
  131. Describes capabilities of the VDU:
  132. .BR mda ,
  133. .BR cga ,
  134. .B ega
  135. or
  136. .BR vga .
  137. .RE
  138. .SP
  139. .B chrome
  140. .RS
  141. Either
  142. .B color
  143. or
  144. .BR mono .
  145. .RE
  146. .SP
  147. .B console
  148. .RS
  149. If set to a hexadecimal value makes the monitor set the BIOS video mode to
  150. this value.  This allows the use of video modes with more rows or colums
  151. than the standard 80x25 mode.  The kernel must of course be able to handle
  152. a nonstandard mode.  More parameters may follow the mode number.
  153. .B Warning:
  154. Not all monitors can handle all of the modes, some may generate frequencies
  155. that can damage your monitor.  Read the manual of card and monitor for
  156. details.
  157. .RE
  158. .SP
  159. Two variables are only used by the monitor, even though they are passed to the
  160. kernel too:
  161. .SP
  162. .B image
  163. .RS
  164. The name of the file containing the kernel image, by default
  165. .BR minix .
  166. If it refers to a directory however then the newest file inside the
  167. directory is chosen to be the kernel image.  The names inside
  168. .B /minix/
  169. are best set to the Minix version you are using, which looks good when the
  170. monitor prints its name.  Rules for pretty printing image names:
  171. .RS
  172. .SP
  173. A '/' or '_' is changed to a space.
  174. .SP
  175. The first letter is changed from lowercase to uppercase.
  176. .SP
  177. An 'r' if followed by a digit changes to " revision ".
  178. .RE
  179. .RE
  180. .SP
  181. .B label
  182. .RS
  183. If set then only processes marked with this label or without a label are
  184. loaded from the image.
  185. .RE
  186. .SP
  187. .B Installboot -boot
  188. will create functions to select images and labels.  These functions will set
  189. label and image and echo what you selected.  The two numbers separated by a
  190. colon used as an image name tell the starting sector and sector count of the
  191. image on disk.
  192. .RE
  193. .SP
  194. fInamefP() { ... }
  195. .RS
  196. Define function.
  197. .br
  198. Functions may be used to bundle a set of commands, so that you can easily
  199. boot Minix with a different set of parameters then normal.  E.g.
  200. .SP
  201. .RS
  202. ram() { rootdev=ram; boot }
  203. .RE
  204. .SP
  205. will allow you to run Minix with the root device on RAM for a change, if
  206. you normally use a real device as root.  The only pre-set function is
  207. .B main
  208. with default value
  209. .BR menu ,
  210. which is the default command executed by the monitor.  You can use newlines
  211. after the ')' token, the monitor will then use a '+' prompt and ask for the
  212. rest.
  213. .RE
  214. .SP
  215. fInamefP(fIkeyfP) { ... }
  216. .RS
  217. Define kernel selecting function.
  218. .br
  219. The menu command uses functions like these to add menu entries to select
  220. a different kernel from a boot disk.
  221. .B Installboot -boot
  222. produces these functions when the images are labeled.  The label
  223. .B AT
  224. would give:
  225. .SP
  226. .RS
  227. AT(a) {label=AT;image=42:626;echo AT kernel selected;menu}
  228. .RE
  229. .SP
  230. With the menu option:
  231. .SP
  232. .RS
  233. a Select AT kernel
  234. .RE
  235. .SP
  236. Typing
  237. .B a
  238. will then execute the
  239. .B AT
  240. function above.
  241. .RE
  242. .SP
  243. fInamefP(fIkeyfP,fItextfP) { ... }
  244. .RS
  245. User defined menu option.
  246. .br
  247. This variant may be used to make any menu entry you like:
  248. .SP
  249. .RS
  250. dos(d,Boot MS-DOS) { boot hd1 }
  251. .RE
  252. .SP
  253. .I Text
  254. may be anything, even parentheses if they match.
  255. .RE
  256. .SP
  257. .I name
  258. .RS
  259. Call function.
  260. .br
  261. If
  262. .I name
  263. is a user defined function then its value is expanded and executed in place of
  264. .IR name .
  265. Try a recursive one like 'rec() {rec;xx}' one day.  You can see the monitor
  266. run out of space with nice messages about using
  267. .BR chmem (1)
  268. to increase it's heap.
  269. .RE
  270. .SP
  271. fBbootfP [fB-fPfIoptsfP]
  272. .br
  273. fBbootfP fIdevicefP
  274. .RS
  275. Boot Minix or another O.S.
  276. .br
  277. Without an argument,
  278. .B boot
  279. will load and execute the Minix image named by the
  280. .B image
  281. variable.  With options the variable
  282. .B bootopts
  283. is first set to
  284. .BI - opts
  285. before Minix is started, and unset when Minix returns.  With a
  286. .I device
  287. argument,
  288. .B boot
  289. loads the boot sector of
  290. .I device
  291. into memory and jumps to it, starting another operating system.  You would
  292. normally use partitions on the first hard disk for this command (hd[1-4]),
  293. using hd0 will also work (choosing the active partition).  One can also boot
  294. devices on the second hard disk (hd[5-9]) if the bootstrap writer did not
  295. hardwire the disk number to disk 0.
  296. .br
  297. Some Operating Systems can only be booted from the active partition, if
  298. you use a '*', e.g.
  299. .BR "boot *hd3" ,
  300. then partition 3 is first made active.  You'll then need to use
  301. .B installboot -master
  302. with a fix key to forcefully boot the Minix partition at startup.
  303. .RE
  304. .SP
  305. fBdelayfP [fImsecfP]
  306. .RS
  307. Delay (500 msec default).
  308. .br
  309. Fast booting speed was one of the objectives when this program was created,
  310. so a hard disk boot usually takes only a fraction of a second.  If you need
  311. some time (to hit Escape, or stare at the numbers) you can use
  312. .B delay
  313. to make the monitor pause for a specified amount of time.  To specify a delay
  314. just before Minix is started, you can set the variable
  315. .B delay
  316. to a number of milliseconds.  Example:
  317. .SP
  318. .RS
  319. main() {delay 250; delay=500; boot}
  320. .RE
  321. .SP
  322. Look at this carefully, 'delay 250' means: "wait 1/4 sec now!",
  323. while 'delay=500' means: "wait 1/2 sec after loading Minix".
  324. .SP
  325. If you use
  326. .B delay=swap
  327. then the monitor will wait until you have inserted a root diskette and typed
  328. RETURN.
  329. .RE
  330. .SP
  331. fBechofP fIwordfP ...
  332. .RS
  333. Print these words.
  334. .br
  335. Used to tell you that you just selected image X.
  336. .RE
  337. .SP
  338. fBlsfP [fIdirectoryfP]
  339. .RS
  340. List contents of a directory.
  341. .br
  342. Useful when looking for kernel images.
  343. .RE
  344. .SP
  345. .B menu
  346. .RS
  347. Menu driven startup.
  348. .br
  349. This command allows you to execute functions defined with a
  350. .IR key .
  351. If no menu functions have been defined then
  352. .B menu
  353. will use this one hidden built-in function:
  354. .SP
  355. .RS
  356. *(=,Start Minix) { boot }
  357. .SP
  358. .RE
  359. Kernel selecting functions only add new options to this set, but if you
  360. define a two argument function yourself then the above one is no longer
  361. shown, allowing you to customize the menu completely.  Your first
  362. function definition should therefore be one that starts Minix.
  363. .SP
  364. Menu entries are shown in the same order as
  365. .B set
  366. shows them.  If you don't like the order then you have to unset the
  367. functions and retype them in the proper order.
  368. .SP
  369. If you type a key then a scheduled trap is killed and the appropriate menu
  370. function is executed.  If you need more time to choose then hit the
  371. spacebar.  A key not on the menu also kills a trap, but does nothing more.
  372. .RE
  373. .SP
  374. .B save
  375. .RS
  376. Save environment.
  377. .br
  378. This will save all the environment variables and functions with nondefault
  379. values to the parameter sector (the second sector on the boot device), so
  380. they are automatically set the next time you boot the monitor.
  381. .RE
  382. .SP
  383. .B set
  384. .RS
  385. Show environment.
  386. .br
  387. Show the current values of the environment variables and functions.  Default
  388. values are shown between parentheses to distinguish them from values that
  389. were explicitly set.
  390. .RE
  391. .SP
  392. fBtrapfP fImsecfP fIcommandfP
  393. .RS
  394. Schedule command.
  395. .br
  396. Schedules a command to be executed after
  397. .I msec
  398. milliseconds.  Only the monitor mode cannot be interrupted, a scheduled trap
  399. is killed when the prompt is printed.  Example:
  400. .SP
  401. .RS
  402. main() {trap 10000 boot; menu}
  403. .RE
  404. .SP
  405. This gives you 10 seconds to choose a menu option before Minix is booted.
  406. .RE
  407. .SP
  408. fBunsetfP fInamefP ...
  409. .RS
  410. Unset environment variables.
  411. .br
  412. Removes the named variables and functions from the environment, and sets
  413. special variables back to their default values.  This is also the only way
  414. to remove the "device name translation" property from a variable.
  415. .RE
  416. .SP
  417. fBexitfP
  418. .RS
  419. Exit the monitor
  420. .br
  421. Reboot the machine, exit to Minix or exit to DOS as appropriate.
  422. .RE
  423. .SH DEVICES
  424. The Minix kernel can't do anything with device names, so they have to be
  425. translated to device numbers before they are passed to the kernel.  This
  426. number is found under the st_rdev field (see
  427. .BR stat (2))
  428. of the file on the boot file system.  The monitor will look for the device
  429. file with the working directory set to '/dev'.  If it can't find the device
  430. name then it will translate names like 'ram', 'fd1', 'hd6', 'hd3a', and 'sd2'
  431. to what it itself thinks the numbers should be.
  432. .PP
  433. The special name
  434. .B bootdev
  435. is translated to the name of the device booted from, like 'fd0', or 'hd3', and
  436. then searched for in /dev.
  437. .B Bootdev
  438. can't be translated to a device other then the fd or hd devices, so SCSI
  439. devices for instance must be named explicitly.
  440. .SH EXTENSIONS
  441. A few extensions have been made to this program for kernel hackers.  They
  442. may be triggered by setting bits in the flags word in the kernel startup
  443. code (the mpx file.)  The flag bits are:
  444. .TP 10
  445. 0x0001
  446. Call kernel in 386 mode.
  447. .TP
  448. 0x0002
  449. Do not make space for the bss areas of processes other then the kernel.
  450. .TP
  451. 0x0004
  452. Use the stack size set by
  453. .BR chmem (1).
  454. .TP
  455. 0x0008
  456. Load MM, FS, etc. into extended memory.
  457. .TP
  458. 0x0010
  459. No need to patch process sizes into the kernel.
  460. .TP
  461. 0x0020
  462. The kernel can return to the monitor on halt or reboot.
  463. .SH "MS-DOS MONITOR"
  464. Minix-vmd has a version of the monitor that runs under MS-DOS to boot
  465. a "DOS virtual disk".  It is a simple COM program that interprets an MS-DOS
  466. file as a disk, loads a Minix kernel from the active partition in the same
  467. way as the BIOS based monitor, and executes it to start Minix.  All the
  468. monitor commands function in the same way, except for the
  469. .B boot
  470. command, it can only load Minix.  The memory that MS-DOS has in use is copied
  471. out of the way when Minix takes control, and is put back in place when Minix
  472. exits.  This memory shuffling also happens when the BIOS disk driver makes
  473. BIOS calls, slowing things to a crawl.  It is better to use a Minix driver.
  474. The MS-DOS monitor does not work if there is a memory manager active that
  475. runs in 386 protected mode, like EMM386.
  476. .SH "SEE ALSO"
  477. .BR chmem (1),
  478. .BR stat (2),
  479. .BR installboot (8),
  480. .BR usage (8),
  481. .BR boot (8).
  482. .SH BUGS
  483. The
  484. .B delay
  485. command will hang forever on the original IBM PC (not the XT!).  Not that it
  486. matters, as everything takes forever on that box.
  487. .PP
  488. Reading the first sector to boot a floppy (e.g.
  489. .BR "boot fd1" ),
  490. is done using whatever floppy parameters boot currently has available.  This
  491. will probably always work.
  492. .PP
  493. The two forms of
  494. .B delay
  495. are a crock.
  496. .PP
  497. The word
  498. .B emssize
  499. comes from EMS, that has to do with expanded memory, not extended memory.
  500. .SH ACKNOWLEDGMENTS
  501. Guy Helmer, for the floppy sensing code that somehow disappeared into the
  502. boot block.
  503. .PP
  504. Earl Chew, for the inspiration his ShoeLace package provided, unless he wants
  505. to file a "look and feel" suit against me, then I will say I modeled it after
  506. the SunOS ROM boot monitor, which is also true.
  507. .SH AUTHOR
  508. Kees J. Bot (kjb@cs.vu.nl)