]> git.proxmox.com Git - grub2.git/blame - INSTALL
grub-core/loader/efi/fdt.c: do not copy random memory
[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
9fdc64a9 15 Note: older versions may work but support is limited
0b02bfa0
VS
16
17 Experimental support for clang 3.3 or later (results in much bigger binaries)
dac87d60 18 for i386, x86_64, arm (including thumb), arm64, mips(el), powerpc, sparc64
9fdc64a9
VS
19 Note: clang 3.2 or later works for i386 and x86_64 targets but results in
20 much bigger binaries.
14a94bba 21 earlier versions not tested
2312f06c 22 Note: clang 3.2 or later works for arm
14a94bba 23 earlier versions not tested
dac87d60
VS
24 Note: clang on arm64 is not supported due to
25 https://llvm.org/bugs/show_bug.cgi?id=26030
8109c5d4 26 Note: clang 3.3 or later works for mips(el)
14a94bba
VS
27 earlier versions fail to generate .reginfo and hence gprel relocations
28 fail.
b73b70eb
VS
29 Note: clang 3.2 or later works for powerpc
30 earlier versions not tested
155f334f
VS
31 Note: clang 3.5 or later works for sparc64
32 earlier versions return "error: unable to interface with target machine"
7b04fe6c
VS
33 Note: clang has no support for ia64 and hence you can't compile GRUB
34 for ia64 with clang
6a161fa9 35* GNU Make
160034b2 36* GNU Bison 2.3 or later
fc8345da 37* GNU gettext 0.17 or later
6a161fa9 38* GNU binutils 2.9.1.0.23 or later
7d8c0213 39* Flex 2.5.35 or later
3eec9111 40* pkg-config
6a161fa9 41* Other standard GNU/Unix tools
3bac4caa 42* a libc with large file support (e.g. glibc 2.1 or later)
86e5b1db 43
795b593a
CW
44On GNU/Linux, you also need:
45
efa1bee7 46* libdevmapper 1.02.34 or later (recommended)
795b593a 47
db99fbe8 48For optional grub-emu features, you need:
795b593a 49
795b593a 50* SDL (recommended)
db99fbe8
VS
51* libpciaccess (optional)
52* libusb (optional)
795b593a
CW
53
54To build GRUB's graphical terminal (gfxterm), you need:
55
3eec9111 56* FreeType 2.1.5 or later
795b593a
CW
57* GNU Unifont
58
86e5b1db 59If you use a development snapshot or want to hack on GRUB you may
60need the following.
61
aa437b58 62* Python 2.6 or later
f022876b 63* Autoconf 2.60 or later
37fb845b 64* Automake 1.10.1 or later
6a161fa9 65
fc8345da
JU
66Prerequisites for make-check:
67
68* qemu, specifically the binary 'qemu-system-i386'
8ca86b3a 69* xorriso 1.2.9 or later, for grub-mkrescue and grub-shell
fc8345da 70
4b13b216 71Configuring the GRUB
6a161fa9 72====================
73
74The `configure' shell script attempts to guess correct values for
75various system-dependent variables used during compilation. It uses
76those values to create a `Makefile' in each directory of the package.
77It may also create one or more `.h' files containing system-dependent
78definitions. Finally, it creates a shell script `config.status' that
79you can run in the future to recreate the current configuration, a
80file `config.cache' that saves the results of its tests to speed up
81reconfiguring, and a file `config.log' containing compiler output
82(useful mainly for debugging `configure').
83
84If you need to do unusual things to compile the package, please try to
85figure out how `configure' could check whether to do them, and mail
86diffs or instructions to the address given in the `README' so they can
87be considered for the next release. If at some point `config.cache'
88contains results you don't want to keep, you may remove or edit it.
89
90The file `configure.ac' is used to create `configure' by a program
91called `autoconf'. You only need `configure.in' if you want to change
92it or regenerate `configure' using a newer version of `autoconf'.
93
94
4b13b216 95Building the GRUB
6a161fa9 96=================
97
98The simplest way to compile this package is:
99
9f73ebd4
VS
100 1. `cd' to the directory containing the package's source code.
101
102 2. Skip this and following step if you use release tarball and proceed to
103 step 4. If you want translations type `./linguas.sh'.
104
105 3. Type `./autogen.sh'.
106
be41c1cf
JM
107 * autogen.sh uses python. By default invocation is "python" but can be
108 overriden by setting variable $PYTHON.
109
9f73ebd4 110 4. Type `./configure' to configure the package for your system.
86e5b1db 111 If you're using `csh' on an old version of System V, you might
112 need to type `sh ./configure' instead to prevent `csh' from trying
113 to execute `configure' itself.
6a161fa9 114
115 Running `configure' takes awhile. While running, it prints some
116 messages telling which features it is checking for.
117
9f73ebd4 118 6. Type `make' to compile the package.
6a161fa9 119
9f73ebd4 120 7. Optionally, type `make check' to run any self-tests that come with
6a161fa9 121 the package.
122
9f73ebd4 123 8. Type `make install' to install the programs and any data files and
6a161fa9 124 documentation.
125
9f73ebd4 126 9. You can remove the program binaries and object files from the
6a161fa9 127 source code directory by typing `make clean'. To also remove the
128 files that `configure' created (so you can compile the package for
129 a different kind of computer), type `make distclean'. There is
130 also a `make maintainer-clean' target, but that is intended mainly
131 for the package's developers. If you use it, you may have to get
132 all sorts of other programs in order to regenerate files that came
133 with the distribution.
134
fc97214f
VS
135Cross-compiling the GRUB
136========================
137
138GRUB defines 3 platforms:
139
140 - "Build" is the one which build systems runs on.
141 - "Host" is where you execute GRUB utils.
142 - "Target" is where GRUB itself runs.
143
144For grub-emu host and target must be the same but may differ from build.
145
146If build and host are different make check isn't available.
147
7f68269a
VS
148If build and host are different man pages are not generated.
149
fc97214f 150As an example imagine you have a build system running on FreeBSD on sparc
51f941a0 151which prepares packages for developers running amd64 GNU/Linux laptop and
fc97214f
VS
152they need to make images for ARM board running U-boot. In this case:
153
154build=sparc64-freebsd
155host=amd64-linux-gnu
156target=arm-uboot
157
158For this example the configure line might look like (more details below)
159(some options are optional and included here for completeness but some rarely
51f941a0 160used options are omitted):
fc97214f 161
3eec9111
CW
162./configure BUILD_CC=gcc BUILD_PKG_CONFIG=pkg-config --host=amd64-linux-gnu
163CC=amd64-linux-gnu-gcc CFLAGS="-g -O2" PKG_CONFIG=amd64-linux-gnu-pkg-config
fc97214f
VS
164--target=arm --with-platform=uboot TARGET_CC=arm-elf-gcc
165TARGET_CFLAGS="-Os -march=armv6" TARGET_CCASFLAGS="-march=armv6"
166TARGET_OBJCOPY="arm-elf-objcopy" TARGET_STRIP="arm-elf-strip"
0e8daad0 167TARGET_NM=arm-elf-nm TARGET_RANLIB=arm-elf-ranlib LEX=gflex
fc97214f
VS
168
169You need to use following options to specify tools and platforms. For minimum
170version look at prerequisites. All tools not mentioned in this section under
171corresponding platform are not needed for the platform in question.
172
173 - For build
174 1. BUILD_CC= to gcc able to compile for build. This is used, for
175 example, to compile build-gentrigtables which is then run to
176 generate sin and cos tables.
177 2. BUILD_CFLAGS= for C options for build.
178 3. BUILD_CPPFLAGS= for C preprocessor options for build.
dcecae1a 179 4. BUILD_LDFLAGS= for linker options for build.
3eec9111 180 5. BUILD_PKG_CONFIG= for pkg-config for build (optional).
fc97214f
VS
181
182 - For host
183 1. --host= to autoconf name of host.
184 2. CC= for gcc able to compile for host
d93147ab
VS
185 3. HOST_CFLAGS= for C options for host.
186 4. HOST_CPPFLAGS= for C preprocessor options for host.
187 5. HOST_LDFLAGS= for linker options for host.
3eec9111 188 6. PKG_CONFIG= for pkg-config for host (optional).
fc97214f
VS
189 7. Libdevmapper if any must be in standard linker folders (-ldevmapper) (optional).
190 8. Libfuse if any must be in standard linker folders (-lfuse) (optional).
191 9. Libzfs if any must be in standard linker folders (-lzfs) (optional).
192 10. Liblzma if any must be in standard linker folders (-llzma) (optional).
193
194 - For target
195 1. --target= to autoconf cpu name of target.
196 2. --with-platform to choose firmware.
197 3. TARGET_CC= for gcc able to compile for target
198 4. TARGET_CFLAGS= for C options for target.
199 5. TARGET_CPPFLAGS= for C preprocessor options for target.
200 6. TARGET_CCASFLAGS= for assembler options for target.
201 7. TARGET_LDFLAGS= for linker options for target.
202 8. TARGET_OBJCOPY= for objcopy for target.
203 9. TARGET_STRIP= for strip for target.
204 10. TARGET_NM= for nm for target.
0e8daad0 205 11. TARGET_RANLIB= for ranlib for target.
fc97214f
VS
206
207 - Additionally for emu, for host and target.
51f941a0
CW
208 1. SDL is looked for in standard linker directories (-lSDL) (optional)
209 2. libpciaccess is looked for in standard linker directories (-lpciaccess) (optional)
210 3. libusb is looked for in standard linker directories (-lusb) (optional)
fc97214f
VS
211
212 - Platform-agnostic tools and data.
213 1. make is the tool you execute after ./configure.
214 2. Bison is specified in YACC= variable
215 3. Flex is specified in LEX= variable
216 4. GNU unifont and Djvu sans are looked for in standard directories.
6a161fa9 217
218Compiling For Multiple Architectures
219====================================
220
221You can compile the package for more than one kind of computer at the
222same time, by placing the object files for each architecture in their
223own directory. `cd' to the directory where you want the object files
224and executables to go and run the `configure' script. `configure'
225automatically checks for the source code in the directory that
226`configure' is in and in `..'.
227
228
229Installation Names
230==================
231
232By default, `make install' will install the package's files in
233`/usr/local/bin', `/usr/local/man', etc. You can specify an
234installation prefix by giving `configure' the option `--prefix=PATH'.
235
236You can specify separate installation prefixes for
237architecture-specific files and architecture-independent files. If
238you give `configure' the option `--exec-prefix=PATH', the package will
239use PATH as the prefix for installing programs and libraries.
240Documentation and other data files will still use the regular prefix.
241
242In addition, if you use an unusual directory layout you can give
243options like `--bindir=PATH' to specify different values for
244particular kinds of files. Run `configure --help' for a list of the
245directories you can set and what kinds of files go in them.
246
247If the package supports it, you can cause programs to be installed
248with an extra prefix or suffix on their names by giving `configure'
249the option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'.
250
4b13b216 251Please note, however, that the GRUB knows where it is located in the
6a161fa9 252filesystem. If you have installed it in an unusual location, the
253system might not work properly, or at all. The chief utility of these
4b13b216 254options for the GRUB is to allow you to "install" in some alternate
6a161fa9 255location, and then copy these to the actual root filesystem later.
256
257
258Sharing Defaults
259================
260
261If you want to set default values for `configure' scripts to share,
262you can create a site shell script called `config.site' that gives
263default values for variables like `CC', `cache_file', and `prefix'.
264`configure' looks for `PREFIX/share/config.site' if it exists, then
265`PREFIX/etc/config.site' if it exists. Or, you can set the
266`CONFIG_SITE' environment variable to the location of the site script.
267A warning: not all `configure' scripts look for a site script.
268
269
270Operation Controls
271==================
272
273 `configure' recognizes the following options to control how it
274operates.
275
276`--cache-file=FILE'
277 Use and save the results of the tests in FILE instead of
278 `./config.cache'. Set FILE to `/dev/null' to disable caching, for
279 debugging `configure'.
280
281`--help'
282 Print a summary of the options to `configure', and exit.
283
284`--quiet'
285`--silent'
286`-q'
287 Do not print messages saying which checks are being made.
288
289`--srcdir=DIR'
290 Look for the package's source code in directory DIR. Usually
291 `configure' can determine that directory automatically.
292
293`--version'
294 Print the version of Autoconf used to generate the `configure'
295 script, and exit.