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