I am working in MINIX 3.1.6, and currently I am changing a little thing in do_fork.C class which is located int /usr/src/kernel/system.
Usually to compile the files in Kernel folder, is use make install in the kernel directory, and then make hdboot.
I used this form, but it didn't compile me the ../kernel/system folder! Then I went first in the directory with cd: "cd /usr/src/kernel/system" and then I used there make clean and make install. In the end I used the command make hdboot in the directory /usr/src/tools
But even that one didn't work... the compiler doesn't show any error or anything, it just doesn't take my changes.
Does anyone know how to compile the whole directory: /usr/src/kernel/system in Minix ?
Thanks in Advance
EDITED
It's interesting, I did a mistake in do_fork
class, and when I tried make install
it showed me an Error. This means that do_fork.c
is being taken by the make install
. Can the problem be in the make hdboot
that it isn't taking the changes of do_fork.c
?