| Current Path : /home/emeraadmin/public_html/4d695/ |
| Current File : /home/emeraadmin/public_html/4d695/grub2-common.tar |
INSTALL 0000644 00000024705 15170570300 0005603 0 ustar 00 -*- Text -*-
This is the GRUB. Welcome.
This file contains instructions for compiling and installing the GRUB.
The Requirements
================
GRUB depends on some software packages installed into your system. If
you don't have any of them, please obtain and install them before
configuring the GRUB.
* GCC 5.1.0 or later
Experimental support for clang 3.8.0 or later (results in much bigger binaries)
for i386, x86_64, arm (including thumb), arm64, mips(el), powerpc, sparc64
* GNU Make
* GNU Bison 2.3 or later
* GNU gettext 0.17 or later
* GNU binutils 2.9.1.0.23 or later
* Flex 2.5.35 or later
* Other standard GNU/Unix tools
* a libc with large file support (e.g. glibc 2.1 or later)
On GNU/Linux, you also need:
* libdevmapper 1.02.34 or later (recommended)
For optional grub-emu features, you need:
* SDL (recommended)
* libpciaccess (optional)
* libusb (optional)
To build GRUB's graphical terminal (gfxterm), you need:
* FreeType 2 or later
* GNU Unifont
If you use a development snapshot or want to hack on GRUB you may
need the following.
* Python 2.6 or later
* Autoconf 2.60 or later
* Automake 1.10.1 or later
Prerequisites for make-check:
* qemu, specifically the binary 'qemu-system-i386'
* xorriso 1.2.9 or later, for grub-mkrescue and grub-shell
Configuring the GRUB
====================
The `configure' shell script attempts to guess correct values for
various system-dependent variables used during compilation. It uses
those values to create a `Makefile' in each directory of the package.
It may also create one or more `.h' files containing system-dependent
definitions. Finally, it creates a shell script `config.status' that
you can run in the future to recreate the current configuration, a
file `config.cache' that saves the results of its tests to speed up
reconfiguring, and a file `config.log' containing compiler output
(useful mainly for debugging `configure').
If you need to do unusual things to compile the package, please try to
figure out how `configure' could check whether to do them, and mail
diffs or instructions to the address given in the `README' so they can
be considered for the next release. If at some point `config.cache'
contains results you don't want to keep, you may remove or edit it.
The file `configure.ac' is used to create `configure' by a program
called `autoconf'. You only need `configure.in' if you want to change
it or regenerate `configure' using a newer version of `autoconf'.
Building the GRUB
=================
The simplest way to compile this package is:
1. `cd' to the directory containing the package's source code.
2. Skip this and following step if you use release tarball and proceed to
step 4. If you want translations type `./linguas.sh'.
3. Type `./autogen.sh'.
* autogen.sh uses python. By default invocation is "python" but can be
overriden by setting variable $PYTHON.
4. Type `./configure' to configure the package for your system.
If you're using `csh' on an old version of System V, you might
need to type `sh ./configure' instead to prevent `csh' from trying
to execute `configure' itself.
Running `configure' takes awhile. While running, it prints some
messages telling which features it is checking for.
6. Type `make' to compile the package.
7. Optionally, type `make check' to run any self-tests that come with
the package.
8. Type `make install' to install the programs and any data files and
documentation.
9. You can remove the program binaries and object files from the
source code directory by typing `make clean'. To also remove the
files that `configure' created (so you can compile the package for
a different kind of computer), type `make distclean'. There is
also a `make maintainer-clean' target, but that is intended mainly
for the package's developers. If you use it, you may have to get
all sorts of other programs in order to regenerate files that came
with the distribution.
Cross-compiling the GRUB
========================
GRUB defines 3 platforms:
- "Build" is the one which build systems runs on.
- "Host" is where you execute GRUB utils.
- "Target" is where GRUB itself runs.
For grub-emu host and target must be the same but may differ from build.
If build and host are different make check isn't available.
If build and host are different man pages are not generated.
As an example imagine you have a build system running on FreeBSD on sparc
which prepares packages for developers running amd64 GNU/Linux laptop and
they need to make images for ARM board running U-boot. In this case:
build=sparc64-freebsd
host=amd64-linux-gnu
target=arm-uboot
For this example the configure line might look like (more details below)
(some options are optional and included here for completeness but some rarely
used options are omitted):
./configure BUILD_CC=gcc BUILD_FREETYPE=freetype-config --host=amd64-linux-gnu
CC=amd64-linux-gnu-gcc CFLAGS="-g -O2" FREETYPE=amd64-linux-gnu-freetype-config
--target=arm --with-platform=uboot TARGET_CC=arm-elf-gcc
TARGET_CFLAGS="-Os -march=armv6" TARGET_CCASFLAGS="-march=armv6"
TARGET_OBJCOPY="arm-elf-objcopy" TARGET_STRIP="arm-elf-strip"
TARGET_NM=arm-elf-nm TARGET_RANLIB=arm-elf-ranlib LEX=gflex
You need to use following options to specify tools and platforms. For minimum
version look at prerequisites. All tools not mentioned in this section under
corresponding platform are not needed for the platform in question.
- For build
1. BUILD_CC= to gcc able to compile for build. This is used, for
example, to compile build-gentrigtables which is then run to
generate sin and cos tables.
2. BUILD_CFLAGS= for C options for build.
3. BUILD_CPPFLAGS= for C preprocessor options for build.
4. BUILD_LDFLAGS= for linker options for build.
5. BUILD_FREETYPE= for freetype-config for build (optional).
- For host
1. --host= to autoconf name of host.
2. CC= for gcc able to compile for host
3. HOST_CFLAGS= for C options for host.
4. HOST_CPPFLAGS= for C preprocessor options for host.
5. HOST_LDFLAGS= for linker options for host.
6. FREETYPE= for freetype-config for host (optional).
7. Libdevmapper if any must be in standard linker folders (-ldevmapper) (optional).
8. Libfuse if any must be in standard linker folders (-lfuse) (optional).
9. Libzfs if any must be in standard linker folders (-lzfs) (optional).
10. Liblzma if any must be in standard linker folders (-llzma) (optional).
- For target
1. --target= to autoconf cpu name of target.
2. --with-platform to choose firmware.
3. TARGET_CC= for gcc able to compile for target
4. TARGET_CFLAGS= for C options for target.
5. TARGET_CPPFLAGS= for C preprocessor options for target.
6. TARGET_CCASFLAGS= for assembler options for target.
7. TARGET_LDFLAGS= for linker options for target.
8. TARGET_OBJCOPY= for objcopy for target.
9. TARGET_STRIP= for strip for target.
10. TARGET_NM= for nm for target.
11. TARGET_RANLIB= for ranlib for target.
- Additionally for emu, for host and target.
1. SDL is looked for in standard linker directories (-lSDL) (optional)
2. libpciaccess is looked for in standard linker directories (-lpciaccess) (optional)
3. libusb is looked for in standard linker directories (-lusb) (optional)
- Platform-agnostic tools and data.
1. make is the tool you execute after ./configure.
2. Bison is specified in YACC= variable
3. Flex is specified in LEX= variable
4. GNU unifont and Djvu sans are looked for in standard directories.
Compiling For Multiple Architectures
====================================
You can compile the package for more than one kind of computer at the
same time, by placing the object files for each architecture in their
own directory. `cd' to the directory where you want the object files
and executables to go and run the `configure' script. `configure'
automatically checks for the source code in the directory that
`configure' is in and in `..'.
Installation Names
==================
By default, `make install' will install the package's files in
`/usr/local/bin', `/usr/local/man', etc. You can specify an
installation prefix by giving `configure' the option `--prefix=PATH'.
You can specify separate installation prefixes for
architecture-specific files and architecture-independent files. If
you give `configure' the option `--exec-prefix=PATH', the package will
use PATH as the prefix for installing programs and libraries.
Documentation and other data files will still use the regular prefix.
In addition, if you use an unusual directory layout you can give
options like `--bindir=PATH' to specify different values for
particular kinds of files. Run `configure --help' for a list of the
directories you can set and what kinds of files go in them.
If the package supports it, you can cause programs to be installed
with an extra prefix or suffix on their names by giving `configure'
the option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'.
Please note, however, that the GRUB knows where it is located in the
filesystem. If you have installed it in an unusual location, the
system might not work properly, or at all. The chief utility of these
options for the GRUB is to allow you to "install" in some alternate
location, and then copy these to the actual root filesystem later.
Sharing Defaults
================
If you want to set default values for `configure' scripts to share,
you can create a site shell script called `config.site' that gives
default values for variables like `CC', `cache_file', and `prefix'.
`configure' looks for `PREFIX/share/config.site' if it exists, then
`PREFIX/etc/config.site' if it exists. Or, you can set the
`CONFIG_SITE' environment variable to the location of the site script.
A warning: not all `configure' scripts look for a site script.
Operation Controls
==================
`configure' recognizes the following options to control how it
operates.
`--cache-file=FILE'
Use and save the results of the tests in FILE instead of
`./config.cache'. Set FILE to `/dev/null' to disable caching, for
debugging `configure'.
`--help'
Print a summary of the options to `configure', and exit.
`--quiet'
`--silent'
`-q'
Do not print messages saying which checks are being made.
`--srcdir=DIR'
Look for the package's source code in directory DIR. Usually
`configure' can determine that directory automatically.
`--version'
Print the version of Autoconf used to generate the `configure'
script, and exit.
NEWS 0000644 00000053463 15170570300 0005254 0 ustar 00 New in 2.02:
* New/improved filesystem and disk support:
* Big-endian UFS1.
* Experimental 64-bit ext2 support.
* Various fixes for non-512-byte sector devices.
* New `proc' filesystem framework, used by LUKS disks.
* Fix DM-RAID partition handling.
* New `nativedisk' command to switch from firmware to native disk drivers.
* Compressed HFS+.
* DragonFly BSD labels.
* CBFS (coreboot).
* Handle partitioned LVM properly.
* Use LVM UUIDs whenever possible.
* GPT PReP.
* New `progress' module that shows progress information while reading
files.
* ZFS features support.
* ZFS LZ4 support.
* XFS V5 format support.
* LVM RAID1 support.
* New/improved terminal and video support:
* Monochrome text (matching `hercules' in GRUB Legacy).
* Morse code output using system speaker.
* `spkmodem' output (simple data protocol using system speaker).
* Handle Japanese special keys.
* coreboot framebuffer.
* Serial on ARC.
* Native vt100 handling for grub-emu, replacing the use of the curses
library.
* New gfxmenu options for terminal window positioning, theme background
image handling, and scrollbar padding, plus `item_pixmap_style' and
`highlight_overlay'.
* Support several more image types (paletted and greyscale).
* Boot protocol improvements:
* Support Apple FAT binaries on non-Apple platforms.
* Improve FreeDOS direct loading support compatibility.
* Enable `linux16' on all x86 platforms, not just BIOS.
* New TrueCrypt ISO loader.
* multiboot2 boot-services EFI specification.
* multiboot2 EFI memory map specification.
* multiboot2 full-file specfication.
* New/improved network support:
* New variables `net_default_*' containing properties of the default
interface.
* Autoload `http' and `tftp' modules if necessary.
* Improve TFTP robustness.
* Parse `nd' disk names in GRUB Legacy configuration files.
* Issue separate DNS queries for IPv4 and IPv6.
* Support IPv6 Router Advertisement to configure default router.
* New variable net_<interface>_next_server containing next server
from BOOTP reply.
* Coreboot improvements:
* CBFS support both in on-disk images (loopback) and flash.
* Ability to launch another payload from flash or disk
* Coreboot framebuffer
* CBMEMC support (both logging and inspecting logs)
* Command for inspecting coreboot timestamps (`coreboot_boottime').
* Command for inspecting coreboot tables (`lscoreboot').
* New target default_payload.elf.
* Increased maximal core size.
* Prefer pmtimer for TSC calibration.
* New/improved platform support:
* New `efifwsetup', `lsefi' and `connectefi` commands on EFI platforms.
* New `cmosdump' and `cmosset' commands on platforms with CMOS support.
* New command `pcidump' for PCI platforms.
* Improve opcode parsing in ACPI halt implementation.
* Use the TSC as a possible time source on i386-ieee1275.
* Merge PowerPC grub-mkrescue implementation with the common one.
* Support grub-mkrescue on i386-ieee1275, sparc64, bootinfo machines such
as pSeries, and mips-arc.
* Make grub-mkrescue better support Apple Intel Macs on CD.
* Enable GRUB Legacy configuration file parsing on EFI.
* Support halt for Loongson 2E.
* ARM U-Boot and EFI ports.
* Reorganise platform-dependent code in utilities to avoid #ifdef mess.
* AROS and Haiku support for userspace utilities.
* Xen PV port.
* Fix EFI stack alignment.
* ARM64 EFI port.
* On Linux, read partition start offsets from sysfs if possible.
* New grub-macbless utility, and better integration with Mac firmware in
grub-install.
* Support Yeeloong 3A.
* Add `cpuid --pae' option to detect Physical Address Extension on x86.
* Support for USB debug dongles.
* Support for *-emu on all platforms (previously only i386/x86_64 worked).
* Support *-emu on Windows.
* New platform `none' which builds only user level utilities. This is now
default if target CPU is not supported.
* Support for booting little-endian Linux kernel on powerpc.
* Support network boot with Oracle sun4v vnet devices.
* Added SAS disks to the IEEE 1275 Open Firmware device list.
* Try multiple methods for TSC (timestamp counter) calibration - PIT, pmtimer,
EFI Stall. If everything fails, use hardcoded frequency 800MHz.
* Support Hyper-V Gen2 platforms which lack PIT for TSC calibration.
* Map UEFI Persistent Memory to E820 persistent memory.
* New Xen loader on ARM64.
* Respect alignment requirement for block device IO buffers on EFI.
* Security:
* Add optional facility to enforce that all files read by the core image
from disk have a valid detached digital signature.
* Performance:
* Avoid costly division operations in many places.
* New boot time analysis framework (`./configure --enable-boot-time').
* Initialise USB ports in parallel.
* New `testspeed' command to test file read speed.
* Speed-up gfxterm by storing intermediate results in more compact format.
* Lazy LVM/mdraid scan.
* Disk hints.
* Scripting:
* New `eval' and `tr' commands.
* grub-script-check fails on scripts containing no commands.
* Installation and other utility improvements:
* Add option to compress files on installation or image creation.
* Using grub-reboot no longer requires setting `GRUB_DEFAULT=saved'.
* Support probing EFI System Partition (requires os-prober >= 1.58).
* Fix inconsistent use of `GRUB_CRYPTODISK_ENABLE' and
`GRUB_ENABLE_CRYPTODISK'; the latter is now used consistently.
* grub-mount handles symbolic links to directories.
* Support disabling submenus with `GRUB_DISABLE_SUBMENU' configuration key
for grub-mkconfig.
* grub-install, grub-mknetdir, grub-mkrescue, and grub-mkstandalone
rewritten in C. They should now work in supported non-Unix-like
environments.
* Native mingw support.
* Ability to install on EFI under windows.
* Reorganise timeout handling using new `timeout_style' environment
variable and `GRUB_TIMEOUT_STYLE' configuration key for grub-mkconfig.
Menu hotkeys pressed during a hidden timeout now boot the corresponding
menu entry immediately.
* New `file' command and grub-file utility to check file types.
* New syslinux configuration file parser.
* Set menu entry class to primary OS name returned by os-prober to display
OS specific icon.
* On Linux x86 detect EFI word size in grub-install and automatically select
correct platform (x86_64-efi or i386-efi) to install. Requires Linux kernel
4.0 or higher.
* Build system:
* Remove all uses of nested functions; GRUB no longer requires an
executable stack.
* Fix documentation build with Texinfo >= 5.1.
* More robust and documented cross-compiling support.
* Partial clang support for some platforms (experimental).
* Partial mingw64 x86_64-efi compile support (highly experimental).
* Partial mingw32 i386-* (other than already present i386-pc)
compile support (highly experimental).
* Support for grub-mkpasswd on Windows.
* Eliminate the use of AutoGen. This allowed some performance
improvements to the build system.
* Remove variable length arrays.
* OpenBSD compile and tools support (NetBSD and FreeBSD were already supported).
* Fix build with FreeType >= 2.5.1.
* Make gentpl.py compatible with Python 3. It now requires at least
Python 2.6.
* modinfo.sh contains build information now.
* Added many new tests to improve robustness.
* Target is built without libgcc now. Necessary builtins are reimplemented
directly. This removes requirement for target-specific runtime on build
system.
* emu libusb support removed (was broken and unmaintained).
* powerpc64le compile support.
* Use fixed timestamp when generating GRUB image for reproducible builds.
* Verify at build time that modules contain only supported relocations and their
structure matches what boot-time module loader expects.
* Do not require fonts on powerpc-ieee1275.
* Revision control moved to git.
New in 2.00:
* Appearance:
* Official theme for gfxmenu (starfield)
* Menu is organised with submenus.
* Better default video mode selection using EDID.
* New platforms:
* Itanium port.
* Fuloong2F support (including GRUB as firmware)
* Fuloong2E support (except GRUB as firmware)
* ARCS (SGI machines) port.
* qemu -M mips port.
* grub-mount to mount filesystems using GRUB FS drivers and FUSE.
* Changed security default so entries are locked by default if any superuser is
defined.
* New drivers:
* EHCI.
* AHCI.
* ESCC serial.
* IEEE1275 serial.
* EFI serial.
* Network stack for BIOS, IEEE1275, EMU and EFI, including TFTP, HTTP and DNS.
* New filesystem, filters and disks formats:
* DVH partition map.
* Plan9 partition map.
* Big-endian mdraid.
* Big-endian cpio.
* ODC and NEWC cpio.
* ExFAT.
* Minix3fs.
* Big-endian minixfs.
* RomFS.
* Squash4.
* Support non-512B disk blocks.
* LUKS and GELI support.
* LDM read support (no install yet).
* LZOP.
* Improved filesystem and disks formats support:
* HFS+ label support.
* Improved reiserfs support.
* multidevice, mirrored and raidz(2,3) ZFS support.
* RAID LVM (internal RAIDing) support.
* ZFS crypto support.
* ZLE, LZ4 and GZIP on ZFS support.
* Support ZFS up to 33.
* HFS string is now treated like mac-roman and not UTF-8
* HFS mtime support.
* Improved AFFS and SFS support.
* LZO-compressed btrfs support.
* cpio and tar symlinks support.
* Better FS detection to reduce false positives.
* New boot protocols:
* Ability to load another coreboot payload when on coreboot.
* Plan9.
* Freedos.
* Ntldr/bootmgr (to load Windows bootloader).
* chainloader --bpb support to patch FAT or NTFS BPB in memory to correct
wrong partition offset.
* PXE chainloading support.
* Darwin 11 (Mac OS X Lion) protocol support.
* Boot protocol improvements:
* Multiple initrd support.
* Basic illumos and xnu autoconfig.
* Testing and debugging:
* New grub-fstest commands: cat, zfsinfo, testload xnu_uuid
* grub-fstest recursive directory compare for quickly checking that
a directory is read correctly.
* Backtace on crash (if gdb module is loaded, x86 only)
* Disk cache statistics gathering.
* GDB stub and GDB support script.
* "make check" and "make bootcheck" expanded to almost all platforms
(except i386-ieee1275, mips-arc, sparc64-ieee1275, ia64-efi and emu)
* New `time' command.
* Performance:
* Lazy scanning to avoid accessing devices which aren't really used.
This avoids boot delay due to slow device scanning.
* Use CPU cache when accessing video memory.
* Search hints to first try the most likely device when searching for a
device with given UUID. This avoids slow scanning in most cases.
* Internationalisation:
* Updated to Unicode 6.0.
* $"..." syntax for translation in grub scripting language. This allows easy
translation of grub.cfg at runtime.
* Translations to many languages included in official distribution.
* Scripting:
* $grub_cpu and $grub_platform variables for conditioning grub.cfg on platform
at runtime.
* $feature_* variables to condition scripts on available features.
* Use of ids to identify menu entries.
* all_video module which is empty but depends on all video modules thus
allowing easy loading of all of them.
* Installation:
* grub-mknetdir script for easy creation of netbootable GRUB directory.
* Itanium and mips support in grub-mkrescue.
* grub-install support for all platforms except emu.
* PreP partition install support.
* No files conflict between flavours (except grub-mkrescue for ppc). This
allows easy install of GRUB for several platforms.
* grub-mkstandalone script for easy creating of image including all modules
for platforms with generous limit on image size.
* program-transform-name now functions according to usual conventions.
Use --grubdir and --bootdir to get old behaviour.
* ADLER32 and CRC64 support (for XZ and hashsum).
* ofconsole renamed to console
* Experimental support for compiling with Apple toolchain.
* grub-mkdevicemap removed. Now all devices are detected on invocation of
any grub utility.
New in 1.99:
* Keyboard layouts support.
* New `lsapm' command (i386-pc only).
* Parser for GRUB Legacy configuration files.
* Support RAID on virtio devices.
* Remove deprecated `root' command.
* New `euro.pf2' font which supports most European languages.
* Avoid opening the same device twice on Open Firmware platforms.
* Extend `vbeinfo' and `vbetest' commands to non-VBE graphics, as
`videoinfo' and `videotest'.
* New `lsefisystab', `lssal', and `lsefimmap' commands on EFI platforms.
* Support explicit user claim that a device is BIOS-visible. Devices
listed in device.map will be assumed to be readable using only BIOS
facilities, rather than anything more complex such as LVM or RAID.
* New bash-completion script for GRUB utilities.
* Use ACPI to shut down if possible.
* New `lsacpi' command.
* Btrfs support.
* New `--boot-directory' option to `grub-install', `grub-reboot', and
`grub-set-default', with clearer semantics than the previous
`--root-directory' option.
* Rename CD-ROM device to "cd" on BIOS platforms.
* Transparent decompression filters.
* Simpler PXE image generation. New `grub-mknetdir' utility to generate
netboot directory trees.
* New relocator. Allows for more kernel support and more
straightforward loader writing.
* Handle USB pendrives exposed as floppies.
* New Automake-based build system.
* Add `sendkey' command (i386-pc only).
* ZFS support.
* Support 1.x versions of mdadm metadata.
* Fix corruption when reading Reiserfs directory entries.
* Bidirectional text and diacritics support.
* Skip LVM snapshots.
* MIPS Yeeloong firmware port.
* Change grub-mkdevicemap to emit /dev/disk/by-id/ names where possible
on GNU/Linux.
* Add `grub-mkconfig' support for Xen with Linux.
* Add `grub-mkconfig' support for initrd images on Fedora 13.
* Support >3GiB and <16MiB RAM in i386-qemu.
* Add support for Cirrus 5446 and Bochs video cards.
* Load more appropriate video drivers automatically in `grub-mkconfig'.
* USB improvements, including hotplugging/hotunplugging, hub support,
and USB serial support.
* AMD Geode CS5536 support.
* Extensive updates to the Texinfo documentation.
* Handle symbolic links under /dev/mapper on GNU/Linux.
* Handle installation across multiple partition table types.
* Add `cmostest' command (i386/x86_64 only).
* Add support for DM-RAID disk devices on GNU/Linux.
* Remove `grub-mkisofs'. `grub-mkrescue' now uses GNU xorriso to build
CD images.
* `grub-mkrescue' support for EFI, coreboot, and QEMU platforms.
* Unify `grub-mkimage', `grub-setup', and `grub-install' source code
across platforms.
* Fix VGA (as opposed to VBE) video driver, formerly a terminal driver.
* Add menu hotkey support.
* Add support for the nilfs2 filesystem.
* `grub-probe' and `grub-mkconfig' support for NetBSD.
* Support setting a background image in `grub-mkconfig'.
* Support multiple terminals in `grub-mkconfig'.
* Regexp support.
* MIPS multiboot2 support.
* Multiboot2 tag support.
* sunpc partition table support.
* Add a number of new language features to GRUB script: `for', `while',
`until', `elif', function parameters, `break', `continue', `shift',
multi-line quoted strings, positional parameters with `setparams',
`return', filename wildcard expansion, and `!'.
* Support nested partition tables. GRUB now prefers to name partitions
in the form `(hd0,msdos1,bsd1)' rather than `(hd0,1,a)'.
* Speed up consecutive hostdisk operations on the same device.
* Compile parts of `grub-emu' as modules.
New in 1.98 - 2010-03-06:
* Multiboot on EFI support.
* Graphical menu support.
* MIPS support.
* Saved default menu entry support, with new utilities `grub-reboot' and
`grub-set-default'.
* Unit testing framework.
* Support for multiple terminals.
* Encrypted password support, with a new utility `grub-mkpasswd-pbkdf2'.
* `grub-mkfloppy' removed; use `grub-mkrescue' to create floppy images.
* Add grub-probe support for GNU/Hurd.
* Add support for gettext.
New in 1.97:
* Add support for loading XNU (MacOS X kernel).
* ACPI override support.
* Integrated gptsync.
* Password protection support.
* Partition manipulation tool.
* Add `keystatus' command.
* Unicode fonts are now used by default.
* Add `hdparm' command.
* Add support for getting the current date and time from CMOS as variables.
* Add `drivemap' command.
* Add support for RAID levels 4,6 and 10.
* update-grub is replaced by grub-mkconfig.
* When booting from PXE, PXE can be used to load files.
* High resolution timer support.
* Image loaders now support IO buffering.
* Add `crc' command.
* Add Cygwin support.
* Add x86_64 EFI support.
* Use LZMA compression instead of LZO.
* Support for saving the environment from and loading the environment
from a file.
* Allow the UUID to be used as device name.
* The `search' command can use UUIDs now.
* Add support for IEEE 1275 on i386.
* Create partmap.lst and use it to automatically load partition map
modules.
* grub-mkconfig supports os-prober to add operating systems to the
boot menu.
* The ATA driver supports devices bigger than 2 TiB.
* Add support for the UDF, AFS and EXT4 filesystems.
* The ISO9660 filesystem supports the Joliet extension
* Add support for loading kernels of FreeBSD, NetBSD and OpenBSD.
* Add new command `sleep'.
* Support for direct access to AT keyboards.
* New utility `grub-fstest'.
New in 1.96 - 2008-02-03:
* The license term is changed to GNU General Public License Version 3.
* grub-emu is made optional. Now you have to use
`--enable-grub-emu' to enable it.
* Add Multiboot2 support.
* grub-emu can access the host filesystem now.
* Add support for the NTFS, cpio/tar and Reiserfs filesystems.
* Add support for ATA/ATAPI.
* Add update-grub script to generate grub.cfg.
* Add grub-mkrescue script to generate floppy or ElTorito images
(i386-pc only).
* Add support for background images in gfxterm (background_image command).
* Add support for detection of 64-bit support in CPU (cpuid command).
* GPT is now enabled in i386-pc target.
* Add grub-install for EFI.
* Ported to the following new platforms: Efika, coreboot (a.k.a. LinuxBIOS),
OLPC XO.
* Add support for colored menu (menu_color_normal and menu_color_highlight
variables).
* Fix support for loading Linux zImages (such as memtest86).
New in 1.95 - 2006-10-15:
* Number partitions from 1 instead of 0. For instance, the first
partition of "hd0" is now "hd0,1" but not "hd0,0".
* grub-probefs is renamed to grub-probe, and supports printing a
guessed OS device name and a GRUB drive name.
* RAID and LVM support is added.
* New command, echo.
* The disk API is changed to support 64-bit addressing.
* A TGA loader is added for the video API.
New in 1.94 - 2006-06-04:
* Fix several serious bugs in HFS+.
* Add experimental EFI support. Chainloading and Linux loading are
supported at the moment.
* Add a new command "blocklist" to show a block list.
* Use --with-platform to specify a boot environment. For now, efi,
ieee1275 and pc are supported.
* Use the filename "kernel.elf" instead of "grubof" on ieee1275.
* Install GRUB into pkglibdir instead of pkgdatadir.
* Support environmental variables. You can export variables by the
command "export".
* Remove the commands "default" and "timeout". They are now variables.
* Add the commands "source" and "." to include a file.
* Implement experimental Video API and a new terminal "gfxterm" based
on the Video API.
New in 1.93 - 2006-03-10:
* Add support for the HFS+ wrapper.
* Major improvements to scripting support.
* Menu entries are now scriptable.
New in 1.92 - 2005-12-25:
* Add support for GPT partition table format.
* Add a new command "play" to play an audio file on PC.
* Add support for Linux/ADFS partition table format.
* Add support for BASH-like scripting.
* Add support for Apple HFS+ filesystems.
New in 1.91 - 2005-10-15:
* Add support for LZO version 2.
* Support completion in the entry editor.
* Add VBE support.
* New commands, "search", "vbetest" and "vbeinfo".
* The option BOOT_IMAGE is passed to Linux.
* Add support for automatic decompression for gzip.
* Add support for terminfo and serial.
* Add support for x86_64.
* GRUB itself is a Multiboot-compliant kernel.
* Add new filesystems: XFS, SFS, and AFFS.
New in 1.90 - 2005-08-07:
* Rename the project name PUPA to GRUB. Now this version is the
developmental version of GRUB officially.
* The GRUB emulator ``grub-emu'' is added.
* Add support for newworld Mac. This should work with other
PowerPC-based machines as well, if they use IEEE 1275
(Open Firmware).
* Too many changes to describe. Look at ChangeLog for more details.
New in 0.7:
* Problems in cross-compiling PUPA are fixed.
* Use -mrtd and -mregparm=3 to reduce the generated code sizes. This
means that any missing prototypes could be fatal. Also, you must take
care when writing assembly code. See the comments at the beginning of
startup.S, for more details.
* New utility, ``pupa-setup''. This sets up PUPA to make it bootable
from a real disk.
* New commands, "prefix", "insmod", "rmmod" and "lsmod" are added into
the rescue mode to manipulate PUPA modules.
* Linux support is added. Initrd is not support yet.
* Reduce the size of a core image significantly by compressing a large
part of the core image and decompressing itself at boot time. The
currently used algorithm is LZO (more precisely, LZO1X-999). So you
have to install LZO to build PUPA. See
<http://www.oberhumer.com/opensource/lzo/>, for more information.
New in 0.6 - 2002-12-27, Yoshinori K. Okuji:
* The chainloader and the FAT filesystem are modularized.
* The structure of the source tree is a bit changed.
* Support for building loadable modules is added.
* Some generic parts of pupa-mkimage are segregated.
* Some documentation files are added, according to the GNU Coding
Standards.
README 0000644 00000001441 15170570300 0005422 0 ustar 00 This is GRUB 2, the second version of the GRand Unified Bootloader.
GRUB 2 is rewritten from scratch to make GNU GRUB cleaner, safer, more
robust, more powerful, and more portable.
See the file NEWS for a description of recent changes to GRUB 2.
See the file INSTALL for instructions on how to build and install the
GRUB 2 data and program files.
Please visit the official web page of GRUB 2, for more information.
The URL is <http://www.gnu.org/software/grub/grub.html>.
More extensive documentation is available in the Info manual,
accessible using 'info grub' after building and installing GRUB 2.
There are a number of important user-visible differences from the
first version of GRUB, now known as GRUB Legacy. For a summary, please
see:
info grub Introduction 'Changes from GRUB Legacy'
THANKS 0000644 00000002566 15170570300 0005466 0 ustar 00 GRUB 2 would not be what it is today without the invaluable help of
everybody who was kind enough to spend time testing it and reporting
bugs.
The following people made especially gracious contributions of their
time and energy in helping to track down bugs, add new features, and
generally assist in the GRUB 2 maintainership process:
Andrey Shuvikov <mr_hyro@yahoo.com>
Bibo Mao <bibo.mao@intel.com>
David Miller <davem@davemloft.net>
Guillem Jover <guillem@hadrons.org>
Harley D. Eades III <hde@foobar-qux.org>
Hitoshi Ozeki <h-ozeki@ck2.so-net.ne.jp>
Hollis Blanchard <hollis@penguinppc.org>
Jeroen Dekkers <jeroen@dekkers.cx>
Johan Rydberg <jrydberg@gnu.org>
Marco Gerards <marco@gnu.org>
Michael Guntsche <mike@it-loops.com>
NIIBE Yutaka <gniibe@m17n.org>
Omniflux <omniflux@omniflux.com>
Robert Bihlmeyer <robbe@orcus.priv.at>
Roger Leigh <rleigh@whinlatter.ukfsn.org>
Ruslan Nikolaev <nruslan@mail.com>
Timothy Baldwin <T.E.Baldwin99@members.leeds.ac.uk>
Tomas Ebenlendr <ebik@ucw.cz>
Tristan Gingold <tristan.gingold@bull.net>
Tsuneyoshi Yasuo <tuneyoshi@naic.co.jp>
Vesa Jaaskelainen <chaac@nic.fi>
Vincent Guffens <guffens@inma.ucl.ac.be>
Vincent Pelletier <subdino2004@yahoo.fr>
Vladimir Serbinenko <phcoder@gmail.com>
Also, we thank the projects GNU Automake and LZMA. Some code
was stolen from them.
This project was supported by Information-technology Promotion Agency,
Japan.
TODO 0000644 00000000476 15170570300 0005241 0 ustar 00
Before working on improving GRUB, it's very important that you
make contact with the core GRUB developers. Things herein might be
slightly out of date or otherwise not easy to understand at first
glance. So write to <grub-devel@gnu.org> first.
For bug tracking, refer to:
http://savannah.gnu.org/bugs/?group=grub
font_char_metrics.png 0000644 00000040073 15170570300 0010745 0 ustar 00 �PNG
IHDR h � Ҩ* sBIT|d� pHYs t t�fx tEXtSoftware www.inkscape.org��< IDATx��w�$Uշ��C�9
9�"I�##"�� YA� *
�HaH��0$P�9g�4����اgj�Vu�����s�y֪uoU�T�ջN�̌D"�H���=�D"�H�t"�H�)I@'�D��t"�H�)I@'�D��t"�H�)I@'�D��t"�H�)I@'�D��t"�H�)I@'�D���@����4��ܨpn��7��3$�ک6{M�Lΐ�p�rHZ�W�j2��$��_1��:Ǖ�.I@
� �,8�x8�s�� �X��mF!i=IWH���&�ïa��ni��N��ifA|���3�D/0�J$*�,�*�h�c�����1��M�w�x��Ht�$��1�VV�n5��r�?
���|�x�
���P���v%-�L�if��0���#���\mfo�2 ˅*kKz5�����Q���{��~:���Ձ%�'���͔��8���*�3{���Ձ�{���d�
��_X���^2�u��-fv��u���쉈KOt3K�T�� ,Zpn�p�k�c�g�������|<l� u�
�6md�C��2�}3���H80]���s�������|!���,�q`T8�20���L��g�p|����-ʬ������G�U3e�¸�&G�� �
|��I�2�r��L�MC?Kg�=���^e���(pW8�x�n
���u��i�|Wu m�'��/�o1P@�6�cG�r�e��3�x��Ǧ%'�K�t
�FCH�2P`o�?8s�p�
`�pl�P���rۇc��90m�$�S(;6S�#�9�ˁ�±��gw70"�X;So&��ZW��'|7�e��]�9V&�? ��ϮgN
u�ɔ���6�+ׇ���~N[�{ i�8Y@�S��[ �� ��� <
�9s�!��˕m*������2s�|D��E�3����=(����2���dL��d�;%��
�|,w�1�5�ԝ ���9v7pI��t�[���ce�@�c
�v��_�X% �ےzh�����8�3 �Ζ3��%�סf��̞�: I��g�_7�K2���u�sUn>-i3{+{
�!W���T�ưp>3�P8�z��`%�!�UI�u�f�?�?��%`�p,k=�P8?M8w~�3{W�=�s���#��;�]*��[��]�C5�G$=���wν�gy�jÒ��N0�_�NOߤ�Ƹ�-3�0W�&�fcX
�p!>��x8��4��z�
�ψ��K�q��ſ7q������
�z�j��)Bf��?7&}v�E����#��f��+�^a�L*��"W4���W�y�I����+�]6����[��lO3kXw iQ\�v���������M�m��3��63�@x�y_P̳��,�� g�/C�}GrT�\ � i��I[�*�b^���:�
f��>W�F�1���[C���ey��Ϙ�gk`�6������O/Ć�{�mg(3P(^ |N�$u�����:1X3{��&��5L��D��Β��ÓÁO�J� f���S�h�+�l<pZx�n0������.�tn�-��uh}ތ�(�,韸z䳸�<�^�8\�A�&3K*��>��~$i�xI���i�
����W��%]�?g�f�|*��c(�>Ŷ��/nur��;��q�ڸd�OHzhp#�=5�K��$efφ8_a���W���f��R��6!�y��"^}~ i`,�&0;.Hif�>��g�y�'��lf�G���#���t���3յ��-��0�V��g�3�a,'I� -���o���^e1�ư@��S�/�Q+����ʾLvT�(�?�5�p�K�c��}y���� ic��J��M�.�'h��D"1��'�+`3����$�4�N+$m�1�_�=����CqS�7��Ãi���s� Í�p����C��fS\0���V�I3��p�q�r�bf���=�Dk�:1�x�_�p
S���H:1�x��[&� '}IRq$���p>3�Y�`��u�鶼'�n�tbX`fOH�48<��?wyN$��d�6H��)�|3���9�$��tb�Ra݉�� x�̖�wT�D9i�01l0����z���=�FI�+����m�͓;.I{'$�:��Z����"�����K�Q�����N7�dr����P%<�Sp�ܥ|����$����3��ϱ���%�#��eăWM5$�V�p��ݻ���:`ݐ% I�����˕o�0�/��m�=�O�$+��p�x��{��f<�}}�?��xt���r����.� i;`F3;�Q@Ҵx��0�S��4�`[I��7��2������ޏ�ET��:1�0�K���=�!��7;S^M{-�p�I(�r�p}&���]�L���Jm.<����G��1a�>SfL�g�y�#�k�3�~"͠ÕÈȷ������.�����c�?$鹰�>���elllbfW¤��w�Z����Ņ��fvNA;���8O�pe���-��H�KRs%:�x�Z���y|8w�g��gʗ�pWC���x��Ͷ�d���f�$�VHZU��s �������%��:<sΊ�~����,���-k�-�.�䄷Y����$��y<]ڬ���% ��pc��s�ϑ������v��MǮ�㡌��C3�;����Eǚ1�u��! ��pd���+�tC�`9�,.��g��������4Wo�ϔW,X�[%��Hz;C����$��D7�'�]��������|��d�!����"gO⪼l i�A��v��N$�)�ؐ��m�/�@I�w��!�x�+�M�_�s��ނ�5��6�fv#�z���$���MA�#�E� �&H�hp�P)XRbH�2� ܅�O�cf�e��g�^?W�v�
3;$slz�3��zC�3���_�BҬ���f��ܹ9�� fv{���Ȃ�+k�*7��-77�����^���=�+�.���eЉ�IK��;ᱞ|���qM4�-`{`,.���K���7g$�bf��=�� iN3{��q4H�*���*�Gx��,��� �.�Y���l
�kc�C��n<;�IL~�M��L�"�Y��f�F��I3�ĐB�8`���"p.�;3�5�o��4���Wm4�ff�u�*���pwo<.��C�C<C͛5�����8��Ǧ4�N��ں�����g�n+cfo� �l;��zIӛ������[�&�L�~I���l��Q�IfC����tЉ��(`q3�X ��iv,p����G:�Ԉ�=|IҮ�}��x��f���6h$�<�?��2�G�OЉ!��=��+e�.[�k�k%}X��!u��l���zCЉDb���u�c�����5�Q�� A���4"�����87C�rӷQn���-7]D�i+�/[n�\�k�3
>�kɄ�4�����5sn�\�%��.)7]�rs����F�yr妭�^���l�D}$�|�ɹՁe���Y
v���\���(76W�#�k���I��r�nRnLI��%��ȕ[��� ���džh�0[�N����I���%�6,)7O�rk�ʭ�F�Mr�/)�o�Qn�\�)�'}�1����M2���_��Mʍ,)���rkTlo
I디;�I�l��箿g鴒�]#���XX�ɟ���~��_X&�����fϑ�2Z;�ڋf;xX#�#f�p�CI�e� %|�E�t��3�_p�������ENe�&i3{����
�8&��2)������\����}��aI&'����x��{���wRq�7_��3{?��U"E��@A��|�x�3� �QAc*��m����Y5�p�� l��͞�O*�>E�Z��3��Ϋ"�^�شx�5#����Nik�="|&77�xX��^�ΨCI���/�W�7�y��f�˶xZ���ߢ'��x�f��
���1��`�q��^y�,�#e��n3�22�y!��09���t�"iZ3�@�3���Q�@�^mf};W�qd��W�l3���Y��]Ң��fv� �9,�������q�I��Y���e����ؼ� �L��i�6�M��֊������_7�� <�"�=��6^mY2�����ź��+*�̤�~`SIS;$�T����΅�[_�U$1����j~:q�`�$������'��Uya�m�I@O�4n�&��lv&�4I��[�����l��t����M��8E�.I��C�����)��x��Z �b��x��j3�Y���r�xÞ&Q���@jF�z�Ku�$��b$�^Aձ+HZ���u I3�i�bg�u2��p�l�<RkKB���M%3{O�Ì�okTu�X4��ifvE�BE�UI�I�u��,Y� ����A/Iz*&�I�,�1�|%�Π �wv����e�'a�x�.NEr��=% �I�U-�Qu���ђ����6!g;��c�f�.R���F���� ��Lz�&��nf� �D��kU��x�~cfWU-,i�"������H��N6bd�Iz*��0�'�E��o}E!�S��vO F�)�m/l�ΐ���ܓ��c�$O�>�]O�m.�IA,�&���Bw%���ف{��U1`C3��cJ3\= 3����h�4i]��X�!iyI�2 ��X2Ym���B�
N N8�* ��< �:u�I@��|��^3��-�s��/�u��
��B$m
|!��c�Am�7�&iQI�n��!L�$��$��I�q=����+���ǵ��!�TG�4�&�lfm9=���a�є&?��>:y$�+i�� x2�_5�3�_���b���G5�vf���YU�Ix2�N4���?QB����Gaj�$L��=",��vw����{#������"�����*Em��Ɂȫr`�*D����������sg�M9 +P7;��E�$�k@�W�����
e;n�Q�Ǣ�]����V1���s^�a4WD����,�#2����� 3OrViMުa���%��D���gO�u���i'.���Ot����W�>�0���=�#��e��~�5��Ul�@�Sm
��c�AE��Yg�^
��� QL��#����]����0��%}O�Y�5��͕����#����ݛ;&|M�_��T��/"�T�Ξ@�b��3�#۞�4�I���I���D��%mz6c,�PÑ1Q�$͏�<��!�k3(y.�ϊ��3�Te1`㎌�K�B���.)�e�щΓf��5<��FA �f�d���j�gHZ����`�ȡgf��SJ��= <v���W�?���Ό�+l�Q����Z8�t�`��%͠�a.<-Ӡ�s7��}ꕑ�V�٪��/��~��:�"xZ��OK��[�� {F���M0y:u gH�.n ެm ]�qv*���p����NJZ�T������zM��I�w|y��A��nD������$��$��������ǙW��V
~ߠ��(S��
���1fvsd��T�$���*�*���8%�a��E����?ɓ�I��Ï�E�_�Hz>�=[��nf�0�Ӏ��r�F�g��=�M"ۺ8<�N�:�]�`�=�X|
�K�~�$t&��qZ$����q�˨d��g��qg�����.6��a��1��6T]Y@�46<���� 4��2�O�U��m���-�2�4X Pk�쎺�N�*}N/< [�+�];�� k�7��١�u*�I(�\����,bf�uf��C�T�?�����[ުA���퍲'l�Ǹ��gfv T�$z�%̬��7� Y��cfi�i�VkRfB�s��:<���Y}�<�ll���Qu7�k_/r�߮{�a��F��º�ܥ�au<�D�}�o���sm�������8� v��Aׄ��p�����3�O�tVi�)�U��=���}�HC|����Y/�"ݪ�$���̮#�5�_�^l��5�^ ip1=u[q.��'a�R]�6��Í4쐴-p&p3��^l+iT�v��e�<|=��H<KG��"���6-)�C͋�m,>N��MŞ�!:�e���Uo��?*�~%}Y����|aI_�m���#%�
27<����e��2���_���*��} �U�ہ�u_c�uς���z-�<ޝ"?�(�0k��I����c��9��/�?IŁ/��j��[�\K�A�Ò�9%��A-g�5����څv��g-��m�-��5�U�1G�"F��>%�����r��~�d��_67���'����R�
eO��vef��Q�����.�³��
��}�U#-n��cn�����.�[H�'�b*I���,�5z`�
��ͬ,��%}�'��C����>cm�7�w�=]� �0�wr۠&I@��e���>I& ����������4��~���;�m��:�^K�lf���]Ф��j�*u-zq�A��r_zJ��~U�lM�@T�$4����YI�I�ۢ�$���H�a��[o����1��⏬�U�=�W��n�1�m���"ʎ�Nj�m,>�۩��7�x�D�S=a��Y���A%&I[H�I�kxơ�s�N�cK��=����/��N�X�<�Z�vjI;^�;�p8Ҧ��� E�UIsHZ�E�?t�M��"� b=ca���"k��#�\.���p����q[OBI� �p��3����7�I����7�Ȋ�`lӾ�ƭ����=C�����*�i�5��'���u]1�w����瀺��X���<c�k�h5��_(vT9��חf�5 iZI�O{I#%Ur@��VgGV�`��X���ŭ6jQmXAFp3{��Z.����:��,i��Z�q����Y�o�B�u��X��]*���ff
��t=���XE4����
m�P)b_7��$�cK!&��n=Z,���`�n$��0�%��_�ڢ� �j���kHjw�RH��!��s����X�< �H�aE#����$֓0O_y��8���]۪P�L�< %����m��ߔ��aQI��3����6�H�7%��8��f��n�p��U��J�̈́�B��([�xs����u��m��`Z<����g!�!S�'!�r���>�m��BOB<TC���%�x��0���7W�j�*����[r|(4�j��HZ��3m
��I����햒��!��yw�hIQ�lhj�u��)mT=����Z���7�M�f��N�i������/��̱��A�1�'ҙ�sc;���0��_��1n�]�:�ҵĆ=;���.�r5���b�_wx�8��%t=�7
�Q���I� �2�����g���˒6�p�M�ݪ
�Iت��)_�-�[��_l`�.�E#�4��=pc�W\��%L�����O�D��'W��Xx����J�\iF�|f�.�����]j�I`3{�K�wI��FT���b�<6�4S��k�}fVY=%i93�=啤���y�Ȫw������e�UJ2�l@s筷��w�Y�'f�*i�z��]����D�j����-�gl��9��h�ވk��b!�_�l�>���{p��O� uiLE�*��
}��;b݁G���<{$G
��)3玍��
I[�5�"���t�L2
ױǰ���Y�]�Pp�}�,���N�!�Y|��� 3+����0?�]�cx���=݉H��x�<���|f�13[_W�+p��-l
|Z��:�� 97<�ι��uq3��,��̹f9 ��XF����ڨ�0S��O��3+q��;�X�[��|�g�Y�q�{�qMąs'�16�_4���?}A�e�o{���G�*}�t=��%���J4/pph������C���TW��ٟ(w�)c>�*�V.8V�~�s���y�Z,���`�:sJ����u3���c�S�>
<f3M�] �IDATfo�{xh�z��&�t=̅?m�4'��s�����;�,Ҫ3�W�8��X3k�
�!.��>U�����-�{x�Cl�AY���/FT���ۏՔ�0D<��4�7�[�
��E�8��ߴ��R5 sݯ1�q�g����������g��
a��EB�;Z�Q��m��0%6����$�^ߠ�_�J���k����2�K�����ҘJsf�̈́{ؾ���>8
�̚�!��O�v��w�7�p܀��ל���8 7�a��z�.�o]�6�D����*��e#�xPaH���}�ٮ@��ڥ˟ጸ�V�r+=|� �p|^\-�u�y
8�L��rW
�[��=7���C�
X&s�總jc��3h<Y�Ñ?��O��ޗ#����e�q���HO��#����B���,zt��0�v�?�[M��7�ғ��q�}���:��,��������L[pl~`��~��/��Pm��Zn���T��D\�c��JN��i�.\g���I��?�*���놹���z�zJ�7�j0��{�՜�Lү��2ai�C먧VHZf�O��'aX�����n��Z�K��T�~ff��`�(!�҃T����װ8�,>;���f�j����[H���0��xU�4y�ʆ'!��n�� Z����U��
�
���W7�Y���H:;�����셺���t������T��a�<# =F8SZm�bO��^OfIkF�iJIN�9C^��1��q�UUbM�>Gu�m���(�v�(������{�B8X���L�>Y����mT;��M����e���z�Z"Z�q�
����;t
#������gz%.�gΔ뉊_��j���/��Ͻ�t�ֶsVh�3��XH�������JG�q��'��vT/~e����|t���I�$}Lҙ���J:8�[O��.���C$�o���.�I� �.����%iaI�z�q엒~��D�S�n,�S�����%�%�QI�IZ"泩���$����_�.�?ލ��L��E�Ib��Y�1�ȪbfgP���)�:�
.'a+.���*T�Y(OӵN�8Ωz�b�A.ia�R�r#��o��Hv�q��Вvgr0���?���x���;/>C� �~c���C������-�Wţ��H���,���zL��v���57��0�F�� w㑲����Vn��h�O����t3n+�3��1��b�k��A{J���Uo����������o
:�I���>