INSTALL 6.4 KB

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