g1o2k4 wrote:with the tutorial i got the problem that he didn't find the directory behind the '..' command:
Code: Select all
cd /usr/src/build-binutils
../binutils-x.xx/configure --target=$TARGET --prefix=$PREFIX --disable-nls
make all
make install
or what does '..' mean ?
That's what I meant when I said you should first do some "normal" developing to gain experience before jumping into kernelspace.
You downloaded binutils-2.18.tar.bz2 and unpacked it - which resulted in a directory called binutils-2.18. Then you created a directory build-binutils, cd'ed into that...
...and then, I understand from your post, you called ../binutils-x.xx/configure?
And it told you it couldn't find "the directory behind ../".
You could have tried to figure out where you went wrong. Possibly trying to list the directory ".." to find out what
is there. (Which might have given you a hint.) Or even doing a full search for something called "configure" (which would also have given you a hint).
Or you could have assumed that the tutorial is broken in some way.
Since you did the latter, I foretell you will find
much pain on the road of OSDev...