Page 1 of 1

how to use GRUB as boot loader

Posted: Sun Sep 04, 2011 1:44 pm
by rigidbody
Hi..
I have downloaded grub source code from ftp://ftp.gnu.org/gnu/grub.
I have compiled that source code using ./configure then make command but i have not get any binary file.
Actually i want to use GRUB boot loader for my own Os.
please guide me.
I am very new here.

thanks in advance..:)

Re: how to use GRUB as boot loader

Posted: Sun Sep 04, 2011 5:58 pm
by Andyhhp
You will get the relevant binary files in /bin/ in your build dir.

~Andrew

Re: how to use GRUB as boot loader

Posted: Sun Sep 04, 2011 7:09 pm
by rigidbody
i am new in OS development can you tell me the location of the bin directory..

thank you very much..

Re: how to use GRUB as boot loader

Posted: Sun Sep 04, 2011 7:12 pm
by Andyhhp
This is not so much OS dev knowledge than basic UNIX knowledge.

The directory you ran "./configure" and "make build" should have a subdirectory called bin.

~Andrew

Re: how to use GRUB as boot loader

Posted: Sun Sep 04, 2011 7:46 pm
by rigidbody
$ ./configure

$make build
make: *** No rule to make target `build'. Stop.

but it is working when
$ make
is entered.
but there is not any bin directory is created.:(

Re: how to use GRUB as boot loader

Posted: Sun Sep 04, 2011 7:52 pm
by Andyhhp
then ./configure is not working

the whole point of automake is to make you a makefile which knows the standard commands - build and install being the key ones.

~Andrew