]> git.proxmox.com Git - grub2.git/blame - INSTALL
Merge mainline into sparc-mkimage
[grub2.git] / INSTALL
CommitLineData
6a161fa9 1-*- Text -*-
2
4b13b216 3This is the GRUB. Welcome.
6a161fa9 4
4b13b216 5This file contains instructions for compiling and installing the GRUB.
6a161fa9 6
7The Requirements
8================
9
4b13b216 10GRUB depends on some software packages installed into your system. If
6a161fa9 11you don't have any of them, please obtain and install them before
4b13b216 12configuring the GRUB.
6a161fa9 13
e30d87ad 14* GCC 4.1.3 or later
6a161fa9 15* GNU Make
160034b2 16* GNU Bison 2.3 or later
fc8345da 17* GNU gettext 0.17 or later
6a161fa9 18* GNU binutils 2.9.1.0.23 or later
19* Other standard GNU/Unix tools
86e5b1db 20
21If you use a development snapshot or want to hack on GRUB you may
22need the following.
23
6a161fa9 24* Ruby 1.6 or later
8d20dcfc 25* Python 2.5.2 or later
f022876b 26* Autoconf 2.60 or later
37fb845b 27* Automake 1.10.1 or later
6a161fa9 28
fc8345da
JU
29Prerequisites for make-check:
30
31* qemu, specifically the binary 'qemu-system-i386'
32
4b13b216 33Configuring the GRUB
6a161fa9 34====================
35
36The `configure' shell script attempts to guess correct values for
37various system-dependent variables used during compilation. It uses
38those values to create a `Makefile' in each directory of the package.
39It may also create one or more `.h' files containing system-dependent
40definitions. Finally, it creates a shell script `config.status' that
41you can run in the future to recreate the current configuration, a
42file `config.cache' that saves the results of its tests to speed up
43reconfiguring, and a file `config.log' containing compiler output
44(useful mainly for debugging `configure').
45
46If you need to do unusual things to compile the package, please try to
47figure out how `configure' could check whether to do them, and mail
48diffs or instructions to the address given in the `README' so they can
49be considered for the next release. If at some point `config.cache'
50contains results you don't want to keep, you may remove or edit it.
51
52The file `configure.ac' is used to create `configure' by a program
53called `autoconf'. You only need `configure.in' if you want to change
54it or regenerate `configure' using a newer version of `autoconf'.
55
56
4b13b216 57Building the GRUB
6a161fa9 58=================
59
60The simplest way to compile this package is:
61
86e5b1db 62 1. `cd' to the directory containing the package's source code. If
63 you don't use a release tarball you have to type `./autogen.sh'.
64 Type `./configure' to configure the package for your system.
65 If you're using `csh' on an old version of System V, you might
66 need to type `sh ./configure' instead to prevent `csh' from trying
67 to execute `configure' itself.
6a161fa9 68
69 Running `configure' takes awhile. While running, it prints some
70 messages telling which features it is checking for.
71
72 2. Type `make' to compile the package.
73
74 3. Optionally, type `make check' to run any self-tests that come with
75 the package.
76
77 4. Type `make install' to install the programs and any data files and
78 documentation.
79
80 5. You can remove the program binaries and object files from the
81 source code directory by typing `make clean'. To also remove the
82 files that `configure' created (so you can compile the package for
83 a different kind of computer), type `make distclean'. There is
84 also a `make maintainer-clean' target, but that is intended mainly
85 for the package's developers. If you use it, you may have to get
86 all sorts of other programs in order to regenerate files that came
87 with the distribution.
88
89
90Compiling For Multiple Architectures
91====================================
92
93You can compile the package for more than one kind of computer at the
94same time, by placing the object files for each architecture in their
95own directory. `cd' to the directory where you want the object files
96and executables to go and run the `configure' script. `configure'
97automatically checks for the source code in the directory that
98`configure' is in and in `..'.
99
100
101Installation Names
102==================
103
104By default, `make install' will install the package's files in
105`/usr/local/bin', `/usr/local/man', etc. You can specify an
106installation prefix by giving `configure' the option `--prefix=PATH'.
107
108You can specify separate installation prefixes for
109architecture-specific files and architecture-independent files. If
110you give `configure' the option `--exec-prefix=PATH', the package will
111use PATH as the prefix for installing programs and libraries.
112Documentation and other data files will still use the regular prefix.
113
114In addition, if you use an unusual directory layout you can give
115options like `--bindir=PATH' to specify different values for
116particular kinds of files. Run `configure --help' for a list of the
117directories you can set and what kinds of files go in them.
118
119If the package supports it, you can cause programs to be installed
120with an extra prefix or suffix on their names by giving `configure'
121the option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'.
122
4b13b216 123Please note, however, that the GRUB knows where it is located in the
6a161fa9 124filesystem. If you have installed it in an unusual location, the
125system might not work properly, or at all. The chief utility of these
4b13b216 126options for the GRUB is to allow you to "install" in some alternate
6a161fa9 127location, and then copy these to the actual root filesystem later.
128
129
130Sharing Defaults
131================
132
133If you want to set default values for `configure' scripts to share,
134you can create a site shell script called `config.site' that gives
135default values for variables like `CC', `cache_file', and `prefix'.
136`configure' looks for `PREFIX/share/config.site' if it exists, then
137`PREFIX/etc/config.site' if it exists. Or, you can set the
138`CONFIG_SITE' environment variable to the location of the site script.
139A warning: not all `configure' scripts look for a site script.
140
141
142Operation Controls
143==================
144
145 `configure' recognizes the following options to control how it
146operates.
147
148`--cache-file=FILE'
149 Use and save the results of the tests in FILE instead of
150 `./config.cache'. Set FILE to `/dev/null' to disable caching, for
151 debugging `configure'.
152
153`--help'
154 Print a summary of the options to `configure', and exit.
155
156`--quiet'
157`--silent'
158`-q'
159 Do not print messages saying which checks are being made.
160
161`--srcdir=DIR'
162 Look for the package's source code in directory DIR. Usually
163 `configure' can determine that directory automatically.
164
165`--version'
166 Print the version of Autoconf used to generate the `configure'
167 script, and exit.