correct logic error in region.c.
[minix.git] / docs / UPDATING
blob8fd6b83694d4936f2692523fdba28afcfcc8ae24
2 20060818:
3         You need flex in your $PATH, which has become part of the base
4         system. This needs bigger binaries.
5         If you don't have flex yet, you can compile it first by doing:
6         # cp /usr/src/etc/binary_sizes* /etc
7         # binsizes big
8         # cd /usr/src/commands/flex-2.5.4 
9         # sh build
10 20061222:
11         Install binaries in the right order because the new readdir
12         implementation and the new mount program are incompatible
13         with older kernels and the new kernels require the new mount.
14         # cd /usr/src
15         # make includes
16         # make libraries
17         # make cmds
18         # make depend
19         # cd /usr/src/tools
20         # make hdboot
21         # make install
22         # cd ..
23         # make install
24         Installing fails for boot. Reboot the system
25         # reboot -x 'unset image; boot'
26         Now install everything
27         # cd /usr/src
28         # make install
29 20061222:
30         The archictecture-dependent/-independent split needs ARCH=<arch>
31         in /etc/make.conf, included by some Makefiles and sourced by
32         some shell scripts. To install it, type 'make install' in
33         src/etc, or simply copy the file over.
34 20070118:
35         drivers.conf has been updated to include an ACL for mfs. it has
36         to be installed before rebooting after an update of the mount command.
37 20070212 (r2751):
38         mkfs needs more memory to make an image; chmem it or do
39         # touch mkfs.c ; make /usr/bin/mkfs
40         in /usr/src/commands/simple.