]> Zhao Yanbai Git Server - minix.git/commit
Added a hack to start binaries from the boot image only. In particular, setting
authorThomas Veerman <thomas@minix3.org>
Tue, 18 Aug 2009 11:36:01 +0000 (11:36 +0000)
committerThomas Veerman <thomas@minix3.org>
Tue, 18 Aug 2009 11:36:01 +0000 (11:36 +0000)
commitb47483433c8fc70cad760265737a537d924b0f9b
tree75ecc9901148c28e414c748bd88ae4ff229b81f6
parent47a2bfedddbc813c5d27a21ae2a3b0e49c79bf35
Added a hack to start binaries from the boot image only. In particular, setting
bin_img=1 in the boot monitor will make sure that during the boot procedure the
mfs binary that is part of the boot image is the only binary that is used to
mount partitions. This is useful when for some reason the mfs binary on disk
malfunctions, rendering Minix unable to boot. By setting bin_img=1, the binary
on disk is ignored and the binary in the boot image is used instead.

- 'service' now accepts an additional flag -r. -r implies -c. -r instructs RS
  to first look in memory if the binary has already been copied to memory and
  execute that version, instead of loading the binary from disk. For example,
  the first time a MFS is being started it is copied (-c) to memory and
  executed from there. The second time MFS is being started this way, RS will
  look in memory for a previously copied MFS binary and reuse it if it exists.
- The mount and newroot commands now accept an additional flag -i, which
  instructs them to set the MS_REUSE flag in the mount flags.
- The mount system call now supports the MS_REUSE flag and invokes 'service'
  with the -r flag when MS_REUSE is set.
- /etc/rc and the rc script that's included in the boot image check for the
  existence of the bin_img flag in the boot monitor, and invoke mount and
  newroot with the -i flag accordingly.
commands/simple/mount.c
commands/simple/newroot.c
drivers/memory/ramdisk/rc
etc/rc
include/minix/rs.h
lib/other/_mount.c
servers/rs/manager.c
servers/rs/service.c