Refresh GRUB scripts, config, and integration documentation
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
@@ -168,8 +168,8 @@ Red Bear OS can use GNU GRUB as an alternative boot manager with Linux-compatibl
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
make all CONFIG_NAME=redbear-full-grub # Build with GRUB chainload
|
make all CONFIG_NAME=redbear-full-grub # Build with GRUB chainload
|
||||||
local/scripts/grub-install --target=x86_64-efi --disk-image=build/x86_64/harddrive.img
|
./local/scripts/grub-install --target=x86_64-efi --disk-image=build/x86_64/harddrive.img
|
||||||
local/scripts/grub-mkconfig -o local/recipes/core/grub/grub.cfg
|
./local/scripts/grub-mkconfig -o local/recipes/core/grub/grub.cfg
|
||||||
```
|
```
|
||||||
|
|
||||||
## Native hardware listing tools
|
## Native hardware listing tools
|
||||||
|
|||||||
@@ -317,6 +317,9 @@ Two issues required workarounds:
|
|||||||
- Cannot pass kernel parameters directly (chainloading bypasses this)
|
- Cannot pass kernel parameters directly (chainloading bypasses this)
|
||||||
- BIOS boot is not supported (only UEFI)
|
- BIOS boot is not supported (only UEFI)
|
||||||
- ESP must be sized to ≥ 8 MiB in config (16 MiB recommended)
|
- ESP must be sized to ≥ 8 MiB in config (16 MiB recommended)
|
||||||
|
- GRUB bootloader is incompatible with `skip_partitions = true` (requires GPT layout with ESP)
|
||||||
|
- TUI installer does not support GRUB mode (intentional — TUI is for live disk reinstall)
|
||||||
|
- Runtime UEFI boot test has not been performed yet (requires full `make all` build, ~hours)
|
||||||
|
|
||||||
## Testing
|
## Testing
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
# The Redox bootloader then reads the RedoxFS partition and boots the kernel.
|
# The Redox bootloader then reads the RedoxFS partition and boots the kernel.
|
||||||
#
|
#
|
||||||
# Place this file at EFI/BOOT/grub.cfg on the ESP.
|
# Place this file at EFI/BOOT/grub.cfg on the ESP.
|
||||||
# The install-grub.sh script handles this automatically.
|
# The installer (redbear-full-grub.toml) or install-grub.sh handles this.
|
||||||
#
|
#
|
||||||
# To customize: edit this file before building GRUB (make r.grub),
|
# To customize: edit this file before building GRUB (make r.grub),
|
||||||
# or modify the ESP directly with fat_tool.py:
|
# or modify the ESP directly with fat_tool.py:
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,23 @@
|
|||||||
|
The following authors assigned copyright on their work to the Free
|
||||||
|
Software Foundation:
|
||||||
|
|
||||||
|
Yoshinori K. Okuji designed and implemented the initial version.
|
||||||
|
|
||||||
|
Jeroen Dekkers added initrd support, Multiboot support, and fixed bugs
|
||||||
|
in ext2fs.
|
||||||
|
|
||||||
|
Marco Gerards added ext2fs support, grub-emu, a new command-line
|
||||||
|
engine, and fixed many bugs.
|
||||||
|
|
||||||
|
Omniflux added terminfo and serial support.
|
||||||
|
|
||||||
|
Vincent Pelletier added Sparc64 support.
|
||||||
|
|
||||||
|
Hollis Blanchard implemented many parts of PowerPC support.
|
||||||
|
|
||||||
|
Tomas Ebenlendr added the command chainloader into the normal mode,
|
||||||
|
fixed some bugs.
|
||||||
|
|
||||||
|
Guillem Jover merged architecture-independent ELF support code.
|
||||||
|
|
||||||
|
Vesa Jaaskelainen added VBE support.
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
GRUB team is aware of following problems:
|
||||||
|
- Currently search and assembling multidevice abstractions scans
|
||||||
|
all the devices which can be slow.
|
||||||
|
- Cache isn't used correctly for video which results in slowness.
|
||||||
|
|
||||||
|
While these are bugs their solution has a potential of breaking more and more
|
||||||
|
seriously. So it was decided for 1.99 that they aren't fixed.
|
||||||
@@ -0,0 +1,674 @@
|
|||||||
|
GNU GENERAL PUBLIC LICENSE
|
||||||
|
Version 3, 29 June 2007
|
||||||
|
|
||||||
|
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
Preamble
|
||||||
|
|
||||||
|
The GNU General Public License is a free, copyleft license for
|
||||||
|
software and other kinds of works.
|
||||||
|
|
||||||
|
The licenses for most software and other practical works are designed
|
||||||
|
to take away your freedom to share and change the works. By contrast,
|
||||||
|
the GNU General Public License is intended to guarantee your freedom to
|
||||||
|
share and change all versions of a program--to make sure it remains free
|
||||||
|
software for all its users. We, the Free Software Foundation, use the
|
||||||
|
GNU General Public License for most of our software; it applies also to
|
||||||
|
any other work released this way by its authors. You can apply it to
|
||||||
|
your programs, too.
|
||||||
|
|
||||||
|
When we speak of free software, we are referring to freedom, not
|
||||||
|
price. Our General Public Licenses are designed to make sure that you
|
||||||
|
have the freedom to distribute copies of free software (and charge for
|
||||||
|
them if you wish), that you receive source code or can get it if you
|
||||||
|
want it, that you can change the software or use pieces of it in new
|
||||||
|
free programs, and that you know you can do these things.
|
||||||
|
|
||||||
|
To protect your rights, we need to prevent others from denying you
|
||||||
|
these rights or asking you to surrender the rights. Therefore, you have
|
||||||
|
certain responsibilities if you distribute copies of the software, or if
|
||||||
|
you modify it: responsibilities to respect the freedom of others.
|
||||||
|
|
||||||
|
For example, if you distribute copies of such a program, whether
|
||||||
|
gratis or for a fee, you must pass on to the recipients the same
|
||||||
|
freedoms that you received. You must make sure that they, too, receive
|
||||||
|
or can get the source code. And you must show them these terms so they
|
||||||
|
know their rights.
|
||||||
|
|
||||||
|
Developers that use the GNU GPL protect your rights with two steps:
|
||||||
|
(1) assert copyright on the software, and (2) offer you this License
|
||||||
|
giving you legal permission to copy, distribute and/or modify it.
|
||||||
|
|
||||||
|
For the developers' and authors' protection, the GPL clearly explains
|
||||||
|
that there is no warranty for this free software. For both users' and
|
||||||
|
authors' sake, the GPL requires that modified versions be marked as
|
||||||
|
changed, so that their problems will not be attributed erroneously to
|
||||||
|
authors of previous versions.
|
||||||
|
|
||||||
|
Some devices are designed to deny users access to install or run
|
||||||
|
modified versions of the software inside them, although the manufacturer
|
||||||
|
can do so. This is fundamentally incompatible with the aim of
|
||||||
|
protecting users' freedom to change the software. The systematic
|
||||||
|
pattern of such abuse occurs in the area of products for individuals to
|
||||||
|
use, which is precisely where it is most unacceptable. Therefore, we
|
||||||
|
have designed this version of the GPL to prohibit the practice for those
|
||||||
|
products. If such problems arise substantially in other domains, we
|
||||||
|
stand ready to extend this provision to those domains in future versions
|
||||||
|
of the GPL, as needed to protect the freedom of users.
|
||||||
|
|
||||||
|
Finally, every program is threatened constantly by software patents.
|
||||||
|
States should not allow patents to restrict development and use of
|
||||||
|
software on general-purpose computers, but in those that do, we wish to
|
||||||
|
avoid the special danger that patents applied to a free program could
|
||||||
|
make it effectively proprietary. To prevent this, the GPL assures that
|
||||||
|
patents cannot be used to render the program non-free.
|
||||||
|
|
||||||
|
The precise terms and conditions for copying, distribution and
|
||||||
|
modification follow.
|
||||||
|
|
||||||
|
TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
0. Definitions.
|
||||||
|
|
||||||
|
"This License" refers to version 3 of the GNU General Public License.
|
||||||
|
|
||||||
|
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||||
|
works, such as semiconductor masks.
|
||||||
|
|
||||||
|
"The Program" refers to any copyrightable work licensed under this
|
||||||
|
License. Each licensee is addressed as "you". "Licensees" and
|
||||||
|
"recipients" may be individuals or organizations.
|
||||||
|
|
||||||
|
To "modify" a work means to copy from or adapt all or part of the work
|
||||||
|
in a fashion requiring copyright permission, other than the making of an
|
||||||
|
exact copy. The resulting work is called a "modified version" of the
|
||||||
|
earlier work or a work "based on" the earlier work.
|
||||||
|
|
||||||
|
A "covered work" means either the unmodified Program or a work based
|
||||||
|
on the Program.
|
||||||
|
|
||||||
|
To "propagate" a work means to do anything with it that, without
|
||||||
|
permission, would make you directly or secondarily liable for
|
||||||
|
infringement under applicable copyright law, except executing it on a
|
||||||
|
computer or modifying a private copy. Propagation includes copying,
|
||||||
|
distribution (with or without modification), making available to the
|
||||||
|
public, and in some countries other activities as well.
|
||||||
|
|
||||||
|
To "convey" a work means any kind of propagation that enables other
|
||||||
|
parties to make or receive copies. Mere interaction with a user through
|
||||||
|
a computer network, with no transfer of a copy, is not conveying.
|
||||||
|
|
||||||
|
An interactive user interface displays "Appropriate Legal Notices"
|
||||||
|
to the extent that it includes a convenient and prominently visible
|
||||||
|
feature that (1) displays an appropriate copyright notice, and (2)
|
||||||
|
tells the user that there is no warranty for the work (except to the
|
||||||
|
extent that warranties are provided), that licensees may convey the
|
||||||
|
work under this License, and how to view a copy of this License. If
|
||||||
|
the interface presents a list of user commands or options, such as a
|
||||||
|
menu, a prominent item in the list meets this criterion.
|
||||||
|
|
||||||
|
1. Source Code.
|
||||||
|
|
||||||
|
The "source code" for a work means the preferred form of the work
|
||||||
|
for making modifications to it. "Object code" means any non-source
|
||||||
|
form of a work.
|
||||||
|
|
||||||
|
A "Standard Interface" means an interface that either is an official
|
||||||
|
standard defined by a recognized standards body, or, in the case of
|
||||||
|
interfaces specified for a particular programming language, one that
|
||||||
|
is widely used among developers working in that language.
|
||||||
|
|
||||||
|
The "System Libraries" of an executable work include anything, other
|
||||||
|
than the work as a whole, that (a) is included in the normal form of
|
||||||
|
packaging a Major Component, but which is not part of that Major
|
||||||
|
Component, and (b) serves only to enable use of the work with that
|
||||||
|
Major Component, or to implement a Standard Interface for which an
|
||||||
|
implementation is available to the public in source code form. A
|
||||||
|
"Major Component", in this context, means a major essential component
|
||||||
|
(kernel, window system, and so on) of the specific operating system
|
||||||
|
(if any) on which the executable work runs, or a compiler used to
|
||||||
|
produce the work, or an object code interpreter used to run it.
|
||||||
|
|
||||||
|
The "Corresponding Source" for a work in object code form means all
|
||||||
|
the source code needed to generate, install, and (for an executable
|
||||||
|
work) run the object code and to modify the work, including scripts to
|
||||||
|
control those activities. However, it does not include the work's
|
||||||
|
System Libraries, or general-purpose tools or generally available free
|
||||||
|
programs which are used unmodified in performing those activities but
|
||||||
|
which are not part of the work. For example, Corresponding Source
|
||||||
|
includes interface definition files associated with source files for
|
||||||
|
the work, and the source code for shared libraries and dynamically
|
||||||
|
linked subprograms that the work is specifically designed to require,
|
||||||
|
such as by intimate data communication or control flow between those
|
||||||
|
subprograms and other parts of the work.
|
||||||
|
|
||||||
|
The Corresponding Source need not include anything that users
|
||||||
|
can regenerate automatically from other parts of the Corresponding
|
||||||
|
Source.
|
||||||
|
|
||||||
|
The Corresponding Source for a work in source code form is that
|
||||||
|
same work.
|
||||||
|
|
||||||
|
2. Basic Permissions.
|
||||||
|
|
||||||
|
All rights granted under this License are granted for the term of
|
||||||
|
copyright on the Program, and are irrevocable provided the stated
|
||||||
|
conditions are met. This License explicitly affirms your unlimited
|
||||||
|
permission to run the unmodified Program. The output from running a
|
||||||
|
covered work is covered by this License only if the output, given its
|
||||||
|
content, constitutes a covered work. This License acknowledges your
|
||||||
|
rights of fair use or other equivalent, as provided by copyright law.
|
||||||
|
|
||||||
|
You may make, run and propagate covered works that you do not
|
||||||
|
convey, without conditions so long as your license otherwise remains
|
||||||
|
in force. You may convey covered works to others for the sole purpose
|
||||||
|
of having them make modifications exclusively for you, or provide you
|
||||||
|
with facilities for running those works, provided that you comply with
|
||||||
|
the terms of this License in conveying all material for which you do
|
||||||
|
not control copyright. Those thus making or running the covered works
|
||||||
|
for you must do so exclusively on your behalf, under your direction
|
||||||
|
and control, on terms that prohibit them from making any copies of
|
||||||
|
your copyrighted material outside their relationship with you.
|
||||||
|
|
||||||
|
Conveying under any other circumstances is permitted solely under
|
||||||
|
the conditions stated below. Sublicensing is not allowed; section 10
|
||||||
|
makes it unnecessary.
|
||||||
|
|
||||||
|
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||||
|
|
||||||
|
No covered work shall be deemed part of an effective technological
|
||||||
|
measure under any applicable law fulfilling obligations under article
|
||||||
|
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||||
|
similar laws prohibiting or restricting circumvention of such
|
||||||
|
measures.
|
||||||
|
|
||||||
|
When you convey a covered work, you waive any legal power to forbid
|
||||||
|
circumvention of technological measures to the extent such circumvention
|
||||||
|
is effected by exercising rights under this License with respect to
|
||||||
|
the covered work, and you disclaim any intention to limit operation or
|
||||||
|
modification of the work as a means of enforcing, against the work's
|
||||||
|
users, your or third parties' legal rights to forbid circumvention of
|
||||||
|
technological measures.
|
||||||
|
|
||||||
|
4. Conveying Verbatim Copies.
|
||||||
|
|
||||||
|
You may convey verbatim copies of the Program's source code as you
|
||||||
|
receive it, in any medium, provided that you conspicuously and
|
||||||
|
appropriately publish on each copy an appropriate copyright notice;
|
||||||
|
keep intact all notices stating that this License and any
|
||||||
|
non-permissive terms added in accord with section 7 apply to the code;
|
||||||
|
keep intact all notices of the absence of any warranty; and give all
|
||||||
|
recipients a copy of this License along with the Program.
|
||||||
|
|
||||||
|
You may charge any price or no price for each copy that you convey,
|
||||||
|
and you may offer support or warranty protection for a fee.
|
||||||
|
|
||||||
|
5. Conveying Modified Source Versions.
|
||||||
|
|
||||||
|
You may convey a work based on the Program, or the modifications to
|
||||||
|
produce it from the Program, in the form of source code under the
|
||||||
|
terms of section 4, provided that you also meet all of these conditions:
|
||||||
|
|
||||||
|
a) The work must carry prominent notices stating that you modified
|
||||||
|
it, and giving a relevant date.
|
||||||
|
|
||||||
|
b) The work must carry prominent notices stating that it is
|
||||||
|
released under this License and any conditions added under section
|
||||||
|
7. This requirement modifies the requirement in section 4 to
|
||||||
|
"keep intact all notices".
|
||||||
|
|
||||||
|
c) You must license the entire work, as a whole, under this
|
||||||
|
License to anyone who comes into possession of a copy. This
|
||||||
|
License will therefore apply, along with any applicable section 7
|
||||||
|
additional terms, to the whole of the work, and all its parts,
|
||||||
|
regardless of how they are packaged. This License gives no
|
||||||
|
permission to license the work in any other way, but it does not
|
||||||
|
invalidate such permission if you have separately received it.
|
||||||
|
|
||||||
|
d) If the work has interactive user interfaces, each must display
|
||||||
|
Appropriate Legal Notices; however, if the Program has interactive
|
||||||
|
interfaces that do not display Appropriate Legal Notices, your
|
||||||
|
work need not make them do so.
|
||||||
|
|
||||||
|
A compilation of a covered work with other separate and independent
|
||||||
|
works, which are not by their nature extensions of the covered work,
|
||||||
|
and which are not combined with it such as to form a larger program,
|
||||||
|
in or on a volume of a storage or distribution medium, is called an
|
||||||
|
"aggregate" if the compilation and its resulting copyright are not
|
||||||
|
used to limit the access or legal rights of the compilation's users
|
||||||
|
beyond what the individual works permit. Inclusion of a covered work
|
||||||
|
in an aggregate does not cause this License to apply to the other
|
||||||
|
parts of the aggregate.
|
||||||
|
|
||||||
|
6. Conveying Non-Source Forms.
|
||||||
|
|
||||||
|
You may convey a covered work in object code form under the terms
|
||||||
|
of sections 4 and 5, provided that you also convey the
|
||||||
|
machine-readable Corresponding Source under the terms of this License,
|
||||||
|
in one of these ways:
|
||||||
|
|
||||||
|
a) Convey the object code in, or embodied in, a physical product
|
||||||
|
(including a physical distribution medium), accompanied by the
|
||||||
|
Corresponding Source fixed on a durable physical medium
|
||||||
|
customarily used for software interchange.
|
||||||
|
|
||||||
|
b) Convey the object code in, or embodied in, a physical product
|
||||||
|
(including a physical distribution medium), accompanied by a
|
||||||
|
written offer, valid for at least three years and valid for as
|
||||||
|
long as you offer spare parts or customer support for that product
|
||||||
|
model, to give anyone who possesses the object code either (1) a
|
||||||
|
copy of the Corresponding Source for all the software in the
|
||||||
|
product that is covered by this License, on a durable physical
|
||||||
|
medium customarily used for software interchange, for a price no
|
||||||
|
more than your reasonable cost of physically performing this
|
||||||
|
conveying of source, or (2) access to copy the
|
||||||
|
Corresponding Source from a network server at no charge.
|
||||||
|
|
||||||
|
c) Convey individual copies of the object code with a copy of the
|
||||||
|
written offer to provide the Corresponding Source. This
|
||||||
|
alternative is allowed only occasionally and noncommercially, and
|
||||||
|
only if you received the object code with such an offer, in accord
|
||||||
|
with subsection 6b.
|
||||||
|
|
||||||
|
d) Convey the object code by offering access from a designated
|
||||||
|
place (gratis or for a charge), and offer equivalent access to the
|
||||||
|
Corresponding Source in the same way through the same place at no
|
||||||
|
further charge. You need not require recipients to copy the
|
||||||
|
Corresponding Source along with the object code. If the place to
|
||||||
|
copy the object code is a network server, the Corresponding Source
|
||||||
|
may be on a different server (operated by you or a third party)
|
||||||
|
that supports equivalent copying facilities, provided you maintain
|
||||||
|
clear directions next to the object code saying where to find the
|
||||||
|
Corresponding Source. Regardless of what server hosts the
|
||||||
|
Corresponding Source, you remain obligated to ensure that it is
|
||||||
|
available for as long as needed to satisfy these requirements.
|
||||||
|
|
||||||
|
e) Convey the object code using peer-to-peer transmission, provided
|
||||||
|
you inform other peers where the object code and Corresponding
|
||||||
|
Source of the work are being offered to the general public at no
|
||||||
|
charge under subsection 6d.
|
||||||
|
|
||||||
|
A separable portion of the object code, whose source code is excluded
|
||||||
|
from the Corresponding Source as a System Library, need not be
|
||||||
|
included in conveying the object code work.
|
||||||
|
|
||||||
|
A "User Product" is either (1) a "consumer product", which means any
|
||||||
|
tangible personal property which is normally used for personal, family,
|
||||||
|
or household purposes, or (2) anything designed or sold for incorporation
|
||||||
|
into a dwelling. In determining whether a product is a consumer product,
|
||||||
|
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||||
|
product received by a particular user, "normally used" refers to a
|
||||||
|
typical or common use of that class of product, regardless of the status
|
||||||
|
of the particular user or of the way in which the particular user
|
||||||
|
actually uses, or expects or is expected to use, the product. A product
|
||||||
|
is a consumer product regardless of whether the product has substantial
|
||||||
|
commercial, industrial or non-consumer uses, unless such uses represent
|
||||||
|
the only significant mode of use of the product.
|
||||||
|
|
||||||
|
"Installation Information" for a User Product means any methods,
|
||||||
|
procedures, authorization keys, or other information required to install
|
||||||
|
and execute modified versions of a covered work in that User Product from
|
||||||
|
a modified version of its Corresponding Source. The information must
|
||||||
|
suffice to ensure that the continued functioning of the modified object
|
||||||
|
code is in no case prevented or interfered with solely because
|
||||||
|
modification has been made.
|
||||||
|
|
||||||
|
If you convey an object code work under this section in, or with, or
|
||||||
|
specifically for use in, a User Product, and the conveying occurs as
|
||||||
|
part of a transaction in which the right of possession and use of the
|
||||||
|
User Product is transferred to the recipient in perpetuity or for a
|
||||||
|
fixed term (regardless of how the transaction is characterized), the
|
||||||
|
Corresponding Source conveyed under this section must be accompanied
|
||||||
|
by the Installation Information. But this requirement does not apply
|
||||||
|
if neither you nor any third party retains the ability to install
|
||||||
|
modified object code on the User Product (for example, the work has
|
||||||
|
been installed in ROM).
|
||||||
|
|
||||||
|
The requirement to provide Installation Information does not include a
|
||||||
|
requirement to continue to provide support service, warranty, or updates
|
||||||
|
for a work that has been modified or installed by the recipient, or for
|
||||||
|
the User Product in which it has been modified or installed. Access to a
|
||||||
|
network may be denied when the modification itself materially and
|
||||||
|
adversely affects the operation of the network or violates the rules and
|
||||||
|
protocols for communication across the network.
|
||||||
|
|
||||||
|
Corresponding Source conveyed, and Installation Information provided,
|
||||||
|
in accord with this section must be in a format that is publicly
|
||||||
|
documented (and with an implementation available to the public in
|
||||||
|
source code form), and must require no special password or key for
|
||||||
|
unpacking, reading or copying.
|
||||||
|
|
||||||
|
7. Additional Terms.
|
||||||
|
|
||||||
|
"Additional permissions" are terms that supplement the terms of this
|
||||||
|
License by making exceptions from one or more of its conditions.
|
||||||
|
Additional permissions that are applicable to the entire Program shall
|
||||||
|
be treated as though they were included in this License, to the extent
|
||||||
|
that they are valid under applicable law. If additional permissions
|
||||||
|
apply only to part of the Program, that part may be used separately
|
||||||
|
under those permissions, but the entire Program remains governed by
|
||||||
|
this License without regard to the additional permissions.
|
||||||
|
|
||||||
|
When you convey a copy of a covered work, you may at your option
|
||||||
|
remove any additional permissions from that copy, or from any part of
|
||||||
|
it. (Additional permissions may be written to require their own
|
||||||
|
removal in certain cases when you modify the work.) You may place
|
||||||
|
additional permissions on material, added by you to a covered work,
|
||||||
|
for which you have or can give appropriate copyright permission.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, for material you
|
||||||
|
add to a covered work, you may (if authorized by the copyright holders of
|
||||||
|
that material) supplement the terms of this License with terms:
|
||||||
|
|
||||||
|
a) Disclaiming warranty or limiting liability differently from the
|
||||||
|
terms of sections 15 and 16 of this License; or
|
||||||
|
|
||||||
|
b) Requiring preservation of specified reasonable legal notices or
|
||||||
|
author attributions in that material or in the Appropriate Legal
|
||||||
|
Notices displayed by works containing it; or
|
||||||
|
|
||||||
|
c) Prohibiting misrepresentation of the origin of that material, or
|
||||||
|
requiring that modified versions of such material be marked in
|
||||||
|
reasonable ways as different from the original version; or
|
||||||
|
|
||||||
|
d) Limiting the use for publicity purposes of names of licensors or
|
||||||
|
authors of the material; or
|
||||||
|
|
||||||
|
e) Declining to grant rights under trademark law for use of some
|
||||||
|
trade names, trademarks, or service marks; or
|
||||||
|
|
||||||
|
f) Requiring indemnification of licensors and authors of that
|
||||||
|
material by anyone who conveys the material (or modified versions of
|
||||||
|
it) with contractual assumptions of liability to the recipient, for
|
||||||
|
any liability that these contractual assumptions directly impose on
|
||||||
|
those licensors and authors.
|
||||||
|
|
||||||
|
All other non-permissive additional terms are considered "further
|
||||||
|
restrictions" within the meaning of section 10. If the Program as you
|
||||||
|
received it, or any part of it, contains a notice stating that it is
|
||||||
|
governed by this License along with a term that is a further
|
||||||
|
restriction, you may remove that term. If a license document contains
|
||||||
|
a further restriction but permits relicensing or conveying under this
|
||||||
|
License, you may add to a covered work material governed by the terms
|
||||||
|
of that license document, provided that the further restriction does
|
||||||
|
not survive such relicensing or conveying.
|
||||||
|
|
||||||
|
If you add terms to a covered work in accord with this section, you
|
||||||
|
must place, in the relevant source files, a statement of the
|
||||||
|
additional terms that apply to those files, or a notice indicating
|
||||||
|
where to find the applicable terms.
|
||||||
|
|
||||||
|
Additional terms, permissive or non-permissive, may be stated in the
|
||||||
|
form of a separately written license, or stated as exceptions;
|
||||||
|
the above requirements apply either way.
|
||||||
|
|
||||||
|
8. Termination.
|
||||||
|
|
||||||
|
You may not propagate or modify a covered work except as expressly
|
||||||
|
provided under this License. Any attempt otherwise to propagate or
|
||||||
|
modify it is void, and will automatically terminate your rights under
|
||||||
|
this License (including any patent licenses granted under the third
|
||||||
|
paragraph of section 11).
|
||||||
|
|
||||||
|
However, if you cease all violation of this License, then your
|
||||||
|
license from a particular copyright holder is reinstated (a)
|
||||||
|
provisionally, unless and until the copyright holder explicitly and
|
||||||
|
finally terminates your license, and (b) permanently, if the copyright
|
||||||
|
holder fails to notify you of the violation by some reasonable means
|
||||||
|
prior to 60 days after the cessation.
|
||||||
|
|
||||||
|
Moreover, your license from a particular copyright holder is
|
||||||
|
reinstated permanently if the copyright holder notifies you of the
|
||||||
|
violation by some reasonable means, this is the first time you have
|
||||||
|
received notice of violation of this License (for any work) from that
|
||||||
|
copyright holder, and you cure the violation prior to 30 days after
|
||||||
|
your receipt of the notice.
|
||||||
|
|
||||||
|
Termination of your rights under this section does not terminate the
|
||||||
|
licenses of parties who have received copies or rights from you under
|
||||||
|
this License. If your rights have been terminated and not permanently
|
||||||
|
reinstated, you do not qualify to receive new licenses for the same
|
||||||
|
material under section 10.
|
||||||
|
|
||||||
|
9. Acceptance Not Required for Having Copies.
|
||||||
|
|
||||||
|
You are not required to accept this License in order to receive or
|
||||||
|
run a copy of the Program. Ancillary propagation of a covered work
|
||||||
|
occurring solely as a consequence of using peer-to-peer transmission
|
||||||
|
to receive a copy likewise does not require acceptance. However,
|
||||||
|
nothing other than this License grants you permission to propagate or
|
||||||
|
modify any covered work. These actions infringe copyright if you do
|
||||||
|
not accept this License. Therefore, by modifying or propagating a
|
||||||
|
covered work, you indicate your acceptance of this License to do so.
|
||||||
|
|
||||||
|
10. Automatic Licensing of Downstream Recipients.
|
||||||
|
|
||||||
|
Each time you convey a covered work, the recipient automatically
|
||||||
|
receives a license from the original licensors, to run, modify and
|
||||||
|
propagate that work, subject to this License. You are not responsible
|
||||||
|
for enforcing compliance by third parties with this License.
|
||||||
|
|
||||||
|
An "entity transaction" is a transaction transferring control of an
|
||||||
|
organization, or substantially all assets of one, or subdividing an
|
||||||
|
organization, or merging organizations. If propagation of a covered
|
||||||
|
work results from an entity transaction, each party to that
|
||||||
|
transaction who receives a copy of the work also receives whatever
|
||||||
|
licenses to the work the party's predecessor in interest had or could
|
||||||
|
give under the previous paragraph, plus a right to possession of the
|
||||||
|
Corresponding Source of the work from the predecessor in interest, if
|
||||||
|
the predecessor has it or can get it with reasonable efforts.
|
||||||
|
|
||||||
|
You may not impose any further restrictions on the exercise of the
|
||||||
|
rights granted or affirmed under this License. For example, you may
|
||||||
|
not impose a license fee, royalty, or other charge for exercise of
|
||||||
|
rights granted under this License, and you may not initiate litigation
|
||||||
|
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||||
|
any patent claim is infringed by making, using, selling, offering for
|
||||||
|
sale, or importing the Program or any portion of it.
|
||||||
|
|
||||||
|
11. Patents.
|
||||||
|
|
||||||
|
A "contributor" is a copyright holder who authorizes use under this
|
||||||
|
License of the Program or a work on which the Program is based. The
|
||||||
|
work thus licensed is called the contributor's "contributor version".
|
||||||
|
|
||||||
|
A contributor's "essential patent claims" are all patent claims
|
||||||
|
owned or controlled by the contributor, whether already acquired or
|
||||||
|
hereafter acquired, that would be infringed by some manner, permitted
|
||||||
|
by this License, of making, using, or selling its contributor version,
|
||||||
|
but do not include claims that would be infringed only as a
|
||||||
|
consequence of further modification of the contributor version. For
|
||||||
|
purposes of this definition, "control" includes the right to grant
|
||||||
|
patent sublicenses in a manner consistent with the requirements of
|
||||||
|
this License.
|
||||||
|
|
||||||
|
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||||
|
patent license under the contributor's essential patent claims, to
|
||||||
|
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||||
|
propagate the contents of its contributor version.
|
||||||
|
|
||||||
|
In the following three paragraphs, a "patent license" is any express
|
||||||
|
agreement or commitment, however denominated, not to enforce a patent
|
||||||
|
(such as an express permission to practice a patent or covenant not to
|
||||||
|
sue for patent infringement). To "grant" such a patent license to a
|
||||||
|
party means to make such an agreement or commitment not to enforce a
|
||||||
|
patent against the party.
|
||||||
|
|
||||||
|
If you convey a covered work, knowingly relying on a patent license,
|
||||||
|
and the Corresponding Source of the work is not available for anyone
|
||||||
|
to copy, free of charge and under the terms of this License, through a
|
||||||
|
publicly available network server or other readily accessible means,
|
||||||
|
then you must either (1) cause the Corresponding Source to be so
|
||||||
|
available, or (2) arrange to deprive yourself of the benefit of the
|
||||||
|
patent license for this particular work, or (3) arrange, in a manner
|
||||||
|
consistent with the requirements of this License, to extend the patent
|
||||||
|
license to downstream recipients. "Knowingly relying" means you have
|
||||||
|
actual knowledge that, but for the patent license, your conveying the
|
||||||
|
covered work in a country, or your recipient's use of the covered work
|
||||||
|
in a country, would infringe one or more identifiable patents in that
|
||||||
|
country that you have reason to believe are valid.
|
||||||
|
|
||||||
|
If, pursuant to or in connection with a single transaction or
|
||||||
|
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||||
|
covered work, and grant a patent license to some of the parties
|
||||||
|
receiving the covered work authorizing them to use, propagate, modify
|
||||||
|
or convey a specific copy of the covered work, then the patent license
|
||||||
|
you grant is automatically extended to all recipients of the covered
|
||||||
|
work and works based on it.
|
||||||
|
|
||||||
|
A patent license is "discriminatory" if it does not include within
|
||||||
|
the scope of its coverage, prohibits the exercise of, or is
|
||||||
|
conditioned on the non-exercise of one or more of the rights that are
|
||||||
|
specifically granted under this License. You may not convey a covered
|
||||||
|
work if you are a party to an arrangement with a third party that is
|
||||||
|
in the business of distributing software, under which you make payment
|
||||||
|
to the third party based on the extent of your activity of conveying
|
||||||
|
the work, and under which the third party grants, to any of the
|
||||||
|
parties who would receive the covered work from you, a discriminatory
|
||||||
|
patent license (a) in connection with copies of the covered work
|
||||||
|
conveyed by you (or copies made from those copies), or (b) primarily
|
||||||
|
for and in connection with specific products or compilations that
|
||||||
|
contain the covered work, unless you entered into that arrangement,
|
||||||
|
or that patent license was granted, prior to 28 March 2007.
|
||||||
|
|
||||||
|
Nothing in this License shall be construed as excluding or limiting
|
||||||
|
any implied license or other defenses to infringement that may
|
||||||
|
otherwise be available to you under applicable patent law.
|
||||||
|
|
||||||
|
12. No Surrender of Others' Freedom.
|
||||||
|
|
||||||
|
If conditions are imposed on you (whether by court order, agreement or
|
||||||
|
otherwise) that contradict the conditions of this License, they do not
|
||||||
|
excuse you from the conditions of this License. If you cannot convey a
|
||||||
|
covered work so as to satisfy simultaneously your obligations under this
|
||||||
|
License and any other pertinent obligations, then as a consequence you may
|
||||||
|
not convey it at all. For example, if you agree to terms that obligate you
|
||||||
|
to collect a royalty for further conveying from those to whom you convey
|
||||||
|
the Program, the only way you could satisfy both those terms and this
|
||||||
|
License would be to refrain entirely from conveying the Program.
|
||||||
|
|
||||||
|
13. Use with the GNU Affero General Public License.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, you have
|
||||||
|
permission to link or combine any covered work with a work licensed
|
||||||
|
under version 3 of the GNU Affero General Public License into a single
|
||||||
|
combined work, and to convey the resulting work. The terms of this
|
||||||
|
License will continue to apply to the part which is the covered work,
|
||||||
|
but the special requirements of the GNU Affero General Public License,
|
||||||
|
section 13, concerning interaction through a network will apply to the
|
||||||
|
combination as such.
|
||||||
|
|
||||||
|
14. Revised Versions of this License.
|
||||||
|
|
||||||
|
The Free Software Foundation may publish revised and/or new versions of
|
||||||
|
the GNU General Public License from time to time. Such new versions will
|
||||||
|
be similar in spirit to the present version, but may differ in detail to
|
||||||
|
address new problems or concerns.
|
||||||
|
|
||||||
|
Each version is given a distinguishing version number. If the
|
||||||
|
Program specifies that a certain numbered version of the GNU General
|
||||||
|
Public License "or any later version" applies to it, you have the
|
||||||
|
option of following the terms and conditions either of that numbered
|
||||||
|
version or of any later version published by the Free Software
|
||||||
|
Foundation. If the Program does not specify a version number of the
|
||||||
|
GNU General Public License, you may choose any version ever published
|
||||||
|
by the Free Software Foundation.
|
||||||
|
|
||||||
|
If the Program specifies that a proxy can decide which future
|
||||||
|
versions of the GNU General Public License can be used, that proxy's
|
||||||
|
public statement of acceptance of a version permanently authorizes you
|
||||||
|
to choose that version for the Program.
|
||||||
|
|
||||||
|
Later license versions may give you additional or different
|
||||||
|
permissions. However, no additional obligations are imposed on any
|
||||||
|
author or copyright holder as a result of your choosing to follow a
|
||||||
|
later version.
|
||||||
|
|
||||||
|
15. Disclaimer of Warranty.
|
||||||
|
|
||||||
|
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||||
|
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||||
|
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||||
|
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||||
|
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||||
|
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||||
|
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||||
|
|
||||||
|
16. Limitation of Liability.
|
||||||
|
|
||||||
|
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||||
|
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||||
|
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||||
|
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||||
|
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||||
|
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||||
|
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||||
|
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||||
|
SUCH DAMAGES.
|
||||||
|
|
||||||
|
17. Interpretation of Sections 15 and 16.
|
||||||
|
|
||||||
|
If the disclaimer of warranty and limitation of liability provided
|
||||||
|
above cannot be given local legal effect according to their terms,
|
||||||
|
reviewing courts shall apply local law that most closely approximates
|
||||||
|
an absolute waiver of all civil liability in connection with the
|
||||||
|
Program, unless a warranty or assumption of liability accompanies a
|
||||||
|
copy of the Program in return for a fee.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
How to Apply These Terms to Your New Programs
|
||||||
|
|
||||||
|
If you develop a new program, and you want it to be of the greatest
|
||||||
|
possible use to the public, the best way to achieve this is to make it
|
||||||
|
free software which everyone can redistribute and change under these terms.
|
||||||
|
|
||||||
|
To do so, attach the following notices to the program. It is safest
|
||||||
|
to attach them to the start of each source file to most effectively
|
||||||
|
state the exclusion of warranty; and each file should have at least
|
||||||
|
the "copyright" line and a pointer to where the full notice is found.
|
||||||
|
|
||||||
|
<one line to give the program's name and a brief idea of what it does.>
|
||||||
|
Copyright (C) <year> <name of author>
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Also add information on how to contact you by electronic and paper mail.
|
||||||
|
|
||||||
|
If the program does terminal interaction, make it output a short
|
||||||
|
notice like this when it starts in an interactive mode:
|
||||||
|
|
||||||
|
<program> Copyright (C) <year> <name of author>
|
||||||
|
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||||
|
This is free software, and you are welcome to redistribute it
|
||||||
|
under certain conditions; type `show c' for details.
|
||||||
|
|
||||||
|
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||||
|
parts of the General Public License. Of course, your program's commands
|
||||||
|
might be different; for a GUI interface, you would use an "about box".
|
||||||
|
|
||||||
|
You should also get your employer (if you work as a programmer) or school,
|
||||||
|
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||||
|
For more information on this, and how to apply and follow the GNU GPL, see
|
||||||
|
<http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
The GNU General Public License does not permit incorporating your program
|
||||||
|
into proprietary programs. If your program is a subroutine library, you
|
||||||
|
may consider it more useful to permit linking proprietary applications with
|
||||||
|
the library. If this is what you want to do, use the GNU Lesser General
|
||||||
|
Public License instead of this License. But first, please read
|
||||||
|
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,355 @@
|
|||||||
|
-*- Text -*-
|
||||||
|
|
||||||
|
This is the GRUB. Welcome.
|
||||||
|
|
||||||
|
This file contains instructions for compiling and installing the GRUB.
|
||||||
|
|
||||||
|
Where this document refers to packages names, they are named according to the
|
||||||
|
Debian 11 package repositories. These packages can be found by searching
|
||||||
|
https://packages.debian.org/.
|
||||||
|
|
||||||
|
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 8.0.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
|
||||||
|
* GNU binutils 2.9.1.0.23 or later
|
||||||
|
* Flex 2.5.35 or later
|
||||||
|
* pkg-config
|
||||||
|
* GNU patch
|
||||||
|
* 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)
|
||||||
|
|
||||||
|
To build GRUB's graphical terminal (gfxterm), you need:
|
||||||
|
|
||||||
|
* FreeType 2.1.5 or later
|
||||||
|
* GNU Unifont
|
||||||
|
|
||||||
|
To build grub-mkfont the unicode fonts are required (xfonts-unifont package
|
||||||
|
on Debian).
|
||||||
|
|
||||||
|
If you use a development snapshot or want to hack on GRUB you may
|
||||||
|
need the following.
|
||||||
|
|
||||||
|
* Python 3 (NOTE: python 2.6 should still work, but it's not tested)
|
||||||
|
* Autoconf 2.64 or later
|
||||||
|
* Automake 1.14 or later
|
||||||
|
|
||||||
|
Your distro may package cross-compiling toolchains such as the following
|
||||||
|
incomplete list on Debian: gcc-aarch64-linux-gnu, gcc-arm-linux-gnueabihf,
|
||||||
|
gcc-mips-linux-gnu, gcc-mipsel-linux-gnu, gcc-powerpc64-linux-gnu,
|
||||||
|
gcc-riscv64-linux-gnu, gcc-sparc64-linux-gnu, mingw-w64 and mingw-w64-tools.
|
||||||
|
|
||||||
|
More cross compiling toolchains can be found at the following trusted sites:
|
||||||
|
|
||||||
|
* https://mirrors.kernel.org/pub/tools/crosstool/
|
||||||
|
* https://toolchains.bootlin.com/
|
||||||
|
|
||||||
|
Prerequisites for make-check:
|
||||||
|
|
||||||
|
* qemu, specifically the binary "qemu-system-ARCH" where ARCH is the
|
||||||
|
architecture GRUB has been built for; the "qemu-system" package on Debian
|
||||||
|
will install all needed qemu architectures
|
||||||
|
* OVMF, for EFI platforms (packages ovmf, ovmf-ia32, qemu-efi-arm, and
|
||||||
|
qemu-efi-aarch64)
|
||||||
|
* OpenBIOS, for ieee1275 platforms (packages openbios-ppc and openbios-sparc)
|
||||||
|
* xorriso 1.2.9 or later, for grub-mkrescue and grub-shell
|
||||||
|
* wamerican, for grub-fs-tester
|
||||||
|
* mtools, FAT tools for EFI platforms
|
||||||
|
* xfonts-unifont, for the functional tests
|
||||||
|
|
||||||
|
* If running a Linux kernel the following modules must be loaded:
|
||||||
|
- fuse, loop
|
||||||
|
- btrfs, ext4, f2fs, fat, hfs, hfsplus, jfs, mac-roman, minix, nilfs2,
|
||||||
|
reiserfs, udf, xfs
|
||||||
|
- On newer kernels, the exfat kernel modules may be used instead of the
|
||||||
|
exfat FUSE filesystem
|
||||||
|
* The following are Debian named packages required mostly for the full
|
||||||
|
suite of filesystem testing (but some are needed by other tests as well):
|
||||||
|
- btrfs-progs, dosfstools, e2fsprogs, exfat-utils, f2fs-tools, genromfs,
|
||||||
|
hfsprogs, jfsutils, nilfs-tools, ntfs-3g, reiserfsprogs, squashfs-tools,
|
||||||
|
reiserfsprogs, udftools, xfsprogs, zfs-fuse
|
||||||
|
- exfat-fuse, if not using the exfat kernel module
|
||||||
|
- gzip, lzop, xz-utils
|
||||||
|
- attr, cpio, g++, gawk, parted, recode, tar, util-linux
|
||||||
|
|
||||||
|
Note that `make check' will run and many tests may complete successfully
|
||||||
|
with only a subset of these prerequisites. However, some tests may be
|
||||||
|
skipped or fail due to missing prerequisites.
|
||||||
|
|
||||||
|
To build the documentation you'll need:
|
||||||
|
* texinfo, for the info and html documentation
|
||||||
|
* texlive, for building the dvi and pdf documentation (optional)
|
||||||
|
|
||||||
|
To use the gdb_grub GDB script you'll need:
|
||||||
|
* readelf (binutils package)
|
||||||
|
* objdump (binutils package)
|
||||||
|
* GNU Debugger > 7, built with python support (gdb package)
|
||||||
|
* Python >= 3.5 (python3 package)
|
||||||
|
|
||||||
|
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 `./bootstrap'.
|
||||||
|
|
||||||
|
The autogen.sh (called by bootstrap) uses python. By default autodetect
|
||||||
|
it, but it can be overridden by setting the PYTHON variable.
|
||||||
|
|
||||||
|
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. Note that many of the tests require root privileges in
|
||||||
|
order to run.
|
||||||
|
|
||||||
|
8. Type `make install' to install the programs and any data files and
|
||||||
|
documentation.
|
||||||
|
|
||||||
|
9. Type `make html' or `make pdf' to generate the html or pdf
|
||||||
|
documentation. Note, these are not built by default.
|
||||||
|
|
||||||
|
10. 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=sparc64-freebsd --host=x86_64-linux-gnu \
|
||||||
|
--target=arm-linux-gnueabihf --with-platform=efi \
|
||||||
|
BUILD_CC=gcc BUILD_PKG_CONFIG=pkg-config \
|
||||||
|
HOST_CC=x86_64-linux-gnu-gcc HOST_CFLAGS='-g -O2' \
|
||||||
|
PKG_CONFIG=x86_64-linux-gnu-pkg-config TARGET_CC=arm-linux-gnueabihf-gcc \
|
||||||
|
TARGET_CFLAGS='-Os -march=armv8.3-a' TARGET_CCASFLAGS='-march=armv8.3-a' \
|
||||||
|
TARGET_OBJCOPY=arm-linux-gnueabihf-objcopy \
|
||||||
|
TARGET_STRIP=arm-linux-gnueabihf-strip TARGET_NM=arm-linux-gnueabihf-nm \
|
||||||
|
TARGET_RANLIB=arm-linux-gnueabihf-ranlib LEX=flex
|
||||||
|
|
||||||
|
Note, that the autoconf 2.65 manual states that when using the --host argument
|
||||||
|
to configure, the --build argument should be specified as well. Not sending
|
||||||
|
--build, enters a compatibility mode that will be removed in the future.
|
||||||
|
|
||||||
|
Normally, for building a GRUB on amd64 with tools to run on amd64 to
|
||||||
|
generate images to run on ARM, using your Linux distribution's
|
||||||
|
packaged cross compiler, the following would suffice:
|
||||||
|
|
||||||
|
./configure --target=arm-linux-gnueabihf --with-platform=efi
|
||||||
|
|
||||||
|
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= to autoconf name of build.
|
||||||
|
2. 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.
|
||||||
|
3. BUILD_CFLAGS= for C options for build.
|
||||||
|
4. BUILD_CPPFLAGS= for C preprocessor options for build.
|
||||||
|
5. BUILD_LDFLAGS= for linker options for build.
|
||||||
|
6. BUILD_PKG_CONFIG= for pkg-config for build (optional).
|
||||||
|
|
||||||
|
- For host
|
||||||
|
1. --host= to autoconf name of host.
|
||||||
|
2. CC= for gcc able to compile for host.
|
||||||
|
3. CFLAGS= for C options for host.
|
||||||
|
4. HOST_CC= for gcc able to compile for host.
|
||||||
|
5. HOST_CFLAGS= for C options for host.
|
||||||
|
6. HOST_CPPFLAGS= for C preprocessor options for host.
|
||||||
|
7. HOST_LDFLAGS= for linker options for host.
|
||||||
|
8. PKG_CONFIG= for pkg-config for host (optional).
|
||||||
|
9. Libdevmapper if any must be in standard linker folders (-ldevmapper) (optional).
|
||||||
|
10. Libfuse if any must be in standard linker folders (-lfuse) (optional).
|
||||||
|
11. Libzfs if any must be in standard linker folders (-lzfs) (optional).
|
||||||
|
12. Liblzma if any must be in standard linker folders (-llzma) (optional).
|
||||||
|
Note: The HOST_* variables override not prefixed variables.
|
||||||
|
|
||||||
|
- 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.
|
||||||
|
Note: If the TARGET_* variables are not specified then they will default
|
||||||
|
to be the same as the host variables. If host variables are not
|
||||||
|
specified then the TARGET_* variables will default to be the same
|
||||||
|
as not prefixed variables.
|
||||||
|
|
||||||
|
- 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)
|
||||||
|
|
||||||
|
- 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.
|
||||||
@@ -0,0 +1,494 @@
|
|||||||
|
AUTOMAKE_OPTIONS = subdir-objects -Wno-portability
|
||||||
|
|
||||||
|
DEPDIR = .deps-util
|
||||||
|
SUBDIRS = grub-core/lib/gnulib .
|
||||||
|
if COND_real_platform
|
||||||
|
SUBDIRS += grub-core
|
||||||
|
endif
|
||||||
|
SUBDIRS += po docs util/bash-completion.d
|
||||||
|
|
||||||
|
include $(top_srcdir)/conf/Makefile.common
|
||||||
|
include $(top_srcdir)/conf/Makefile.extra-dist
|
||||||
|
|
||||||
|
AM_CFLAGS = $(HOST_CFLAGS)
|
||||||
|
AM_LDFLAGS = $(HOST_LDFLAGS)
|
||||||
|
AM_CPPFLAGS = $(HOST_CPPFLAGS) $(CPPFLAGS_DEFAULT)
|
||||||
|
AM_CCASFLAGS = $(HOST_CCASFLAGS) $(CCASFLAGS_DEFAULT)
|
||||||
|
|
||||||
|
ACLOCAL_AMFLAGS = -I m4
|
||||||
|
|
||||||
|
CFLAGS_PROGRAM += $(CFLAGS_GNULIB)
|
||||||
|
LDFLAGS_PROGRAM += $(LDFLAGS_GNULIB)
|
||||||
|
CPPFLAGS_PROGRAM += $(CPPFLAGS_GNULIB)
|
||||||
|
CCASFLAGS_PROGRAM += $(CCASFLAGS_GNULIB)
|
||||||
|
|
||||||
|
include $(srcdir)/Makefile.util.am
|
||||||
|
|
||||||
|
check_SCRIPTS = $(check_SCRIPTS_native) $(check_SCRIPTS_nonnative)
|
||||||
|
check_PROGRAMS = $(check_PROGRAMS_native) $(check_PROGRAMS_nonnative)
|
||||||
|
TESTS = $(check_SCRIPTS) $(check_PROGRAMS)
|
||||||
|
|
||||||
|
check-native:
|
||||||
|
$(MAKE) TESTS="$(check_PROGRAMS_native) $(check_SCRIPTS_native)" check
|
||||||
|
check-nonnative:
|
||||||
|
$(MAKE) TESTS="$(check_PROGRAMS_nonnative) $(check_SCRIPTS_nonnative)" check
|
||||||
|
|
||||||
|
# XXX Use Automake's LEX & YACC support
|
||||||
|
grub_script.tab.h: $(top_srcdir)/grub-core/script/parser.y
|
||||||
|
$(YACC) -d -p grub_script_yy -b grub_script $(top_srcdir)/grub-core/script/parser.y
|
||||||
|
grub_script.tab.c: grub_script.tab.h
|
||||||
|
CLEANFILES += grub_script.tab.c grub_script.tab.h
|
||||||
|
|
||||||
|
# For the lexer.
|
||||||
|
grub_script.yy.h: $(top_srcdir)/grub-core/script/yylex.l
|
||||||
|
$(LEX) -o grub_script.yy.c --header-file=grub_script.yy.h $(top_srcdir)/grub-core/script/yylex.l
|
||||||
|
grub_script.yy.c: grub_script.yy.h
|
||||||
|
CLEANFILES += grub_script.yy.c grub_script.yy.h
|
||||||
|
|
||||||
|
# For libgrub.a
|
||||||
|
libgrub.pp: config-util.h grub_script.tab.h grub_script.yy.h $(libgrubmods_a_SOURCES) $(libgrubkern_a_SOURCES)
|
||||||
|
$(CPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgrubmods_a_CPPFLAGS) $(libgrubkern_a_CPPFLAGS) $(CPPFLAGS) \
|
||||||
|
-D'GRUB_MOD_INIT(x)=@MARKER@x@' $^ > $@ || (rm -f $@; exit 1)
|
||||||
|
CLEANFILES += libgrub.pp
|
||||||
|
|
||||||
|
libgrub_a_init.lst: libgrub.pp
|
||||||
|
cat $< | grep '^@MARKER@' | sed 's/@MARKER@\(.*\)@/\1/g' | sort -u > $@ || (rm -f $@; exit 1)
|
||||||
|
CLEANFILES += libgrub_a_init.lst
|
||||||
|
|
||||||
|
libgrub_a_init.c: libgrub_a_init.lst $(top_srcdir)/geninit.sh
|
||||||
|
sh $(top_srcdir)/geninit.sh `cat $<` > $@ || (rm -f $@; exit 1)
|
||||||
|
CLEANFILES += libgrub_a_init.c
|
||||||
|
|
||||||
|
# For grub-fstest
|
||||||
|
grub_fstest.pp: config-util.h $(grub_fstest_SOURCES)
|
||||||
|
$(CPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(grub_fstest_CPPFLAGS) $(CPPFLAGS) \
|
||||||
|
-D'GRUB_MOD_INIT(x)=@MARKER@x@' $^ > $@ || (rm -f $@; exit 1)
|
||||||
|
CLEANFILES += grub_fstest.pp
|
||||||
|
|
||||||
|
grub_fstest_init.lst: libgrub.pp grub_fstest.pp
|
||||||
|
cat $^ | grep '^@MARKER@' | sed 's/@MARKER@\(.*\)@/\1/g' | sort -u > $@ || (rm -f $@; exit 1)
|
||||||
|
CLEANFILES += grub_fstest_init.lst
|
||||||
|
|
||||||
|
grub_fstest_init.c: grub_fstest_init.lst $(top_srcdir)/geninit.sh
|
||||||
|
sh $(top_srcdir)/geninit.sh `cat $<` > $@ || (rm -f $@; exit 1)
|
||||||
|
CLEANFILES += grub_fstest_init.c
|
||||||
|
|
||||||
|
if COND_HAVE_FONT_SOURCE
|
||||||
|
pkgdata_DATA += unicode.pf2 ascii.pf2 euro.pf2 ascii.h widthspec.h
|
||||||
|
endif
|
||||||
|
|
||||||
|
starfield_theme_files = $(srcdir)/themes/starfield/blob_w.png $(srcdir)/themes/starfield/boot_menu_c.png $(srcdir)/themes/starfield/boot_menu_e.png $(srcdir)/themes/starfield/boot_menu_ne.png $(srcdir)/themes/starfield/boot_menu_n.png $(srcdir)/themes/starfield/boot_menu_nw.png $(srcdir)/themes/starfield/boot_menu_se.png $(srcdir)/themes/starfield/boot_menu_s.png $(srcdir)/themes/starfield/boot_menu_sw.png $(srcdir)/themes/starfield/boot_menu_w.png $(srcdir)/themes/starfield/slider_c.png $(srcdir)/themes/starfield/slider_n.png $(srcdir)/themes/starfield/slider_s.png $(srcdir)/themes/starfield/starfield.png $(srcdir)/themes/starfield/terminal_box_c.png $(srcdir)/themes/starfield/terminal_box_e.png $(srcdir)/themes/starfield/terminal_box_ne.png $(srcdir)/themes/starfield/terminal_box_n.png $(srcdir)/themes/starfield/terminal_box_nw.png $(srcdir)/themes/starfield/terminal_box_se.png $(srcdir)/themes/starfield/terminal_box_s.png $(srcdir)/themes/starfield/terminal_box_sw.png $(srcdir)/themes/starfield/terminal_box_w.png $(srcdir)/themes/starfield/theme.txt $(srcdir)/themes/starfield/README $(srcdir)/themes/starfield/COPYING.CC-BY-SA-3.0
|
||||||
|
|
||||||
|
build-grub-mkfont$(BUILD_EXEEXT): util/grub-mkfont.c grub-core/unidata.c grub-core/kern/emu/misc.c util/misc.c
|
||||||
|
$(BUILD_CC) -o $@ -I$(top_srcdir)/include $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(BUILD_LDFLAGS) -DGRUB_MKFONT=1 -DGRUB_BUILD=1 -DGRUB_UTIL=1 -DGRUB_BUILD_PROGRAM_NAME=\"build-grub-mkfont\" $^ $(BUILD_FREETYPE_CFLAGS) $(BUILD_FREETYPE_LIBS)
|
||||||
|
CLEANFILES += build-grub-mkfont$(BUILD_EXEEXT)
|
||||||
|
|
||||||
|
garbage-gen$(BUILD_EXEEXT): util/garbage-gen.c
|
||||||
|
$(BUILD_CC) -o $@ $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(BUILD_LDFLAGS) $^
|
||||||
|
CLEANFILES += garbage-gen$(BUILD_EXEEXT)
|
||||||
|
EXTRA_DIST += util/garbage-gen.c
|
||||||
|
|
||||||
|
build-grub-gen-asciih$(BUILD_EXEEXT): util/grub-gen-asciih.c
|
||||||
|
$(BUILD_CC) -o $@ -I$(top_srcdir)/include $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(BUILD_LDFLAGS) -DGRUB_MKFONT=1 -DGRUB_BUILD=1 -DGRUB_UTIL=1 $^ $(BUILD_FREETYPE_CFLAGS) $(BUILD_FREETYPE_LIBS) -Wall -Werror
|
||||||
|
CLEANFILES += build-grub-gen-asciih$(BUILD_EXEEXT)
|
||||||
|
|
||||||
|
build-grub-gen-widthspec$(BUILD_EXEEXT): util/grub-gen-widthspec.c
|
||||||
|
$(BUILD_CC) -o $@ -I$(top_srcdir)/include $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(BUILD_LDFLAGS) -DGRUB_MKFONT=1 -DGRUB_BUILD=1 -DGRUB_UTIL=1 $^ $(BUILD_FREETYPE_CFLAGS) $(BUILD_FREETYPE_LIBS) -Wall -Werror
|
||||||
|
CLEANFILES += build-grub-gen-widthspec$(BUILD_EXEEXT)
|
||||||
|
|
||||||
|
if COND_STARFIELD
|
||||||
|
starfield_DATA = dejavu_10.pf2 dejavu_12.pf2 dejavu_bold_14.pf2 dejavu_14.pf2 dejavu_16.pf2 $(starfield_theme_files)
|
||||||
|
dejavu_10.pf2: $(DJVU_FONT_SOURCE) build-grub-mkfont$(BUILD_EXEEXT)
|
||||||
|
./build-grub-mkfont$(BUILD_EXEEXT) -s 10 -o $@ $(DJVU_FONT_SOURCE)
|
||||||
|
CLEANFILES += dejavu_10.pf2
|
||||||
|
dejavu_12.pf2: $(DJVU_FONT_SOURCE) build-grub-mkfont$(BUILD_EXEEXT)
|
||||||
|
./build-grub-mkfont$(BUILD_EXEEXT) -s 12 -o $@ $(DJVU_FONT_SOURCE)
|
||||||
|
CLEANFILES += dejavu_12.pf2
|
||||||
|
dejavu_14.pf2: $(DJVU_FONT_SOURCE) build-grub-mkfont$(BUILD_EXEEXT)
|
||||||
|
./build-grub-mkfont$(BUILD_EXEEXT) -s 14 -o $@ $(DJVU_FONT_SOURCE)
|
||||||
|
CLEANFILES += dejavu_14.pf2
|
||||||
|
dejavu_bold_14.pf2: $(DJVU_FONT_SOURCE) build-grub-mkfont$(BUILD_EXEEXT)
|
||||||
|
./build-grub-mkfont$(BUILD_EXEEXT) -b -s 14 -o $@ $(DJVU_FONT_SOURCE)
|
||||||
|
CLEANFILES += dejavu_bold_14.pf2
|
||||||
|
dejavu_16.pf2: $(DJVU_FONT_SOURCE) build-grub-mkfont$(BUILD_EXEEXT)
|
||||||
|
./build-grub-mkfont$(BUILD_EXEEXT) -s 16 -o $@ $(DJVU_FONT_SOURCE)
|
||||||
|
CLEANFILES += dejavu_16.pf2
|
||||||
|
else
|
||||||
|
starfield_DATA =
|
||||||
|
endif
|
||||||
|
|
||||||
|
EXTRA_DIST += $(starfield_theme_files)
|
||||||
|
EXTRA_DIST += $(srcdir)/themes/starfield/src/slider_s.xcf $(srcdir)/themes/starfield/src/slider_n.xcf $(srcdir)/themes/starfield/src/slider_c.xcf $(srcdir)/themes/starfield/src/blob_nw.xcf $(srcdir)/themes/starfield/src/bootmenu/center.xcf $(srcdir)/themes/starfield/src/bootmenu/corner.xcf $(srcdir)/themes/starfield/src/bootmenu/side.xcf $(srcdir)/themes/starfield/src/terminalbox/side.xcf $(srcdir)/themes/starfield/src/terminalbox/corner.xcf $(srcdir)/themes/starfield/src/terminalbox/center.xcf
|
||||||
|
|
||||||
|
unicode.pf2: $(FONT_SOURCE) build-grub-mkfont$(BUILD_EXEEXT)
|
||||||
|
./build-grub-mkfont$(BUILD_EXEEXT) -o $@ $(FONT_SOURCE) || (rm -f $@; exit 1)
|
||||||
|
CLEANFILES += unicode.pf2
|
||||||
|
|
||||||
|
# Arrows and lines are needed to draw the menu, so always include them
|
||||||
|
UNICODE_ARROWS=0x2190-0x2193
|
||||||
|
UNICODE_LINES=0x2501-0x251B
|
||||||
|
|
||||||
|
ascii.pf2: $(FONT_SOURCE) build-grub-mkfont$(BUILD_EXEEXT)
|
||||||
|
./build-grub-mkfont$(BUILD_EXEEXT) -o $@ $(FONT_SOURCE) -r 0x0-0x7f,$(UNICODE_ARROWS),$(UNICODE_LINES) || (rm -f $@; exit 1)
|
||||||
|
CLEANFILES += ascii.pf2
|
||||||
|
|
||||||
|
euro.pf2: $(FONT_SOURCE) build-grub-mkfont$(BUILD_EXEEXT)
|
||||||
|
./build-grub-mkfont$(BUILD_EXEEXT) -o $@ $(FONT_SOURCE) -r 0x0-0x4ff,0x1e00-0x1fff,$(UNICODE_ARROWS),$(UNICODE_LINES) || (rm -f $@; exit 1)
|
||||||
|
CLEANFILES += euro.pf2
|
||||||
|
|
||||||
|
ascii.h: $(FONT_SOURCE) build-grub-gen-asciih$(BUILD_EXEEXT)
|
||||||
|
./build-grub-gen-asciih$(BUILD_EXEEXT) $(FONT_SOURCE) $@ || (rm -f $@; exit 1)
|
||||||
|
CLEANFILES += ascii.h
|
||||||
|
|
||||||
|
widthspec.h: $(FONT_SOURCE) build-grub-gen-widthspec$(BUILD_EXEEXT)
|
||||||
|
./build-grub-gen-widthspec$(BUILD_EXEEXT) $(FONT_SOURCE) $@ || (rm -f $@; exit 1)
|
||||||
|
CLEANFILES += widthspec.h
|
||||||
|
|
||||||
|
# Install config.h into platformdir
|
||||||
|
nodist_platform_HEADERS = config.h
|
||||||
|
|
||||||
|
pkgdata_DATA += grub-mkconfig_lib
|
||||||
|
|
||||||
|
|
||||||
|
if COND_real_platform
|
||||||
|
|
||||||
|
if COND_i386_coreboot
|
||||||
|
QEMU32=qemu-system-i386
|
||||||
|
MINIMUM_CPU_LINUX=pentium2
|
||||||
|
endif
|
||||||
|
|
||||||
|
if COND_i386_multiboot
|
||||||
|
QEMU32=qemu-system-i386
|
||||||
|
MINIMUM_CPU_LINUX=pentium2
|
||||||
|
endif
|
||||||
|
|
||||||
|
if COND_i386_ieee1275
|
||||||
|
QEMU32=qemu-system-i386
|
||||||
|
MINIMUM_CPU_LINUX=pentium2
|
||||||
|
endif
|
||||||
|
|
||||||
|
if COND_i386_qemu
|
||||||
|
QEMU32=qemu-system-i386
|
||||||
|
MINIMUM_CPU_LINUX=pentium2
|
||||||
|
endif
|
||||||
|
|
||||||
|
if COND_i386_pc
|
||||||
|
QEMU32=qemu-system-i386
|
||||||
|
MINIMUM_CPU_LINUX=pentium2
|
||||||
|
endif
|
||||||
|
|
||||||
|
if COND_i386_efi
|
||||||
|
QEMU32=qemu-system-i386
|
||||||
|
MINIMUM_CPU_LINUX=pentium2
|
||||||
|
endif
|
||||||
|
|
||||||
|
if COND_x86_64_efi
|
||||||
|
QEMU32=qemu-system-x86_64
|
||||||
|
MINIMUM_CPU_LINUX=core2duo
|
||||||
|
endif
|
||||||
|
|
||||||
|
linux.init.x86_64: $(srcdir)/grub-core/tests/boot/linux.init-x86_64.S $(srcdir)/grub-core/tests/boot/qemu-shutdown-x86.S
|
||||||
|
$(TARGET_CC) -o $@ $< -static -m64 -nostdlib -nostdinc -DSUCCESSFUL_BOOT_STRING=\"$(SUCCESSFUL_BOOT_STRING)\"
|
||||||
|
|
||||||
|
linux.init.i386: $(srcdir)/grub-core/tests/boot/linux.init-i386.S $(srcdir)/grub-core/tests/boot/qemu-shutdown-x86.S
|
||||||
|
$(TARGET_CC) -o $@ $< -static -m32 -nostdlib -nostdinc -DSUCCESSFUL_BOOT_STRING=\"$(SUCCESSFUL_BOOT_STRING)\"
|
||||||
|
|
||||||
|
linux.init.mips: $(srcdir)/grub-core/tests/boot/linux.init-mips.S
|
||||||
|
$(TARGET_CC) -o $@ $< -static -nostdlib -nostdinc -DSUCCESSFUL_BOOT_STRING=\"$(SUCCESSFUL_BOOT_STRING)\"
|
||||||
|
|
||||||
|
linux.init.ppc: $(srcdir)/grub-core/tests/boot/linux.init-ppc.S
|
||||||
|
$(TARGET_CC) -o $@ $< -static -nostdlib -nostdinc -DSUCCESSFUL_BOOT_STRING=\"$(SUCCESSFUL_BOOT_STRING)\"
|
||||||
|
|
||||||
|
linux.init.mipsel: $(srcdir)/grub-core/tests/boot/linux.init-mips.S
|
||||||
|
$(TARGET_CC) -o $@ $< -static -nostdlib -nostdinc -DSUCCESSFUL_BOOT_STRING=\"$(SUCCESSFUL_BOOT_STRING)\"
|
||||||
|
|
||||||
|
linux.init.loongson: $(srcdir)/grub-core/tests/boot/linux.init-mips.S
|
||||||
|
$(TARGET_CC) -o $@ $< -static -nostdlib -nostdinc -DSUCCESSFUL_BOOT_STRING=\"$(SUCCESSFUL_BOOT_STRING)\" -DREBOOT=1
|
||||||
|
|
||||||
|
multiboot.elf: $(srcdir)/grub-core/tests/boot/kernel-i386.S $(srcdir)/grub-core/tests/boot/qemu-shutdown-x86.S
|
||||||
|
$(TARGET_CC) -o $@ $< -DSUCCESSFUL_BOOT_STRING=\"$(SUCCESSFUL_BOOT_STRING)\" -static -ffreestanding -nostdlib -nostdinc -DTARGET_MULTIBOOT=1 -Wl,--build-id=none -Wl,-N -Wl,-Ttext,0x100000 -m32 -I$(srcdir)/include
|
||||||
|
|
||||||
|
kfreebsd.elf: $(srcdir)/grub-core/tests/boot/kernel-i386.S $(srcdir)/grub-core/tests/boot/qemu-shutdown-x86.S
|
||||||
|
$(TARGET_CC) -o $@ $< -DSUCCESSFUL_BOOT_STRING=\"$(SUCCESSFUL_BOOT_STRING)\" -static -ffreestanding -nostdlib -nostdinc -Wl,--build-id=none -Wl,-N -Wl,-Ttext,0x100000 -m32 -I$(srcdir)/include
|
||||||
|
|
||||||
|
kfreebsd.aout: kfreebsd.elf
|
||||||
|
$(TARGET_OBJCOPY) -O a.out-i386-linux $< $@ -j .text
|
||||||
|
|
||||||
|
pc-chainloader.elf: $(srcdir)/grub-core/tests/boot/kernel-8086.S $(srcdir)/grub-core/tests/boot/qemu-shutdown-x86.S
|
||||||
|
$(TARGET_CC) -o $@ $< -static -DTARGET_CHAINLOADER=1 -DSUCCESSFUL_BOOT_STRING=\"$(SUCCESSFUL_BOOT_STRING)\" -ffreestanding -nostdlib -nostdinc -Wl,--build-id=none -Wl,-N -Wl,-Ttext,0x7c00 -m32
|
||||||
|
|
||||||
|
pc-chainloader.bin: pc-chainloader.elf
|
||||||
|
$(TARGET_OBJCOPY) -O binary --strip-unneeded -R .note -R .comment -R .note.gnu.build-id -R .reginfo -R .rel.dyn -R .note.gnu.gold-version $< $@;
|
||||||
|
|
||||||
|
ntldr.elf: $(srcdir)/grub-core/tests/boot/kernel-8086.S $(srcdir)/grub-core/tests/boot/qemu-shutdown-x86.S
|
||||||
|
$(TARGET_CC) -o $@ $< -DTARGET_NTLDR=1 -DSUCCESSFUL_BOOT_STRING=\"$(SUCCESSFUL_BOOT_STRING)\" -static -ffreestanding -nostdlib -nostdinc -Wl,--build-id=none -Wl,-N -Wl,-Ttext,0 -m32
|
||||||
|
|
||||||
|
ntldr.bin: ntldr.elf
|
||||||
|
$(TARGET_OBJCOPY) -O binary --strip-unneeded -j .text $< $@;
|
||||||
|
|
||||||
|
multiboot2.elf: $(srcdir)/grub-core/tests/boot/kernel-i386.S $(srcdir)/grub-core/tests/boot/qemu-shutdown-x86.S
|
||||||
|
$(TARGET_CC) -static -o $@ $< -DSUCCESSFUL_BOOT_STRING=\"$(SUCCESSFUL_BOOT_STRING)\" -ffreestanding -nostdlib -nostdinc -Wl,--build-id=none -Wl,-N -Wl,-Ttext,0x100000 -m32 -I$(srcdir)/include -DTARGET_MULTIBOOT2=1
|
||||||
|
|
||||||
|
kfreebsd.init.x86_64: $(srcdir)/grub-core/tests/boot/kfreebsd.init-x86_64.S $(srcdir)/grub-core/tests/boot/qemu-shutdown-x86.S
|
||||||
|
$(TARGET_CC) -o $@ $< -m64 -static -nostdlib -nostdinc -DSUCCESSFUL_BOOT_STRING=\"$(SUCCESSFUL_BOOT_STRING)\" && freebsd-brandelf -t FreeBSD $@
|
||||||
|
|
||||||
|
kfreebsd.init.i386: $(srcdir)/grub-core/tests/boot/kfreebsd.init-i386.S $(srcdir)/grub-core/tests/boot/qemu-shutdown-x86.S
|
||||||
|
$(TARGET_CC) -o $@ $< -m32 -static -nostdlib -nostdinc -DSUCCESSFUL_BOOT_STRING=\"$(SUCCESSFUL_BOOT_STRING)\" && freebsd-brandelf -t FreeBSD $@
|
||||||
|
|
||||||
|
knetbsd.init.i386: $(srcdir)/grub-core/tests/boot/kbsd.init-i386.S $(srcdir)/grub-core/tests/boot/qemu-shutdown-x86.S
|
||||||
|
$(TARGET_CC) -o $@ $< -m32 -static -nostdlib -nostdinc -DTARGET_NETBSD=1 -DSUCCESSFUL_BOOT_STRING=\"$(SUCCESSFUL_BOOT_STRING)\"
|
||||||
|
|
||||||
|
kopenbsd.init.i386: $(srcdir)/grub-core/tests/boot/kbsd.init-i386.S $(srcdir)/grub-core/tests/boot/qemu-shutdown-x86.S
|
||||||
|
$(TARGET_CC) -o $@ $< -m32 -static -nostdlib -nostdinc -DTARGET_OPENBSD=1 -DSUCCESSFUL_BOOT_STRING=\"$(SUCCESSFUL_BOOT_STRING)\"
|
||||||
|
|
||||||
|
knetbsd.init.x86_64: $(srcdir)/grub-core/tests/boot/kbsd.init-x86_64.S $(srcdir)/grub-core/tests/boot/qemu-shutdown-x86.S
|
||||||
|
$(TARGET_CC) -o $@ $< -m64 -DTARGET_NETBSD=1 -static -nostdlib -nostdinc -DSUCCESSFUL_BOOT_STRING=\"$(SUCCESSFUL_BOOT_STRING)\"
|
||||||
|
|
||||||
|
kopenbsd.init.x86_64: $(srcdir)/grub-core/tests/boot/kbsd.init-x86_64.S $(srcdir)/grub-core/tests/boot/qemu-shutdown-x86.S
|
||||||
|
$(TARGET_CC) -o $@ $< -m64 -DTARGET_OPENBSD=1 -static -nostdlib -nostdinc -DSUCCESSFUL_BOOT_STRING=\"$(SUCCESSFUL_BOOT_STRING)\"
|
||||||
|
|
||||||
|
linux-initramfs.mips: linux.init.mips Makefile
|
||||||
|
TDIR=`mktemp -d "$${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"` && cp $< $$TDIR/init && (cd $$TDIR && echo ./init | cpio -R 0:0 --quiet --dereference -o -H newc) | gzip > $@ && rm -rf $$TDIR
|
||||||
|
|
||||||
|
linux-initramfs.ppc: linux.init.ppc Makefile
|
||||||
|
TDIR=`mktemp -d "$${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"` && cp $< $$TDIR/init && (cd $$TDIR && echo ./init | cpio -R 0:0 --quiet --dereference -o -H newc) | gzip > $@ && rm -rf $$TDIR
|
||||||
|
|
||||||
|
linux-initramfs.mipsel: linux.init.mipsel Makefile
|
||||||
|
TDIR=`mktemp -d "$${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"` && cp $< $$TDIR/init && (cd $$TDIR && echo ./init | cpio -R 0:0 --quiet --dereference -o -H newc) | gzip > $@ && rm -rf $$TDIR
|
||||||
|
|
||||||
|
linux-initramfs.loongson: linux.init.loongson Makefile
|
||||||
|
TDIR=`mktemp -d "$${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"` && cp $< $$TDIR/init && (cd $$TDIR && echo ./init | cpio -R 0:0 --quiet --dereference -o -H newc) | gzip > $@ && rm -rf $$TDIR
|
||||||
|
|
||||||
|
linux-initramfs.i386: linux.init.i386 Makefile
|
||||||
|
TDIR=`mktemp -d "$${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"` && cp $< $$TDIR/init && (cd $$TDIR && echo ./init | cpio -R 0:0 --quiet --dereference -o -H newc) | gzip > $@ && rm -rf $$TDIR
|
||||||
|
|
||||||
|
linux-initramfs.x86_64: linux.init.x86_64 Makefile
|
||||||
|
TDIR=`mktemp -d "$${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"` && cp $< $$TDIR/init && (cd $$TDIR && echo ./init | cpio -R 0:0 --quiet --dereference -o -H newc) | gzip > $@ && rm -rf $$TDIR
|
||||||
|
|
||||||
|
kfreebsd-mfsroot.i386.img: kfreebsd.init.i386 Makefile
|
||||||
|
TDIR=`mktemp -d "$${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"` && mkdir $$TDIR/dev && mkdir $$TDIR/sbin && cp $< $$TDIR/sbin/init && makefs -t ffs -s 30m -f 1000 -o minfree=0,version=1 $@ $$TDIR && rm -rf $$TDIR
|
||||||
|
|
||||||
|
knetbsd.image.i386: knetbsd.init.i386 $(srcdir)/grub-core/tests/boot/kbsd.spec.txt
|
||||||
|
TDIR=`mktemp -d "$${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"` && mkdir $$TDIR/dev && mkdir $$TDIR/sbin && cp $< $$TDIR/sbin/init && makefs -F $(srcdir)/grub-core/tests/boot/kbsd.spec.txt -t ffs -s 64k -f 10 -o minfree=0,version=1 $@ $$TDIR && rm -rf $$TDIR
|
||||||
|
|
||||||
|
kopenbsd.image.i386: kopenbsd.init.i386 $(srcdir)/grub-core/tests/boot/kopenbsdlabel.txt
|
||||||
|
TDIR=`mktemp -d "$${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"` && mkdir $$TDIR/dev && mkdir $$TDIR/sbin && cp $< $$TDIR/sbin/init && makefs -F $(srcdir)/grub-core/tests/boot/kbsd.spec.txt -t ffs -s 128k -f 10 -o minfree=0,version=1 $@ $$TDIR && bsdlabel -f -R $@ $(srcdir)/grub-core/tests/boot/kopenbsdlabel.txt && rm -rf $$TDIR || rm -f $@
|
||||||
|
|
||||||
|
kopenbsd.image.x86_64: kopenbsd.init.x86_64 $(srcdir)/grub-core/tests/boot/kopenbsdlabel.txt
|
||||||
|
TDIR=`mktemp -d "$${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"` && mkdir $$TDIR/dev && mkdir $$TDIR/sbin && cp $< $$TDIR/sbin/init && makefs -F $(srcdir)/grub-core/tests/boot/kbsd.spec.txt -t ffs -s 128k -f 10 -o minfree=0,version=1 $@ $$TDIR && bsdlabel -f -R $@ $(srcdir)/grub-core/tests/boot/kopenbsdlabel.txt && rm -rf $$TDIR || rm -f $@
|
||||||
|
|
||||||
|
knetbsd.miniroot-image.i386.img: knetbsd.image.i386 $(GRUB_PAYLOADS_DIR)/knetbsd.miniroot.i386
|
||||||
|
$(TARGET_OBJCOPY) --add-section=miniroot=$< $(GRUB_PAYLOADS_DIR)/knetbsd.miniroot.i386 $@
|
||||||
|
|
||||||
|
kfreebsd-mfsroot.x86_64.img: kfreebsd.init.x86_64 Makefile
|
||||||
|
TDIR=`mktemp -d "$${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"` && mkdir $$TDIR/dev && mkdir $$TDIR/sbin && cp $< $$TDIR/sbin/init && makefs -t ffs -s 30m -f 1000 -o minfree=0,version=1 $@ $$TDIR && rm -rf $$TDIR
|
||||||
|
|
||||||
|
knetbsd.image.x86_64: knetbsd.init.x86_64 $(srcdir)/grub-core/tests/boot/kbsd.spec.txt
|
||||||
|
TDIR=`mktemp -d "$${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"` && mkdir $$TDIR/dev && mkdir $$TDIR/sbin && cp $< $$TDIR/sbin/init && makefs -F $(srcdir)/grub-core/tests/boot/kbsd.spec.txt -t ffs -s 64k -f 10 -o minfree=0,version=1 $@ $$TDIR && rm -rf $$TDIR
|
||||||
|
|
||||||
|
knetbsd.miniroot-image.x86_64.img: knetbsd.image.x86_64 $(GRUB_PAYLOADS_DIR)/knetbsd.miniroot.x86_64
|
||||||
|
$(TARGET_OBJCOPY) --add-section=miniroot=$< $(GRUB_PAYLOADS_DIR)/knetbsd.miniroot.x86_64 $@
|
||||||
|
|
||||||
|
CLEANFILES += linux.init.i386 kfreebsd.init.i386 linux.init.x86_64 linux-initramfs.i386 linux-initramfs.x86_64
|
||||||
|
|
||||||
|
kfreebsd-mfsroot.i386.gz: kfreebsd-mfsroot.i386.img
|
||||||
|
gzip < $< > $@
|
||||||
|
|
||||||
|
bootcheck-kfreebsd-i386: kfreebsd-mfsroot.i386.gz $(GRUB_PAYLOADS_DIR)/kfreebsd.i386 $(GRUB_PAYLOADS_DIR)/kfreebsd_env.i386 $(srcdir)/grub-core/tests/boot/kfreebsd.cfg grub-shell
|
||||||
|
./grub-shell --timeout=$(BOOTCHECK_TIMEOUT) --qemu=$(QEMU32) --files=/mfsroot.gz=kfreebsd-mfsroot.i386.gz --files=/kfreebsd=$(GRUB_PAYLOADS_DIR)/kfreebsd.i386 --files=/kfreebsd_env=$(GRUB_PAYLOADS_DIR)/kfreebsd_env.i386 $(srcdir)/grub-core/tests/boot/kfreebsd.cfg | grep $(SUCCESSFUL_BOOT_STRING) > /dev/null
|
||||||
|
|
||||||
|
kfreebsd-mfsroot.x86_64.gz: kfreebsd-mfsroot.x86_64.img
|
||||||
|
gzip < $< > $@
|
||||||
|
|
||||||
|
bootcheck-kfreebsd-x86_64: kfreebsd-mfsroot.x86_64.gz $(GRUB_PAYLOADS_DIR)/kfreebsd.x86_64 $(GRUB_PAYLOADS_DIR)/kfreebsd_env.x86_64 $(srcdir)/grub-core/tests/boot/kfreebsd.cfg grub-shell
|
||||||
|
./grub-shell --timeout=$(BOOTCHECK_TIMEOUT) --qemu=qemu-system-x86_64 --files=/mfsroot.gz=kfreebsd-mfsroot.x86_64.gz --files=/kfreebsd=$(GRUB_PAYLOADS_DIR)/kfreebsd.x86_64 --files=/kfreebsd_env=$(GRUB_PAYLOADS_DIR)/kfreebsd_env.x86_64 $(srcdir)/grub-core/tests/boot/kfreebsd.cfg | grep $(SUCCESSFUL_BOOT_STRING) > /dev/null
|
||||||
|
|
||||||
|
knetbsd.miniroot-image.i386.gz: knetbsd.miniroot-image.i386.img
|
||||||
|
gzip < $< > $@
|
||||||
|
|
||||||
|
bootcheck-knetbsd-i386: knetbsd.miniroot-image.i386.gz $(GRUB_PAYLOADS_DIR)/knetbsd.i386 $(srcdir)/grub-core/tests/boot/knetbsd.cfg grub-shell
|
||||||
|
./grub-shell --timeout=$(BOOTCHECK_TIMEOUT) --qemu=$(QEMU32) --files=/miniroot.gz=knetbsd.miniroot-image.i386.gz --files=/knetbsd=$(GRUB_PAYLOADS_DIR)/knetbsd.i386 $(srcdir)/grub-core/tests/boot/knetbsd.cfg | grep $(SUCCESSFUL_BOOT_STRING) > /dev/null
|
||||||
|
|
||||||
|
bootcheck-kopenbsd-i386: kopenbsd.image.i386 $(GRUB_PAYLOADS_DIR)/kopenbsd.i386 $(srcdir)/grub-core/tests/boot/kopenbsd.cfg grub-shell
|
||||||
|
./grub-shell --timeout=$(BOOTCHECK_TIMEOUT) --qemu=$(QEMU32) --files=/ramdisk=kopenbsd.image.i386 --files=/kopenbsd=$(GRUB_PAYLOADS_DIR)/kopenbsd.i386 $(srcdir)/grub-core/tests/boot/kopenbsd.cfg | grep $(SUCCESSFUL_BOOT_STRING) > /dev/null
|
||||||
|
|
||||||
|
bootcheck-kopenbsd-x86_64: kopenbsd.image.x86_64 $(GRUB_PAYLOADS_DIR)/kopenbsd.x86_64 $(srcdir)/grub-core/tests/boot/kopenbsd.cfg grub-shell
|
||||||
|
./grub-shell --timeout=$(BOOTCHECK_TIMEOUT) --qemu=qemu-system-x86_64 --files=/ramdisk=kopenbsd.image.x86_64 --files=/kopenbsd=$(GRUB_PAYLOADS_DIR)/kopenbsd.x86_64 $(srcdir)/grub-core/tests/boot/kopenbsd.cfg | grep $(SUCCESSFUL_BOOT_STRING) > /dev/null
|
||||||
|
|
||||||
|
knetbsd.miniroot-image.x86_64.gz: knetbsd.miniroot-image.x86_64.img
|
||||||
|
gzip < $< > $@
|
||||||
|
|
||||||
|
bootcheck-knetbsd-x86_64: knetbsd.miniroot-image.x86_64.gz $(GRUB_PAYLOADS_DIR)/knetbsd.x86_64 $(srcdir)/grub-core/tests/boot/knetbsd.cfg grub-shell
|
||||||
|
./grub-shell --timeout=$(BOOTCHECK_TIMEOUT) --qemu=qemu-system-x86_64 --files=/miniroot.gz=knetbsd.miniroot-image.x86_64.gz --files=/knetbsd=$(GRUB_PAYLOADS_DIR)/knetbsd.x86_64 $(srcdir)/grub-core/tests/boot/knetbsd.cfg | grep $(SUCCESSFUL_BOOT_STRING) > /dev/null
|
||||||
|
|
||||||
|
bootcheck-linux-i386: linux-initramfs.i386 $(GRUB_PAYLOADS_DIR)/linux.i386 $(srcdir)/grub-core/tests/boot/linux.cfg grub-shell
|
||||||
|
./grub-shell --timeout=$(BOOTCHECK_TIMEOUT) --qemu=$(QEMU32) --files=/initrd=linux-initramfs.i386 --files=/linux=$(GRUB_PAYLOADS_DIR)/linux.i386 $(srcdir)/grub-core/tests/boot/linux.cfg --qemu-opts="-cpu $(MINIMUM_CPU_LINUX)" | grep $(SUCCESSFUL_BOOT_STRING) > /dev/null
|
||||||
|
|
||||||
|
bootcheck-linux-x86_64: linux-initramfs.x86_64 $(GRUB_PAYLOADS_DIR)/linux.x86_64 $(srcdir)/grub-core/tests/boot/linux.cfg grub-shell
|
||||||
|
./grub-shell --timeout=$(BOOTCHECK_TIMEOUT) --qemu=qemu-system-x86_64 --files=/initrd=linux-initramfs.x86_64 --files=/linux=$(GRUB_PAYLOADS_DIR)/linux.x86_64 $(srcdir)/grub-core/tests/boot/linux.cfg | grep $(SUCCESSFUL_BOOT_STRING) > /dev/null
|
||||||
|
|
||||||
|
bootcheck-linux-mips: linux-initramfs.mips $(GRUB_PAYLOADS_DIR)/linux.mips $(srcdir)/grub-core/tests/boot/linux.cfg grub-shell
|
||||||
|
./grub-shell --timeout=$(BOOTCHECK_TIMEOUT) --files=/initrd=linux-initramfs.mips --files=/linux=$(GRUB_PAYLOADS_DIR)/linux.mips $(srcdir)/grub-core/tests/boot/linux.cfg | grep $(SUCCESSFUL_BOOT_STRING) > /dev/null
|
||||||
|
|
||||||
|
bootcheck-linux-ppc: linux-initramfs.ppc $(GRUB_PAYLOADS_DIR)/linux.ppc $(srcdir)/grub-core/tests/boot/linux.cfg grub-shell
|
||||||
|
./grub-shell --timeout=$(BOOTCHECK_TIMEOUT) --files=/initrd=linux-initramfs.ppc --files=/linux=$(GRUB_PAYLOADS_DIR)/linux.ppc $(srcdir)/grub-core/tests/boot/linux-ppc.cfg | grep $(SUCCESSFUL_BOOT_STRING) > /dev/null
|
||||||
|
|
||||||
|
bootcheck-linux-mipsel: linux-initramfs.mipsel $(GRUB_PAYLOADS_DIR)/linux.mipsel $(srcdir)/grub-core/tests/boot/linux.cfg grub-shell
|
||||||
|
./grub-shell --timeout=$(BOOTCHECK_TIMEOUT) --files=/initrd=linux-initramfs.mipsel --files=/linux=$(GRUB_PAYLOADS_DIR)/linux.mipsel $(srcdir)/grub-core/tests/boot/linux.cfg | grep $(SUCCESSFUL_BOOT_STRING) > /dev/null
|
||||||
|
|
||||||
|
bootcheck-linux-loongson: linux-initramfs.loongson $(GRUB_PAYLOADS_DIR)/linux.loongson $(srcdir)/grub-core/tests/boot/linux.cfg grub-shell
|
||||||
|
./grub-shell --timeout=$(BOOTCHECK_TIMEOUT) --files=/initrd=linux-initramfs.loongson --files=/linux=$(GRUB_PAYLOADS_DIR)/linux.loongson $(srcdir)/grub-core/tests/boot/linux.cfg | grep $(SUCCESSFUL_BOOT_STRING) > /dev/null
|
||||||
|
|
||||||
|
bootcheck-linux16-i386: linux-initramfs.i386 $(GRUB_PAYLOADS_DIR)/linux.i386 $(srcdir)/grub-core/tests/boot/linux.cfg grub-shell
|
||||||
|
./grub-shell --timeout=$(BOOTCHECK_TIMEOUT) --qemu=$(QEMU32) --files=/initrd=linux-initramfs.i386 --files=/linux=$(GRUB_PAYLOADS_DIR)/linux.i386 $(srcdir)/grub-core/tests/boot/linux16.cfg | grep $(SUCCESSFUL_BOOT_STRING) > /dev/null
|
||||||
|
|
||||||
|
bootcheck-linux16-x86_64: linux-initramfs.x86_64 $(GRUB_PAYLOADS_DIR)/linux.x86_64 $(srcdir)/grub-core/tests/boot/linux.cfg grub-shell
|
||||||
|
./grub-shell --timeout=$(BOOTCHECK_TIMEOUT) --qemu=qemu-system-x86_64 --files=/initrd=linux-initramfs.x86_64 --files=/linux=$(GRUB_PAYLOADS_DIR)/linux.x86_64 $(srcdir)/grub-core/tests/boot/linux16.cfg | grep $(SUCCESSFUL_BOOT_STRING) > /dev/null
|
||||||
|
|
||||||
|
bootcheck-multiboot: multiboot.elf $(srcdir)/grub-core/tests/boot/multiboot.cfg grub-shell
|
||||||
|
./grub-shell --timeout=$(BOOTCHECK_TIMEOUT) --qemu=$(QEMU32) --files=/multiboot.elf=multiboot.elf $(srcdir)/grub-core/tests/boot/multiboot.cfg | grep $(SUCCESSFUL_BOOT_STRING) > /dev/null
|
||||||
|
|
||||||
|
bootcheck-multiboot2: multiboot2.elf $(srcdir)/grub-core/tests/boot/multiboot2.cfg grub-shell
|
||||||
|
./grub-shell --timeout=$(BOOTCHECK_TIMEOUT) --qemu=$(QEMU32) --files=/multiboot2.elf=multiboot2.elf $(srcdir)/grub-core/tests/boot/multiboot2.cfg | grep $(SUCCESSFUL_BOOT_STRING) > /dev/null
|
||||||
|
|
||||||
|
bootcheck-kfreebsd-aout: kfreebsd.aout $(srcdir)/grub-core/tests/boot/kfreebsd-aout.cfg grub-shell
|
||||||
|
./grub-shell --timeout=$(BOOTCHECK_TIMEOUT) --qemu=$(QEMU32) --files=/kfreebsd.aout=kfreebsd.aout $(srcdir)/grub-core/tests/boot/kfreebsd-aout.cfg | grep $(SUCCESSFUL_BOOT_STRING) > /dev/null
|
||||||
|
|
||||||
|
bootcheck-pc-chainloader: pc-chainloader.bin $(srcdir)/grub-core/tests/boot/pc-chainloader.cfg grub-shell
|
||||||
|
./grub-shell --timeout=$(BOOTCHECK_TIMEOUT) --qemu=$(QEMU32) --files=/pc-chainloader.bin=pc-chainloader.bin $(srcdir)/grub-core/tests/boot/pc-chainloader.cfg | grep $(SUCCESSFUL_BOOT_STRING) > /dev/null
|
||||||
|
|
||||||
|
bootcheck-ntldr: ntldr.bin $(srcdir)/grub-core/tests/boot/ntldr.cfg grub-shell
|
||||||
|
./grub-shell --timeout=$(BOOTCHECK_TIMEOUT) --qemu=$(QEMU32) --files=/ntldr.bin=ntldr.bin $(srcdir)/grub-core/tests/boot/ntldr.cfg | grep $(SUCCESSFUL_BOOT_STRING) > /dev/null
|
||||||
|
|
||||||
|
if COND_i386_efi
|
||||||
|
# NetBSD has no support for finding ACPI on EFI
|
||||||
|
BOOTCHECKS = bootcheck-kfreebsd-aout bootcheck-kopenbsd-i386 bootcheck-kopenbsd-x86_64 bootcheck-multiboot bootcheck-multiboot2 bootcheck-linux-i386 bootcheck-linux-x86_64 bootcheck-kfreebsd-x86_64 bootcheck-kfreebsd-i386
|
||||||
|
endif
|
||||||
|
|
||||||
|
if COND_x86_64_efi
|
||||||
|
# NetBSD has no support for finding ACPI on EFI
|
||||||
|
BOOTCHECKS = bootcheck-kfreebsd-aout bootcheck-kopenbsd-i386 bootcheck-kopenbsd-x86_64 bootcheck-multiboot bootcheck-multiboot2 bootcheck-linux-i386 bootcheck-linux-x86_64 bootcheck-kfreebsd-x86_64 bootcheck-kfreebsd-i386
|
||||||
|
endif
|
||||||
|
|
||||||
|
if COND_i386_multiboot
|
||||||
|
# *BSD requires ACPI
|
||||||
|
BOOTCHECKS = bootcheck-kfreebsd-aout bootcheck-multiboot bootcheck-multiboot2 bootcheck-linux-i386 bootcheck-linux-x86_64
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
|
if COND_i386_qemu
|
||||||
|
# *BSD requires ACPI
|
||||||
|
BOOTCHECKS = bootcheck-kfreebsd-aout bootcheck-multiboot bootcheck-multiboot2 bootcheck-linux-i386 bootcheck-linux-x86_64
|
||||||
|
endif
|
||||||
|
|
||||||
|
if COND_i386_coreboot
|
||||||
|
BOOTCHECKS = bootcheck-kfreebsd-aout bootcheck-kopenbsd-i386 bootcheck-kopenbsd-x86_64 bootcheck-multiboot bootcheck-multiboot2 bootcheck-linux-i386 bootcheck-linux-x86_64 bootcheck-knetbsd-x86_64 bootcheck-kfreebsd-x86_64 bootcheck-kfreebsd-i386
|
||||||
|
endif
|
||||||
|
|
||||||
|
if COND_i386_ieee1275
|
||||||
|
# *BSD requires ACPI
|
||||||
|
#legacy protocol (linux16) makes early BIOS calls.
|
||||||
|
BOOTCHECKS = bootcheck-kfreebsd-aout bootcheck-multiboot bootcheck-multiboot2 bootcheck-linux-i386 bootcheck-linux-x86_64
|
||||||
|
endif
|
||||||
|
|
||||||
|
if COND_i386_pc
|
||||||
|
#pc chainloader by definition is only for i386-pc
|
||||||
|
#ntldr and bootmgr require BIOS.
|
||||||
|
#legacy protocol (linux16) makes early BIOS calls.
|
||||||
|
# 32-bit NetBSD crashes early on non-BIOS
|
||||||
|
BOOTCHECKS = bootcheck-kfreebsd-aout bootcheck-kopenbsd-i386 bootcheck-kopenbsd-x86_64 bootcheck-multiboot bootcheck-multiboot2 bootcheck-linux-i386 bootcheck-linux-x86_64 bootcheck-knetbsd-x86_64 bootcheck-kfreebsd-x86_64 bootcheck-kfreebsd-i386 bootcheck-pc-chainloader bootcheck-ntldr bootcheck-linux16-i386 bootcheck-linux16-x86_64 bootcheck-knetbsd-i386
|
||||||
|
endif
|
||||||
|
|
||||||
|
if COND_mips_loongson
|
||||||
|
BOOTCHECKS = bootcheck-linux-loongson
|
||||||
|
endif
|
||||||
|
|
||||||
|
if COND_mipsel
|
||||||
|
if COND_mips_qemu_mips
|
||||||
|
BOOTCHECKS = bootcheck-linux-mipsel
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
if COND_mipseb
|
||||||
|
if COND_mips_qemu_mips
|
||||||
|
BOOTCHECKS = bootcheck-linux-mips
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
if COND_powerpc_ieee1275
|
||||||
|
BOOTCHECKS = bootcheck-linux-ppc
|
||||||
|
endif
|
||||||
|
|
||||||
|
.PHONY: bootcheck-linux-i386 bootcheck-linux-x86_64 \
|
||||||
|
bootcheck-kfreebsd-i386 bootcheck-kfreebsd-x86_64 \
|
||||||
|
bootcheck-knetbsd-i386 bootcheck-knetbsd-x86_64 \
|
||||||
|
bootcheck-linux-mips FORCE
|
||||||
|
|
||||||
|
# Randomly generated
|
||||||
|
SUCCESSFUL_BOOT_STRING=3e49994fd5d82b7c9298d672d774080d
|
||||||
|
# tianocore cd access is very slow
|
||||||
|
BOOTCHECK_TIMEOUT=180
|
||||||
|
|
||||||
|
bootcheck: $(BOOTCHECKS)
|
||||||
|
|
||||||
|
if COND_i386_coreboot
|
||||||
|
FS_PAYLOAD_MODULES ?= $(shell cat grub-core/fs.lst)
|
||||||
|
default_payload.elf: grub-mkstandalone grub-mkimage FORCE
|
||||||
|
test -f $@ && rm $@ || true
|
||||||
|
pkgdatadir=. ./grub-mkstandalone --grub-mkimage=./grub-mkimage -O i386-coreboot -o $@ --modules='ahci pata ehci uhci ohci usb_keyboard usbms part_msdos ext2 fat at_keyboard part_gpt usbserial_usbdebug cbfs' --install-modules='ls linux search configfile normal cbtime cbls memrw iorw minicmd lsmmap lspci halt reboot hexdump pcidump regexp setpci lsacpi chain test serial multiboot cbmemc linux16 gzio echo help syslinuxcfg xnu $(FS_PAYLOAD_MODULES) password_pbkdf2 $(EXTRA_PAYLOAD_MODULES)' --fonts= --themes= --locales= -d grub-core/ /boot/grub/grub.cfg=$(srcdir)/coreboot.cfg
|
||||||
|
endif
|
||||||
|
|
||||||
|
endif
|
||||||
|
|
||||||
|
EXTRA_DIST += grub-core/tests/boot/kbsd.init-i386.S grub-core/tests/boot/kbsd.init-x86_64.S grub-core/tests/boot/kbsd.spec.txt grub-core/tests/boot/kernel-8086.S grub-core/tests/boot/kernel-i386.S grub-core/tests/boot/kfreebsd-aout.cfg grub-core/tests/boot/kfreebsd.cfg grub-core/tests/boot/kfreebsd.init-i386.S grub-core/tests/boot/kfreebsd.init-x86_64.S grub-core/tests/boot/knetbsd.cfg grub-core/tests/boot/kopenbsd.cfg grub-core/tests/boot/kopenbsdlabel.txt grub-core/tests/boot/linux16.cfg grub-core/tests/boot/linux.cfg grub-core/tests/boot/linux.init-i386.S grub-core/tests/boot/linux.init-mips.S grub-core/tests/boot/linux.init-ppc.S grub-core/tests/boot/linux.init-x86_64.S grub-core/tests/boot/linux-ppc.cfg grub-core/tests/boot/multiboot2.cfg grub-core/tests/boot/multiboot.cfg grub-core/tests/boot/ntldr.cfg grub-core/tests/boot/pc-chainloader.cfg grub-core/tests/boot/qemu-shutdown-x86.S
|
||||||
|
|
||||||
|
windowsdir=$(top_builddir)/$(PACKAGE)-$(VERSION)-for-windows
|
||||||
|
windowsdir: $(PROGRAMS) $(starfield_DATA) $(platform_DATA)
|
||||||
|
test -d $(windowsdir) && rm -rf $(windowsdir) || true
|
||||||
|
test -d $(windowsdir) || mkdir $(windowsdir)
|
||||||
|
$(MAKE) -C po $(AM_MAKEFLAGS) windowsdir
|
||||||
|
$(MAKE) -C grub-core $(AM_MAKEFLAGS) windowsdir
|
||||||
|
test -d $(windowsdir)/themes || mkdir $(windowsdir)/themes
|
||||||
|
test -d $(windowsdir)/themes/starfield || mkdir $(windowsdir)/themes/starfield
|
||||||
|
for x in $(PROGRAMS); do \
|
||||||
|
if [ x$(STRIP) != x ]; then $(STRIP) $$x -o $(windowsdir)/$$x; \
|
||||||
|
else cp -fp $$x $(windowsdir)/$$x; fi; \
|
||||||
|
done
|
||||||
|
for x in $(pkgdata_DATA); do \
|
||||||
|
cp -fp $$x $(windowsdir)/$$x; \
|
||||||
|
done
|
||||||
|
for x in $(starfield_DATA); do \
|
||||||
|
cp -fp $$x $(windowsdir)/themes/starfield/$$(basename $$x); \
|
||||||
|
done
|
||||||
|
for x in $(GRUB_WINDOWS_EXTRA_DIST); do \
|
||||||
|
cp -fp $$x $(windowsdir); \
|
||||||
|
done
|
||||||
|
|
||||||
|
windowszip=$(top_builddir)/$(PACKAGE)-$(VERSION)-for-windows.zip
|
||||||
|
windowszip: windowsdir
|
||||||
|
test -f $(windowszip) && rm $(windowszip) || true
|
||||||
|
zip -r $(windowszip) $(windowsdir)
|
||||||
|
rm -rf $(windowsdir)
|
||||||
|
|
||||||
|
EXTRA_DIST += linguas.sh
|
||||||
|
|
||||||
|
changelog_start_date = 2015-01-23
|
||||||
|
gitlog_to_changelog = $(top_srcdir)/build-aux/gitlog-to-changelog
|
||||||
|
|
||||||
|
ChangeLog: FORCE
|
||||||
|
if test -d $(top_srcdir)/.git; then \
|
||||||
|
$(gitlog_to_changelog) --srcdir=$(top_srcdir) --since=$(changelog_start_date) > '$@.tmp'; \
|
||||||
|
rm -f '$@'; mv '$@.tmp' '$@'; \
|
||||||
|
else \
|
||||||
|
touch $@; \
|
||||||
|
fi
|
||||||
|
|
||||||
|
syslinux_test: $(top_builddir)/config.status tests/syslinux/ubuntu10.04_grub.cfg
|
||||||
|
|
||||||
|
# Mimic simplify_filename from grub-core/lib/syslinux_parse.c, so that we
|
||||||
|
# can predict its behaviour in tests. We have to pre-substitute this before
|
||||||
|
# calling config.status, as config.status offers no reliable way to hook in
|
||||||
|
# a command between setting ac_abs_top_srcdir and emitting output files.
|
||||||
|
tests/syslinux/ubuntu10.04_grub.cfg: $(top_builddir)/config.status tests/syslinux/ubuntu10.04_grub.cfg.in
|
||||||
|
simplified_abs_top_srcdir=`echo "$(abs_top_srcdir)" | sed 's,//,/,g; s,/\./,/,g; :loop; s,/[^/][^/]*/\.\.\(/\|$$\),\1,; t loop'`; \
|
||||||
|
sed "s,@simplified_abs_top_srcdir@,$$simplified_abs_top_srcdir,g" $(srcdir)/tests/syslinux/ubuntu10.04_grub.cfg.in | $(top_builddir)/config.status --file=$@:-
|
||||||
|
CLEANFILES += tests/syslinux/ubuntu10.04_grub.cfg
|
||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,31 @@
|
|||||||
|
AutoGen definitions Makefile.tpl;
|
||||||
|
|
||||||
|
library = {
|
||||||
|
name = libgrubgcry.a;
|
||||||
|
cflags = '$(CFLAGS_GCRY)';
|
||||||
|
cppflags = '$(CPPFLAGS_GCRY)';
|
||||||
|
extra_dist = grub-core/lib/libgcrypt-grub/cipher/ChangeLog;
|
||||||
|
|
||||||
|
common = grub-core/lib/libgcrypt-grub/cipher/arcfour.c;
|
||||||
|
common = grub-core/lib/libgcrypt-grub/cipher/blowfish.c;
|
||||||
|
common = grub-core/lib/libgcrypt-grub/cipher/camellia-glue.c;
|
||||||
|
common = grub-core/lib/libgcrypt-grub/cipher/camellia.c;
|
||||||
|
common = grub-core/lib/libgcrypt-grub/cipher/cast5.c;
|
||||||
|
common = grub-core/lib/libgcrypt-grub/cipher/crc.c;
|
||||||
|
common = grub-core/lib/libgcrypt-grub/cipher/des.c;
|
||||||
|
common = grub-core/lib/libgcrypt-grub/cipher/idea.c;
|
||||||
|
common = grub-core/lib/libgcrypt-grub/cipher/md4.c;
|
||||||
|
common = grub-core/lib/libgcrypt-grub/cipher/md5.c;
|
||||||
|
common = grub-core/lib/libgcrypt-grub/cipher/rfc2268.c;
|
||||||
|
common = grub-core/lib/libgcrypt-grub/cipher/rijndael.c;
|
||||||
|
common = grub-core/lib/libgcrypt-grub/cipher/rmd160.c;
|
||||||
|
common = grub-core/lib/libgcrypt-grub/cipher/seed.c;
|
||||||
|
common = grub-core/lib/libgcrypt-grub/cipher/serpent.c;
|
||||||
|
common = grub-core/lib/libgcrypt-grub/cipher/sha1.c;
|
||||||
|
common = grub-core/lib/libgcrypt-grub/cipher/sha256.c;
|
||||||
|
common = grub-core/lib/libgcrypt-grub/cipher/sha512.c;
|
||||||
|
common = grub-core/lib/libgcrypt-grub/cipher/tiger.c;
|
||||||
|
common = grub-core/lib/libgcrypt-grub/cipher/twofish.c;
|
||||||
|
common = grub-core/lib/libgcrypt-grub/cipher/whirlpool.c;
|
||||||
|
common = grub-core/lib/libgcrypt-grub/cipher/init.c;
|
||||||
|
};
|
||||||
@@ -0,0 +1,755 @@
|
|||||||
|
New in 2.12:
|
||||||
|
|
||||||
|
* GCC 13 support.
|
||||||
|
* clang 14 support.
|
||||||
|
* binutils 2.38 support.
|
||||||
|
* Unification of EFI Linux kernel loader across architectures.
|
||||||
|
* Transition to EFI Linux kernel stub loader for x86 architecture.
|
||||||
|
* Initial support for Boot Loader Interface.
|
||||||
|
* Support for dynamic GRUB runtime memory addition using firmware calls.
|
||||||
|
* PCI and MMIO UARTs support.
|
||||||
|
* SDL2 support.
|
||||||
|
* LoongArch support.
|
||||||
|
* TPM driver fixes.
|
||||||
|
* Many filesystems fixes.
|
||||||
|
* Many CVE and Coverity fixes.
|
||||||
|
* Debugging support improvements.
|
||||||
|
* Tests improvements.
|
||||||
|
* Documentation improvements.
|
||||||
|
* ...and tons of other fixes and cleanups...
|
||||||
|
|
||||||
|
New in 2.06:
|
||||||
|
|
||||||
|
* GCC 10 support.
|
||||||
|
* clang 10 support.
|
||||||
|
* SBAT support.
|
||||||
|
* LUKS2 support.
|
||||||
|
* Drop small MBR gap support.
|
||||||
|
* Xen Security Modules (XSM/FLASK) support.
|
||||||
|
* The lockdown mechanism similar to the Linux kernel one.
|
||||||
|
* Disable the os-prober by default.
|
||||||
|
* Many backports of GRUB distros specific patches.
|
||||||
|
* BootHole and BootHole2 fixes.
|
||||||
|
* ...and tons of other fixes and cleanups...
|
||||||
|
|
||||||
|
New in 2.04:
|
||||||
|
|
||||||
|
* GCC 8 and 9 support.
|
||||||
|
* Gnulib integration overhaul.
|
||||||
|
* RISC-V support.
|
||||||
|
* Xen PVH support.
|
||||||
|
* Native UEFI secure boot support.
|
||||||
|
* UEFI TPM driver.
|
||||||
|
* New IEEE 1275 obdisk driver.
|
||||||
|
* Btrfs RAID 5 and RIAD 6 support.
|
||||||
|
* PARTUUID support.
|
||||||
|
* VLAN support.
|
||||||
|
* Native DHCP support.
|
||||||
|
* Many ARM and ARM64 fixes.
|
||||||
|
* Many SPARC fixes.
|
||||||
|
* Many IEEE 1275 fixes.
|
||||||
|
* ...and tons of other fixes and cleanups...
|
||||||
|
|
||||||
|
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' and `lsefi' 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.
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
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.
|
||||||
|
|
||||||
|
See the file MAINTAINERS for information about the GRUB maintainers, etc.
|
||||||
|
|
||||||
|
If you found a security vulnerability in the GRUB please check the SECURITY
|
||||||
|
file to get more information how to properly report this kind of bugs to
|
||||||
|
the maintainers.
|
||||||
|
|
||||||
|
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'
|
||||||
@@ -0,0 +1,38 @@
|
|||||||
|
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.
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
|
||||||
|
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
|
||||||
Binary file not shown.
@@ -0,0 +1,511 @@
|
|||||||
|
dnl Redefine AC_LANG_PROGRAM with a "-Wstrict-prototypes -Werror"-friendly
|
||||||
|
dnl version. Patch submitted to bug-autoconf in 2009-09-16.
|
||||||
|
m4_define([AC_LANG_PROGRAM(C)],
|
||||||
|
[$1
|
||||||
|
int
|
||||||
|
main (void)
|
||||||
|
{
|
||||||
|
dnl Do *not* indent the following line: there may be CPP directives.
|
||||||
|
dnl Don't move the `;' right after for the same reason.
|
||||||
|
$2
|
||||||
|
;
|
||||||
|
return 0;
|
||||||
|
}])
|
||||||
|
|
||||||
|
|
||||||
|
dnl Check whether target compiler is working
|
||||||
|
AC_DEFUN([grub_PROG_TARGET_CC],
|
||||||
|
[AC_MSG_CHECKING([whether target compiler is working])
|
||||||
|
AC_CACHE_VAL(grub_cv_prog_target_cc,
|
||||||
|
[AC_LINK_IFELSE([AC_LANG_PROGRAM([[
|
||||||
|
asm (".globl start; start:");
|
||||||
|
void __main (void);
|
||||||
|
void __main (void) {}
|
||||||
|
int main (void);
|
||||||
|
]], [[]])],
|
||||||
|
[grub_cv_prog_target_cc=yes],
|
||||||
|
[grub_cv_prog_target_cc=no])
|
||||||
|
])
|
||||||
|
AC_MSG_RESULT([$grub_cv_prog_target_cc])
|
||||||
|
|
||||||
|
if test "x$grub_cv_prog_target_cc" = xno; then
|
||||||
|
AC_MSG_ERROR([cannot compile for the target])
|
||||||
|
fi
|
||||||
|
])
|
||||||
|
|
||||||
|
|
||||||
|
dnl grub_ASM_USCORE checks if C symbols get an underscore after
|
||||||
|
dnl compiling to assembler.
|
||||||
|
dnl Written by Pavel Roskin. Based on grub_ASM_EXT_C written by
|
||||||
|
dnl Erich Boleyn and modified by Yoshinori K. Okuji.
|
||||||
|
AC_DEFUN([grub_ASM_USCORE],
|
||||||
|
[AC_REQUIRE([AC_PROG_CC])
|
||||||
|
AC_REQUIRE([AC_PROG_EGREP])
|
||||||
|
AC_MSG_CHECKING([if C symbols get an underscore after compilation])
|
||||||
|
AC_CACHE_VAL(grub_cv_asm_uscore,
|
||||||
|
[cat > conftest.c <<\EOF
|
||||||
|
int func (int *);
|
||||||
|
int
|
||||||
|
func (int *list)
|
||||||
|
{
|
||||||
|
*list = 0;
|
||||||
|
return *list;
|
||||||
|
}
|
||||||
|
EOF
|
||||||
|
|
||||||
|
if AC_TRY_COMMAND([${CC-cc} ${CFLAGS} -S conftest.c]) && test -s conftest.s; then
|
||||||
|
true
|
||||||
|
else
|
||||||
|
AC_MSG_ERROR([${CC-cc} failed to produce assembly code])
|
||||||
|
fi
|
||||||
|
|
||||||
|
if $EGREP '(^|[^_[:alnum]])_func' conftest.s >/dev/null 2>&1; then
|
||||||
|
HAVE_ASM_USCORE=1
|
||||||
|
grub_cv_asm_uscore=yes
|
||||||
|
else
|
||||||
|
HAVE_ASM_USCORE=0
|
||||||
|
grub_cv_asm_uscore=no
|
||||||
|
fi
|
||||||
|
|
||||||
|
rm -f conftest*])
|
||||||
|
|
||||||
|
AC_MSG_RESULT([$grub_cv_asm_uscore])
|
||||||
|
])
|
||||||
|
|
||||||
|
|
||||||
|
dnl Some versions of `objcopy -O binary' vary their output depending
|
||||||
|
dnl on the link address.
|
||||||
|
AC_DEFUN([grub_PROG_OBJCOPY_ABSOLUTE],
|
||||||
|
[AC_MSG_CHECKING([whether ${TARGET_OBJCOPY} works for absolute addresses])
|
||||||
|
AC_CACHE_VAL(grub_cv_prog_objcopy_absolute,
|
||||||
|
[cat > conftest.c <<\EOF
|
||||||
|
void cmain (void);
|
||||||
|
void
|
||||||
|
cmain (void)
|
||||||
|
{
|
||||||
|
*((int *) 0x1000) = 2;
|
||||||
|
}
|
||||||
|
EOF
|
||||||
|
|
||||||
|
if AC_TRY_EVAL(ac_compile) && test -s conftest.o; then :
|
||||||
|
else
|
||||||
|
AC_MSG_ERROR([${CC-cc} cannot compile C source code])
|
||||||
|
fi
|
||||||
|
grub_cv_prog_objcopy_absolute=yes
|
||||||
|
for link_addr in 0x2000 0x8000 0x7C00; do
|
||||||
|
if AC_TRY_COMMAND([${CC-cc} ${TARGET_CFLAGS} ${TARGET_LDFLAGS} -nostdlib ${TARGET_IMG_LDFLAGS_AC} ${TARGET_IMG_BASE_LDOPT},$link_addr conftest.o -o conftest.exec]); then :
|
||||||
|
else
|
||||||
|
AC_MSG_ERROR([${CC-cc} cannot link at address $link_addr])
|
||||||
|
fi
|
||||||
|
if AC_TRY_COMMAND([${TARGET_OBJCOPY-objcopy} --only-section=.text -O binary conftest.exec conftest]); then :
|
||||||
|
else
|
||||||
|
AC_MSG_ERROR([${TARGET_OBJCOPY-objcopy} cannot create binary files])
|
||||||
|
fi
|
||||||
|
if test ! -f conftest.old || AC_TRY_COMMAND([cmp -s conftest.old conftest]); then
|
||||||
|
mv -f conftest conftest.old
|
||||||
|
else
|
||||||
|
grub_cv_prog_objcopy_absolute=no
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
rm -f conftest*])
|
||||||
|
AC_MSG_RESULT([$grub_cv_prog_objcopy_absolute])
|
||||||
|
|
||||||
|
if test "x$grub_cv_prog_objcopy_absolute" = xno; then
|
||||||
|
AC_MSG_ERROR([GRUB requires a working absolute objcopy; upgrade your binutils])
|
||||||
|
fi
|
||||||
|
])
|
||||||
|
|
||||||
|
|
||||||
|
dnl Supply --build-id=none to ld if building modules.
|
||||||
|
dnl This suppresses warnings from ld on some systems
|
||||||
|
AC_DEFUN([grub_PROG_LD_BUILD_ID_NONE],
|
||||||
|
[AC_MSG_CHECKING([whether linker accepts --build-id=none])
|
||||||
|
AC_CACHE_VAL(grub_cv_prog_ld_build_id_none,
|
||||||
|
[save_LDFLAGS="$LDFLAGS"
|
||||||
|
LDFLAGS="$LDFLAGS -Wl,--build-id=none"
|
||||||
|
AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [[]])],
|
||||||
|
[grub_cv_prog_ld_build_id_none=yes],
|
||||||
|
[grub_cv_prog_ld_build_id_none=no])
|
||||||
|
LDFLAGS="$save_LDFLAGS"
|
||||||
|
])
|
||||||
|
AC_MSG_RESULT([$grub_cv_prog_ld_build_id_none])
|
||||||
|
|
||||||
|
if test "x$grub_cv_prog_ld_build_id_none" = xyes; then
|
||||||
|
TARGET_LDFLAGS="$TARGET_LDFLAGS -Wl,--build-id=none"
|
||||||
|
fi
|
||||||
|
])
|
||||||
|
|
||||||
|
dnl Check nm
|
||||||
|
AC_DEFUN([grub_PROG_NM_WORKS],
|
||||||
|
[AC_MSG_CHECKING([whether nm works])
|
||||||
|
AC_CACHE_VAL(grub_cv_prog_nm_works,
|
||||||
|
[
|
||||||
|
nm_works_tmp_dir="$(mktemp -d "./confXXXXXX")"
|
||||||
|
AC_LANG_CONFTEST([AC_LANG_PROGRAM([[]], [[]])])
|
||||||
|
$TARGET_CC $TARGET_CFLAGS -c conftest.c -o "$nm_works_tmp_dir/ef"
|
||||||
|
if $TARGET_NM "$nm_works_tmp_dir/ef" > /dev/null; then
|
||||||
|
grub_cv_prog_nm_works=yes
|
||||||
|
else
|
||||||
|
grub_cv_prog_nm_minus_p=no
|
||||||
|
fi
|
||||||
|
rm "$nm_works_tmp_dir/ef"
|
||||||
|
rmdir "$nm_works_tmp_dir"
|
||||||
|
])
|
||||||
|
AC_MSG_RESULT([$grub_cv_prog_nm_works])
|
||||||
|
|
||||||
|
if test "x$grub_cv_prog_nm_works" != xyes; then
|
||||||
|
AC_MSG_ERROR([nm does not work])
|
||||||
|
fi
|
||||||
|
])
|
||||||
|
|
||||||
|
dnl Supply -P to nm
|
||||||
|
AC_DEFUN([grub_PROG_NM_MINUS_P],
|
||||||
|
[AC_MSG_CHECKING([whether nm accepts -P])
|
||||||
|
AC_CACHE_VAL(grub_cv_prog_nm_minus_p,
|
||||||
|
[
|
||||||
|
nm_minus_p_tmp_dir="$(mktemp -d "./confXXXXXX")"
|
||||||
|
AC_LANG_CONFTEST([AC_LANG_PROGRAM([[]], [[]])])
|
||||||
|
$TARGET_CC $TARGET_CFLAGS -c conftest.c -o "$nm_minus_p_tmp_dir/ef"
|
||||||
|
if $TARGET_NM -P "$nm_minus_p_tmp_dir/ef" 2>&1 > /dev/null; then
|
||||||
|
grub_cv_prog_nm_minus_p=yes
|
||||||
|
else
|
||||||
|
grub_cv_prog_nm_minus_p=no
|
||||||
|
fi
|
||||||
|
rm "$nm_minus_p_tmp_dir/ef"
|
||||||
|
rmdir "$nm_minus_p_tmp_dir"
|
||||||
|
])
|
||||||
|
AC_MSG_RESULT([$grub_cv_prog_nm_minus_p])
|
||||||
|
|
||||||
|
if test "x$grub_cv_prog_nm_minus_p" = xyes; then
|
||||||
|
TARGET_NMFLAGS_MINUS_P="-P"
|
||||||
|
else
|
||||||
|
TARGET_NMFLAGS_MINUS_P=
|
||||||
|
fi
|
||||||
|
])
|
||||||
|
|
||||||
|
dnl Supply --defined-only to nm
|
||||||
|
AC_DEFUN([grub_PROG_NM_DEFINED_ONLY],
|
||||||
|
[AC_MSG_CHECKING([whether nm accepts --defined-only])
|
||||||
|
AC_CACHE_VAL(grub_cv_prog_nm_defined_only,
|
||||||
|
[
|
||||||
|
nm_defined_only_tmp_dir="$(mktemp -d "./confXXXXXX")"
|
||||||
|
AC_LANG_CONFTEST([AC_LANG_PROGRAM([[]], [[]])])
|
||||||
|
$TARGET_CC $TARGET_CFLAGS -c conftest.c -o "$nm_defined_only_tmp_dir/ef"
|
||||||
|
if $TARGET_NM --defined-only "$nm_defined_only_tmp_dir/ef" 2>&1 > /dev/null; then
|
||||||
|
grub_cv_prog_nm_defined_only=yes
|
||||||
|
else
|
||||||
|
grub_cv_prog_nm_defined_only=no
|
||||||
|
fi
|
||||||
|
rm "$nm_defined_only_tmp_dir/ef"
|
||||||
|
rmdir "$nm_defined_only_tmp_dir"
|
||||||
|
])
|
||||||
|
AC_MSG_RESULT([$grub_cv_prog_nm_defined_only])
|
||||||
|
|
||||||
|
if test "x$grub_cv_prog_nm_defined_only" = xyes; then
|
||||||
|
TARGET_NMFLAGS_DEFINED_ONLY=--defined-only
|
||||||
|
else
|
||||||
|
TARGET_NMFLAGS_DEFINED_ONLY=
|
||||||
|
fi
|
||||||
|
])
|
||||||
|
|
||||||
|
|
||||||
|
dnl Check what symbol is defined as a bss start symbol.
|
||||||
|
dnl Written by Michael Hohmoth and Yoshinori K. Okuji.
|
||||||
|
AC_DEFUN([grub_CHECK_BSS_START_SYMBOL],
|
||||||
|
[AC_REQUIRE([AC_PROG_CC])
|
||||||
|
AC_MSG_CHECKING([if __bss_start is defined by the compiler])
|
||||||
|
AC_CACHE_VAL(grub_cv_check_uscore_uscore_bss_start_symbol,
|
||||||
|
[AC_LINK_IFELSE([AC_LANG_PROGRAM([[
|
||||||
|
asm (".globl start; start:");
|
||||||
|
void __main (void);
|
||||||
|
void __main (void) {}
|
||||||
|
int main (void);
|
||||||
|
]],
|
||||||
|
[[asm ("incl __bss_start")]])],
|
||||||
|
[grub_cv_check_uscore_uscore_bss_start_symbol=yes],
|
||||||
|
[grub_cv_check_uscore_uscore_bss_start_symbol=no])])
|
||||||
|
|
||||||
|
AC_MSG_RESULT([$grub_cv_check_uscore_uscore_bss_start_symbol])
|
||||||
|
|
||||||
|
AC_MSG_CHECKING([if edata is defined by the compiler])
|
||||||
|
AC_CACHE_VAL(grub_cv_check_edata_symbol,
|
||||||
|
[AC_LINK_IFELSE([AC_LANG_PROGRAM([[
|
||||||
|
asm (".globl start; start:");
|
||||||
|
void __main (void);
|
||||||
|
void __main (void) {}
|
||||||
|
int main (void);]],
|
||||||
|
[[asm ("incl edata")]])],
|
||||||
|
[grub_cv_check_edata_symbol=yes],
|
||||||
|
[grub_cv_check_edata_symbol=no])])
|
||||||
|
|
||||||
|
AC_MSG_RESULT([$grub_cv_check_edata_symbol])
|
||||||
|
|
||||||
|
AC_MSG_CHECKING([if _edata is defined by the compiler])
|
||||||
|
AC_CACHE_VAL(grub_cv_check_uscore_edata_symbol,
|
||||||
|
[AC_LINK_IFELSE([AC_LANG_PROGRAM([[
|
||||||
|
asm (".globl start; start:");
|
||||||
|
void __main (void);
|
||||||
|
void __main (void) {}
|
||||||
|
int main (void);]],
|
||||||
|
[[asm ("incl _edata")]])],
|
||||||
|
[grub_cv_check_uscore_edata_symbol=yes],
|
||||||
|
[grub_cv_check_uscore_edata_symbol=no])])
|
||||||
|
|
||||||
|
AC_MSG_RESULT([$grub_cv_check_uscore_edata_symbol])
|
||||||
|
|
||||||
|
if test "x$grub_cv_check_uscore_uscore_bss_start_symbol" = xyes; then
|
||||||
|
BSS_START_SYMBOL=__bss_start
|
||||||
|
elif test "x$grub_cv_check_edata_symbol" = xyes; then
|
||||||
|
BSS_START_SYMBOL=edata
|
||||||
|
elif test "x$grub_cv_check_uscore_edata_symbol" = xyes; then
|
||||||
|
BSS_START_SYMBOL=_edata
|
||||||
|
else
|
||||||
|
AC_MSG_ERROR([none of __bss_start, edata or _edata is defined])
|
||||||
|
fi
|
||||||
|
])
|
||||||
|
|
||||||
|
dnl Check what symbol is defined as an end symbol.
|
||||||
|
dnl Written by Yoshinori K. Okuji.
|
||||||
|
AC_DEFUN([grub_CHECK_END_SYMBOL],
|
||||||
|
[AC_REQUIRE([AC_PROG_CC])
|
||||||
|
AC_MSG_CHECKING([if end is defined by the compiler])
|
||||||
|
AC_CACHE_VAL(grub_cv_check_end_symbol,
|
||||||
|
[AC_LINK_IFELSE([AC_LANG_PROGRAM([[
|
||||||
|
asm (".globl start; start:");
|
||||||
|
void __main (void);
|
||||||
|
void __main (void) {}
|
||||||
|
int main (void);]],
|
||||||
|
[[asm ("incl end")]])],
|
||||||
|
[grub_cv_check_end_symbol=yes],
|
||||||
|
[grub_cv_check_end_symbol=no])])
|
||||||
|
|
||||||
|
AC_MSG_RESULT([$grub_cv_check_end_symbol])
|
||||||
|
|
||||||
|
AC_MSG_CHECKING([if _end is defined by the compiler])
|
||||||
|
AC_CACHE_VAL(grub_cv_check_uscore_end_symbol,
|
||||||
|
[AC_LINK_IFELSE([AC_LANG_PROGRAM([[
|
||||||
|
asm (".globl start; start:");
|
||||||
|
void __main (void);
|
||||||
|
void __main (void) {}
|
||||||
|
int main (void);]],
|
||||||
|
[[asm ("incl _end")]])],
|
||||||
|
[grub_cv_check_uscore_end_symbol=yes],
|
||||||
|
[grub_cv_check_uscore_end_symbol=no])])
|
||||||
|
|
||||||
|
AC_MSG_RESULT([$grub_cv_check_uscore_end_symbol])
|
||||||
|
|
||||||
|
if test "x$grub_cv_check_end_symbol" = xyes; then
|
||||||
|
END_SYMBOL=end
|
||||||
|
elif test "x$grub_cv_check_uscore_end_symbol" = xyes; then
|
||||||
|
END_SYMBOL=_end
|
||||||
|
else
|
||||||
|
AC_MSG_ERROR([neither end nor _end is defined])
|
||||||
|
fi
|
||||||
|
])
|
||||||
|
|
||||||
|
|
||||||
|
dnl Check if the C compiler supports the stack protector
|
||||||
|
AC_DEFUN([grub_CHECK_STACK_PROTECTOR],[
|
||||||
|
[# Stack smashing protector.
|
||||||
|
ssp_possible=yes]
|
||||||
|
AC_MSG_CHECKING([whether `$CC' accepts `-fstack-protector'])
|
||||||
|
# Is this a reliable test case?
|
||||||
|
AC_LANG_CONFTEST([AC_LANG_SOURCE([[
|
||||||
|
void foo (void) { volatile char a[8]; a[3]; }
|
||||||
|
]])])
|
||||||
|
[# `$CC -c -o ...' might not be portable. But, oh, well... Is calling
|
||||||
|
# `ac_compile' like this correct, after all?
|
||||||
|
if eval "$ac_compile -S -fstack-protector -o conftest.s" 2> /dev/null; then]
|
||||||
|
AC_MSG_RESULT([yes])
|
||||||
|
[# Should we clear up other files as well, having called `AC_LANG_CONFTEST'?
|
||||||
|
rm -f conftest.s
|
||||||
|
else
|
||||||
|
ssp_possible=no]
|
||||||
|
AC_MSG_RESULT([no])
|
||||||
|
[fi]
|
||||||
|
[# Strong stack smashing protector.
|
||||||
|
ssp_strong_possible=yes]
|
||||||
|
AC_MSG_CHECKING([whether `$CC' accepts `-fstack-protector-strong'])
|
||||||
|
# Is this a reliable test case?
|
||||||
|
AC_LANG_CONFTEST([AC_LANG_SOURCE([[
|
||||||
|
void foo (void) { volatile char a[8]; a[3]; }
|
||||||
|
]])])
|
||||||
|
[# `$CC -c -o ...' might not be portable. But, oh, well... Is calling
|
||||||
|
# `ac_compile' like this correct, after all?
|
||||||
|
if eval "$ac_compile -S -fstack-protector-strong -o conftest.s" 2> /dev/null; then]
|
||||||
|
AC_MSG_RESULT([yes])
|
||||||
|
[# Should we clear up other files as well, having called `AC_LANG_CONFTEST'?
|
||||||
|
rm -f conftest.s
|
||||||
|
else
|
||||||
|
ssp_strong_possible=no]
|
||||||
|
AC_MSG_RESULT([no])
|
||||||
|
[fi]
|
||||||
|
[# Global stack smashing protector.
|
||||||
|
ssp_global_possible=yes]
|
||||||
|
AC_MSG_CHECKING([whether `$CC' accepts `-mstack-protector-guard=global'])
|
||||||
|
# Is this a reliable test case?
|
||||||
|
AC_LANG_CONFTEST([AC_LANG_SOURCE([[
|
||||||
|
void foo (void) { volatile char a[8]; a[3]; }
|
||||||
|
]])])
|
||||||
|
[# `$CC -c -o ...' might not be portable. But, oh, well... Is calling
|
||||||
|
# `ac_compile' like this correct, after all?
|
||||||
|
if eval "$ac_compile -S -fstack-protector -mstack-protector-guard=global -o conftest.s" 2> /dev/null; then]
|
||||||
|
AC_MSG_RESULT([yes])
|
||||||
|
[# Should we clear up other files as well, having called `AC_LANG_CONFTEST'?
|
||||||
|
rm -f conftest.s
|
||||||
|
else
|
||||||
|
ssp_global_possible=no]
|
||||||
|
AC_MSG_RESULT([no])
|
||||||
|
[fi]
|
||||||
|
])
|
||||||
|
|
||||||
|
dnl Check if the C compiler supports `-mstack-arg-probe' (Cygwin).
|
||||||
|
AC_DEFUN([grub_CHECK_STACK_ARG_PROBE],[
|
||||||
|
[# Smashing stack arg probe.
|
||||||
|
sap_possible=yes]
|
||||||
|
AC_MSG_CHECKING([whether `$CC' accepts `-mstack-arg-probe'])
|
||||||
|
AC_LANG_CONFTEST([AC_LANG_SOURCE([[
|
||||||
|
void foo (void) { volatile char a[8]; a[3]; }
|
||||||
|
]])])
|
||||||
|
[if eval "$ac_compile -S -mstack-arg-probe -Werror -o conftest.s" 2> /dev/null; then]
|
||||||
|
AC_MSG_RESULT([yes])
|
||||||
|
[# Should we clear up other files as well, having called `AC_LANG_CONFTEST'?
|
||||||
|
rm -f conftest.s
|
||||||
|
else
|
||||||
|
sap_possible=no]
|
||||||
|
AC_MSG_RESULT([no])
|
||||||
|
[fi]
|
||||||
|
])
|
||||||
|
|
||||||
|
dnl Check if ln -s can handle directories properly (mingw).
|
||||||
|
AC_DEFUN([grub_CHECK_LINK_DIR],[
|
||||||
|
AC_MSG_CHECKING([whether ln -s can handle directories properly])
|
||||||
|
[mkdir testdir 2>/dev/null
|
||||||
|
case $srcdir in
|
||||||
|
[\\/$]* | ?:[\\/]* ) reldir=$srcdir/include/grub/util ;;
|
||||||
|
*) reldir=../$srcdir/include/grub/util ;;
|
||||||
|
esac
|
||||||
|
if ln -s $reldir testdir/util 2>/dev/null && rm -f testdir/util 2>/dev/null ; then]
|
||||||
|
AC_MSG_RESULT([yes])
|
||||||
|
[link_dir=yes
|
||||||
|
else
|
||||||
|
link_dir=no]
|
||||||
|
AC_MSG_RESULT([no])
|
||||||
|
[fi
|
||||||
|
rm -rf testdir]
|
||||||
|
])
|
||||||
|
|
||||||
|
dnl Check if the C compiler supports `-fPIE'.
|
||||||
|
AC_DEFUN([grub_CHECK_PIE],[
|
||||||
|
[# Position independent executable.
|
||||||
|
pie_possible=yes]
|
||||||
|
AC_MSG_CHECKING([whether `$CC' has `-fPIE' as default])
|
||||||
|
# Is this a reliable test case?
|
||||||
|
AC_LANG_CONFTEST([AC_LANG_SOURCE([[
|
||||||
|
#ifdef __PIE__
|
||||||
|
int main() {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
#error NO __PIE__ DEFINED
|
||||||
|
#endif
|
||||||
|
]])])
|
||||||
|
|
||||||
|
[# `$CC -c -o ...' might not be portable. But, oh, well... Is calling
|
||||||
|
# `ac_compile' like this correct, after all?
|
||||||
|
if eval "$ac_compile -S -o conftest.s" 2> /dev/null; then]
|
||||||
|
AC_MSG_RESULT([yes])
|
||||||
|
[# Should we clear up other files as well, having called `AC_LANG_CONFTEST'?
|
||||||
|
rm -f conftest.s
|
||||||
|
else
|
||||||
|
pie_possible=no]
|
||||||
|
AC_MSG_RESULT([no])
|
||||||
|
[fi]
|
||||||
|
])
|
||||||
|
|
||||||
|
AC_DEFUN([grub_CHECK_LINK_PIE],[
|
||||||
|
[# Position independent executable.
|
||||||
|
link_nopie_needed=no]
|
||||||
|
AC_MSG_CHECKING([whether linker needs disabling of PIE to work])
|
||||||
|
AC_LANG_CONFTEST([AC_LANG_SOURCE([[]])])
|
||||||
|
|
||||||
|
[if eval "$ac_compile -Wl,-r -nostdlib -Werror -o conftest.o" 2> /dev/null; then]
|
||||||
|
AC_MSG_RESULT([no])
|
||||||
|
[# Should we clear up other files as well, having called `AC_LANG_CONFTEST'?
|
||||||
|
rm -f conftest.o
|
||||||
|
else
|
||||||
|
link_nopie_needed=yes]
|
||||||
|
AC_MSG_RESULT([yes])
|
||||||
|
[fi]
|
||||||
|
])
|
||||||
|
|
||||||
|
|
||||||
|
dnl Check if the Linker supports `-no-pie'.
|
||||||
|
AC_DEFUN([grub_CHECK_NO_PIE],
|
||||||
|
[AC_MSG_CHECKING([whether linker accepts -no-pie])
|
||||||
|
AC_CACHE_VAL(grub_cv_cc_ld_no_pie,
|
||||||
|
[save_LDFLAGS="$LDFLAGS"
|
||||||
|
LDFLAGS="$LDFLAGS -no-pie -nostdlib -Werror"
|
||||||
|
AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [[]])],
|
||||||
|
[grub_cv_cc_ld_no_pie=yes],
|
||||||
|
[grub_cv_cc_ld_no_pie=no])
|
||||||
|
LDFLAGS="$save_LDFLAGS"
|
||||||
|
])
|
||||||
|
AC_MSG_RESULT([$grub_cv_cc_ld_no_pie])
|
||||||
|
nopie_possible=no
|
||||||
|
if test "x$grub_cv_cc_ld_no_pie" = xyes ; then
|
||||||
|
nopie_possible=yes
|
||||||
|
fi
|
||||||
|
])
|
||||||
|
|
||||||
|
AC_DEFUN([grub_CHECK_NO_PIE_ONEWORD],
|
||||||
|
[AC_MSG_CHECKING([whether linker accepts -nopie])
|
||||||
|
AC_CACHE_VAL(grub_cv_cc_ld_no_pie_oneword,
|
||||||
|
[save_LDFLAGS="$LDFLAGS"
|
||||||
|
LDFLAGS="$LDFLAGS -nopie -nostdlib -Werror"
|
||||||
|
AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [[]])],
|
||||||
|
[grub_cv_cc_ld_no_pie_oneword=yes],
|
||||||
|
[grub_cv_cc_ld_no_pie_oneword=no])
|
||||||
|
LDFLAGS="$save_LDFLAGS"
|
||||||
|
])
|
||||||
|
AC_MSG_RESULT([$grub_cv_cc_ld_no_pie_oneword])
|
||||||
|
nopie_oneword_possible=no
|
||||||
|
if test "x$grub_cv_cc_ld_no_pie_oneword" = xyes ; then
|
||||||
|
nopie_oneword_possible=yes
|
||||||
|
fi
|
||||||
|
])
|
||||||
|
|
||||||
|
dnl Check if the C compiler supports `-fPIC'.
|
||||||
|
AC_DEFUN([grub_CHECK_PIC],[
|
||||||
|
[# Position independent executable.
|
||||||
|
pic_possible=yes]
|
||||||
|
AC_MSG_CHECKING([whether `$CC' has `-fPIC' as default])
|
||||||
|
# Is this a reliable test case?
|
||||||
|
AC_LANG_CONFTEST([AC_LANG_SOURCE([[
|
||||||
|
#ifdef __PIC__
|
||||||
|
int main() {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
#error NO __PIC__ DEFINED
|
||||||
|
#endif
|
||||||
|
]])])
|
||||||
|
|
||||||
|
[# `$CC -c -o ...' might not be portable. But, oh, well... Is calling
|
||||||
|
# `ac_compile' like this correct, after all?
|
||||||
|
if eval "$ac_compile -S -o conftest.s" 2> /dev/null; then]
|
||||||
|
AC_MSG_RESULT([yes])
|
||||||
|
[# Should we clear up other files as well, having called `AC_LANG_CONFTEST'?
|
||||||
|
rm -f conftest.s
|
||||||
|
else
|
||||||
|
pic_possible=no]
|
||||||
|
AC_MSG_RESULT([no])
|
||||||
|
[fi]
|
||||||
|
])
|
||||||
|
|
||||||
|
dnl Create an output variable with the transformed name of a GRUB utility
|
||||||
|
dnl program.
|
||||||
|
AC_DEFUN([grub_TRANSFORM],[dnl
|
||||||
|
AC_SUBST(AS_TR_SH([$1]), [`AS_ECHO([$1]) | sed "$program_transform_name"`])dnl
|
||||||
|
])
|
||||||
+1868
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,20 @@
|
|||||||
|
/* on arm clang doesn't support .arch directive */
|
||||||
|
|
||||||
|
.text
|
||||||
|
.syntax unified
|
||||||
|
|
||||||
|
#if !defined (__thumb2__)
|
||||||
|
.arch armv7a
|
||||||
|
.arm
|
||||||
|
#else
|
||||||
|
.arch armv7
|
||||||
|
.thumb
|
||||||
|
#endif
|
||||||
|
mcr p15, 0, r11, c7, c14, 2
|
||||||
|
|
||||||
|
/* clang restricts access to dsb/isb despite .arch */
|
||||||
|
dsb
|
||||||
|
isb
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
/* on x86 old clang doesn't support .code16
|
||||||
|
newer clang supports it but creates 6-byte jumps instead of 3-byte ones
|
||||||
|
which makes us go over boot sector size.
|
||||||
|
Starting with 3.9 clang emits 3-byte jumps but still creates 8-bytes movl
|
||||||
|
instead of 5-bytes, so code overflows into data. */
|
||||||
|
|
||||||
|
.code16
|
||||||
|
jmp far
|
||||||
|
.org 4
|
||||||
|
jmp nearer
|
||||||
|
.org 6
|
||||||
|
movl nearer, %ebx
|
||||||
|
.org 11
|
||||||
|
.space 100
|
||||||
|
nearer:
|
||||||
|
.space 200
|
||||||
|
far:
|
||||||
|
.byte 0
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
/* on x86 old clang doesn't support .code16 */
|
||||||
|
|
||||||
|
.code16
|
||||||
|
movb %al, %bl
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
/* on mips clang doesn't support privilegied instructions, doubleword store/load
|
||||||
|
and crashes with hand-written assembly
|
||||||
|
*/
|
||||||
|
|
||||||
|
.set mips3
|
||||||
|
sync
|
||||||
|
ld $t2, 0($t1)
|
||||||
|
|
||||||
|
a:
|
||||||
|
addiu $t1, $s0, (b - a)
|
||||||
|
b: nop
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
/* clang <= 3.3 doesn't handle most of ppc assembly, not even inline assembly
|
||||||
|
used by gcrypt */
|
||||||
|
/* Cache invalidation loop is a fair test. */
|
||||||
|
li 5, 0
|
||||||
|
1: icbi 5, 3
|
||||||
|
addi 5, 5, 32
|
||||||
|
cmpw 5, 4
|
||||||
|
blt 1b
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
.text
|
||||||
|
1:
|
||||||
|
/* A small list of examples of what clang doesn't support. */
|
||||||
|
clr %o0
|
||||||
|
lduw [%o4 + 4], %o4
|
||||||
|
and %o6, ~0xff, %o6
|
||||||
|
stw %o5, [%o3]
|
||||||
|
bne,pt %icc, 1b
|
||||||
|
nop
|
||||||
Executable
+116
@@ -0,0 +1,116 @@
|
|||||||
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
if [ ! -e grub-core/lib/gnulib/stdlib.in.h ]; then
|
||||||
|
echo "Gnulib not yet bootstrapped; run ./bootstrap instead." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Detect python
|
||||||
|
if [ -z "$PYTHON" ]; then
|
||||||
|
for i in python3 python3.10 python; do
|
||||||
|
if command -v "$i" > /dev/null 2>&1; then
|
||||||
|
PYTHON="$i"
|
||||||
|
echo "Using $PYTHON..."
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
if [ -z "$PYTHON" ]; then
|
||||||
|
echo "python not found." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
export LC_COLLATE=C
|
||||||
|
unset LC_ALL
|
||||||
|
|
||||||
|
find . -iname '*.[ch]' ! -ipath './grub-core/lib/libgcrypt-grub/*' ! -ipath './build-aux/*' ! -ipath './grub-core/lib/libgcrypt/src/misc.c' ! -ipath './grub-core/lib/libgcrypt/src/global.c' ! -ipath './grub-core/lib/libgcrypt/src/secmem.c' ! -ipath './util/grub-gen-widthspec.c' ! -ipath './util/grub-gen-asciih.c' ! -ipath './gnulib/*' ! -ipath './grub-core/lib/gnulib/*' |sort > po/POTFILES.in
|
||||||
|
find util -iname '*.in' ! -name Makefile.in |sort > po/POTFILES-shell.in
|
||||||
|
|
||||||
|
echo "Importing unicode..."
|
||||||
|
${PYTHON} util/import_unicode.py unicode/UnicodeData.txt unicode/BidiMirroring.txt unicode/ArabicShaping.txt grub-core/unidata.c
|
||||||
|
|
||||||
|
echo "Importing libgcrypt..."
|
||||||
|
${PYTHON} util/import_gcry.py grub-core/lib/libgcrypt/ grub-core
|
||||||
|
sed -n -f util/import_gcrypth.sed < grub-core/lib/libgcrypt/src/gcrypt.h.in > include/grub/gcrypt/gcrypt.h
|
||||||
|
if [ -f include/grub/gcrypt/g10lib.h ]; then
|
||||||
|
rm include/grub/gcrypt/g10lib.h
|
||||||
|
fi
|
||||||
|
if [ -d grub-core/lib/libgcrypt-grub/mpi/generic ]; then
|
||||||
|
rm -rf grub-core/lib/libgcrypt-grub/mpi/generic
|
||||||
|
fi
|
||||||
|
cp grub-core/lib/libgcrypt-grub/src/g10lib.h include/grub/gcrypt/g10lib.h
|
||||||
|
cp -R grub-core/lib/libgcrypt/mpi/generic grub-core/lib/libgcrypt-grub/mpi/generic
|
||||||
|
|
||||||
|
for x in mpi-asm-defs.h mpih-add1.c mpih-sub1.c mpih-mul1.c mpih-mul2.c mpih-mul3.c mpih-lshift.c mpih-rshift.c; do
|
||||||
|
if [ -h grub-core/lib/libgcrypt-grub/mpi/"$x" ] || [ -f grub-core/lib/libgcrypt-grub/mpi/"$x" ]; then
|
||||||
|
rm grub-core/lib/libgcrypt-grub/mpi/"$x"
|
||||||
|
fi
|
||||||
|
cp grub-core/lib/libgcrypt-grub/mpi/generic/"$x" grub-core/lib/libgcrypt-grub/mpi/"$x"
|
||||||
|
done
|
||||||
|
|
||||||
|
echo "Generating Automake input..."
|
||||||
|
|
||||||
|
# Automake doesn't like including files from a path outside the project.
|
||||||
|
rm -f contrib grub-core/contrib
|
||||||
|
if [ "x${GRUB_CONTRIB}" != x ]; then
|
||||||
|
[ "${GRUB_CONTRIB}" = contrib ] || ln -s "${GRUB_CONTRIB}" contrib
|
||||||
|
[ "${GRUB_CONTRIB}" = grub-core/contrib ] || ln -s ../contrib grub-core/contrib
|
||||||
|
fi
|
||||||
|
|
||||||
|
UTIL_DEFS='Makefile.util.def Makefile.utilgcry.def'
|
||||||
|
CORE_DEFS='grub-core/Makefile.core.def grub-core/Makefile.gcry.def'
|
||||||
|
|
||||||
|
for extra in contrib/*/Makefile.util.def; do
|
||||||
|
if test -e "$extra"; then
|
||||||
|
UTIL_DEFS="$UTIL_DEFS $extra"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
for extra in contrib/*/Makefile.core.def; do
|
||||||
|
if test -e "$extra"; then
|
||||||
|
CORE_DEFS="$CORE_DEFS $extra"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
${PYTHON} gentpl.py $UTIL_DEFS > Makefile.util.am
|
||||||
|
${PYTHON} gentpl.py $CORE_DEFS > grub-core/Makefile.core.am
|
||||||
|
|
||||||
|
for extra in contrib/*/Makefile.common; do
|
||||||
|
if test -e "$extra"; then
|
||||||
|
echo "include $extra" >> Makefile.util.am
|
||||||
|
echo "include $extra" >> grub-core/Makefile.core.am
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
for extra in contrib/*/Makefile.util.common; do
|
||||||
|
if test -e "$extra"; then
|
||||||
|
echo "include $extra" >> Makefile.util.am
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
for extra in contrib/*/Makefile.core.common; do
|
||||||
|
if test -e "$extra"; then
|
||||||
|
echo "include $extra" >> grub-core/Makefile.core.am
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
echo "Saving timestamps..."
|
||||||
|
echo timestamp > stamp-h.in
|
||||||
|
|
||||||
|
if [ -z "$FROM_BOOTSTRAP" ]; then
|
||||||
|
# Unaided autoreconf is likely to install older versions of many files
|
||||||
|
# than the ones provided by Gnulib, but in most cases this won't matter
|
||||||
|
# very much. This mode is provided so that you can run ./autogen.sh to
|
||||||
|
# regenerate the GRUB build system in an unpacked release tarball (perhaps
|
||||||
|
# after patching it), even on systems that don't have access to
|
||||||
|
# gnulib.git.
|
||||||
|
echo "Running autoreconf..."
|
||||||
|
cp -a INSTALL INSTALL.grub
|
||||||
|
autoreconf -vif
|
||||||
|
mv INSTALL.grub INSTALL
|
||||||
|
fi
|
||||||
|
|
||||||
|
exit 0
|
||||||
+1754
File diff suppressed because it is too large
Load Diff
+690
@@ -0,0 +1,690 @@
|
|||||||
|
#! /bin/sh
|
||||||
|
# Output a system dependent set of variables, describing how to set the
|
||||||
|
# run time search path of shared libraries in an executable.
|
||||||
|
#
|
||||||
|
# Copyright 1996-2013 Free Software Foundation, Inc.
|
||||||
|
# Taken from GNU libtool, 2001
|
||||||
|
# Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
|
||||||
|
#
|
||||||
|
# This file is free software; the Free Software Foundation gives
|
||||||
|
# unlimited permission to copy and/or distribute it, with or without
|
||||||
|
# modifications, as long as this notice is preserved.
|
||||||
|
#
|
||||||
|
# The first argument passed to this file is the canonical host specification,
|
||||||
|
# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
|
||||||
|
# or
|
||||||
|
# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM
|
||||||
|
# The environment variables CC, GCC, LDFLAGS, LD, with_gnu_ld
|
||||||
|
# should be set by the caller.
|
||||||
|
#
|
||||||
|
# The set of defined variables is at the end of this script.
|
||||||
|
|
||||||
|
# Known limitations:
|
||||||
|
# - On IRIX 6.5 with CC="cc", the run time search patch must not be longer
|
||||||
|
# than 256 bytes, otherwise the compiler driver will dump core. The only
|
||||||
|
# known workaround is to choose shorter directory names for the build
|
||||||
|
# directory and/or the installation directory.
|
||||||
|
|
||||||
|
# All known linkers require a '.a' archive for static linking (except MSVC,
|
||||||
|
# which needs '.lib').
|
||||||
|
libext=a
|
||||||
|
shrext=.so
|
||||||
|
|
||||||
|
host="$1"
|
||||||
|
host_cpu=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
|
||||||
|
host_vendor=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
|
||||||
|
host_os=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
|
||||||
|
|
||||||
|
# Code taken from libtool.m4's _LT_CC_BASENAME.
|
||||||
|
|
||||||
|
for cc_temp in $CC""; do
|
||||||
|
case $cc_temp in
|
||||||
|
compile | *[\\/]compile | ccache | *[\\/]ccache ) ;;
|
||||||
|
distcc | *[\\/]distcc | purify | *[\\/]purify ) ;;
|
||||||
|
\-*) ;;
|
||||||
|
*) break;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
cc_basename=`echo "$cc_temp" | sed -e 's%^.*/%%'`
|
||||||
|
|
||||||
|
# Code taken from libtool.m4's _LT_COMPILER_PIC.
|
||||||
|
|
||||||
|
wl=
|
||||||
|
if test "$GCC" = yes; then
|
||||||
|
wl='-Wl,'
|
||||||
|
else
|
||||||
|
case "$host_os" in
|
||||||
|
aix*)
|
||||||
|
wl='-Wl,'
|
||||||
|
;;
|
||||||
|
mingw* | cygwin* | pw32* | os2* | cegcc*)
|
||||||
|
;;
|
||||||
|
hpux9* | hpux10* | hpux11*)
|
||||||
|
wl='-Wl,'
|
||||||
|
;;
|
||||||
|
irix5* | irix6* | nonstopux*)
|
||||||
|
wl='-Wl,'
|
||||||
|
;;
|
||||||
|
linux* | k*bsd*-gnu | kopensolaris*-gnu)
|
||||||
|
case $cc_basename in
|
||||||
|
ecc*)
|
||||||
|
wl='-Wl,'
|
||||||
|
;;
|
||||||
|
icc* | ifort*)
|
||||||
|
wl='-Wl,'
|
||||||
|
;;
|
||||||
|
lf95*)
|
||||||
|
wl='-Wl,'
|
||||||
|
;;
|
||||||
|
nagfor*)
|
||||||
|
wl='-Wl,-Wl,,'
|
||||||
|
;;
|
||||||
|
pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*)
|
||||||
|
wl='-Wl,'
|
||||||
|
;;
|
||||||
|
ccc*)
|
||||||
|
wl='-Wl,'
|
||||||
|
;;
|
||||||
|
xl* | bgxl* | bgf* | mpixl*)
|
||||||
|
wl='-Wl,'
|
||||||
|
;;
|
||||||
|
como)
|
||||||
|
wl='-lopt='
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
case `$CC -V 2>&1 | sed 5q` in
|
||||||
|
*Sun\ F* | *Sun*Fortran*)
|
||||||
|
wl=
|
||||||
|
;;
|
||||||
|
*Sun\ C*)
|
||||||
|
wl='-Wl,'
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
newsos6)
|
||||||
|
;;
|
||||||
|
*nto* | *qnx*)
|
||||||
|
;;
|
||||||
|
osf3* | osf4* | osf5*)
|
||||||
|
wl='-Wl,'
|
||||||
|
;;
|
||||||
|
rdos*)
|
||||||
|
;;
|
||||||
|
solaris*)
|
||||||
|
case $cc_basename in
|
||||||
|
f77* | f90* | f95* | sunf77* | sunf90* | sunf95*)
|
||||||
|
wl='-Qoption ld '
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
wl='-Wl,'
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
sunos4*)
|
||||||
|
wl='-Qoption ld '
|
||||||
|
;;
|
||||||
|
sysv4 | sysv4.2uw2* | sysv4.3*)
|
||||||
|
wl='-Wl,'
|
||||||
|
;;
|
||||||
|
sysv4*MP*)
|
||||||
|
;;
|
||||||
|
sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
|
||||||
|
wl='-Wl,'
|
||||||
|
;;
|
||||||
|
unicos*)
|
||||||
|
wl='-Wl,'
|
||||||
|
;;
|
||||||
|
uts4*)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Code taken from libtool.m4's _LT_LINKER_SHLIBS.
|
||||||
|
|
||||||
|
hardcode_libdir_flag_spec=
|
||||||
|
hardcode_libdir_separator=
|
||||||
|
hardcode_direct=no
|
||||||
|
hardcode_minus_L=no
|
||||||
|
|
||||||
|
case "$host_os" in
|
||||||
|
cygwin* | mingw* | pw32* | cegcc*)
|
||||||
|
# FIXME: the MSVC++ port hasn't been tested in a loooong time
|
||||||
|
# When not using gcc, we currently assume that we are using
|
||||||
|
# Microsoft Visual C++.
|
||||||
|
if test "$GCC" != yes; then
|
||||||
|
with_gnu_ld=no
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
interix*)
|
||||||
|
# we just hope/assume this is gcc and not c89 (= MSVC++)
|
||||||
|
with_gnu_ld=yes
|
||||||
|
;;
|
||||||
|
openbsd*)
|
||||||
|
with_gnu_ld=no
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
ld_shlibs=yes
|
||||||
|
if test "$with_gnu_ld" = yes; then
|
||||||
|
# Set some defaults for GNU ld with shared library support. These
|
||||||
|
# are reset later if shared libraries are not supported. Putting them
|
||||||
|
# here allows them to be overridden if necessary.
|
||||||
|
# Unlike libtool, we use -rpath here, not --rpath, since the documented
|
||||||
|
# option of GNU ld is called -rpath, not --rpath.
|
||||||
|
hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
|
||||||
|
case "$host_os" in
|
||||||
|
aix[3-9]*)
|
||||||
|
# On AIX/PPC, the GNU linker is very broken
|
||||||
|
if test "$host_cpu" != ia64; then
|
||||||
|
ld_shlibs=no
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
amigaos*)
|
||||||
|
case "$host_cpu" in
|
||||||
|
powerpc)
|
||||||
|
;;
|
||||||
|
m68k)
|
||||||
|
hardcode_libdir_flag_spec='-L$libdir'
|
||||||
|
hardcode_minus_L=yes
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
beos*)
|
||||||
|
if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
|
||||||
|
:
|
||||||
|
else
|
||||||
|
ld_shlibs=no
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
cygwin* | mingw* | pw32* | cegcc*)
|
||||||
|
# hardcode_libdir_flag_spec is actually meaningless, as there is
|
||||||
|
# no search path for DLLs.
|
||||||
|
hardcode_libdir_flag_spec='-L$libdir'
|
||||||
|
if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then
|
||||||
|
:
|
||||||
|
else
|
||||||
|
ld_shlibs=no
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
haiku*)
|
||||||
|
;;
|
||||||
|
interix[3-9]*)
|
||||||
|
hardcode_direct=no
|
||||||
|
hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
|
||||||
|
;;
|
||||||
|
gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu)
|
||||||
|
if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
|
||||||
|
:
|
||||||
|
else
|
||||||
|
ld_shlibs=no
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
netbsd*)
|
||||||
|
;;
|
||||||
|
solaris*)
|
||||||
|
if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then
|
||||||
|
ld_shlibs=no
|
||||||
|
elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
|
||||||
|
:
|
||||||
|
else
|
||||||
|
ld_shlibs=no
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)
|
||||||
|
case `$LD -v 2>&1` in
|
||||||
|
*\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*)
|
||||||
|
ld_shlibs=no
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
|
||||||
|
hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`'
|
||||||
|
else
|
||||||
|
ld_shlibs=no
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
sunos4*)
|
||||||
|
hardcode_direct=yes
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
|
||||||
|
:
|
||||||
|
else
|
||||||
|
ld_shlibs=no
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
if test "$ld_shlibs" = no; then
|
||||||
|
hardcode_libdir_flag_spec=
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
case "$host_os" in
|
||||||
|
aix3*)
|
||||||
|
# Note: this linker hardcodes the directories in LIBPATH if there
|
||||||
|
# are no directories specified by -L.
|
||||||
|
hardcode_minus_L=yes
|
||||||
|
if test "$GCC" = yes; then
|
||||||
|
# Neither direct hardcoding nor static linking is supported with a
|
||||||
|
# broken collect2.
|
||||||
|
hardcode_direct=unsupported
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
aix[4-9]*)
|
||||||
|
if test "$host_cpu" = ia64; then
|
||||||
|
# On IA64, the linker does run time linking by default, so we don't
|
||||||
|
# have to do anything special.
|
||||||
|
aix_use_runtimelinking=no
|
||||||
|
else
|
||||||
|
aix_use_runtimelinking=no
|
||||||
|
# Test if we are trying to use run time linking or normal
|
||||||
|
# AIX style linking. If -brtl is somewhere in LDFLAGS, we
|
||||||
|
# need to do runtime linking.
|
||||||
|
case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*)
|
||||||
|
for ld_flag in $LDFLAGS; do
|
||||||
|
if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then
|
||||||
|
aix_use_runtimelinking=yes
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
hardcode_direct=yes
|
||||||
|
hardcode_libdir_separator=':'
|
||||||
|
if test "$GCC" = yes; then
|
||||||
|
case $host_os in aix4.[012]|aix4.[012].*)
|
||||||
|
collect2name=`${CC} -print-prog-name=collect2`
|
||||||
|
if test -f "$collect2name" && \
|
||||||
|
strings "$collect2name" | grep resolve_lib_name >/dev/null
|
||||||
|
then
|
||||||
|
# We have reworked collect2
|
||||||
|
:
|
||||||
|
else
|
||||||
|
# We have old collect2
|
||||||
|
hardcode_direct=unsupported
|
||||||
|
hardcode_minus_L=yes
|
||||||
|
hardcode_libdir_flag_spec='-L$libdir'
|
||||||
|
hardcode_libdir_separator=
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
# Begin _LT_AC_SYS_LIBPATH_AIX.
|
||||||
|
echo 'int main () { return 0; }' > conftest.c
|
||||||
|
${CC} ${LDFLAGS} conftest.c -o conftest
|
||||||
|
aix_libpath=`dump -H conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; }
|
||||||
|
}'`
|
||||||
|
if test -z "$aix_libpath"; then
|
||||||
|
aix_libpath=`dump -HX64 conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; }
|
||||||
|
}'`
|
||||||
|
fi
|
||||||
|
if test -z "$aix_libpath"; then
|
||||||
|
aix_libpath="/usr/lib:/lib"
|
||||||
|
fi
|
||||||
|
rm -f conftest.c conftest
|
||||||
|
# End _LT_AC_SYS_LIBPATH_AIX.
|
||||||
|
if test "$aix_use_runtimelinking" = yes; then
|
||||||
|
hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath"
|
||||||
|
else
|
||||||
|
if test "$host_cpu" = ia64; then
|
||||||
|
hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib'
|
||||||
|
else
|
||||||
|
hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
amigaos*)
|
||||||
|
case "$host_cpu" in
|
||||||
|
powerpc)
|
||||||
|
;;
|
||||||
|
m68k)
|
||||||
|
hardcode_libdir_flag_spec='-L$libdir'
|
||||||
|
hardcode_minus_L=yes
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
bsdi[45]*)
|
||||||
|
;;
|
||||||
|
cygwin* | mingw* | pw32* | cegcc*)
|
||||||
|
# When not using gcc, we currently assume that we are using
|
||||||
|
# Microsoft Visual C++.
|
||||||
|
# hardcode_libdir_flag_spec is actually meaningless, as there is
|
||||||
|
# no search path for DLLs.
|
||||||
|
hardcode_libdir_flag_spec=' '
|
||||||
|
libext=lib
|
||||||
|
;;
|
||||||
|
darwin* | rhapsody*)
|
||||||
|
hardcode_direct=no
|
||||||
|
if { case $cc_basename in ifort*) true;; *) test "$GCC" = yes;; esac; }; then
|
||||||
|
:
|
||||||
|
else
|
||||||
|
ld_shlibs=no
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
dgux*)
|
||||||
|
hardcode_libdir_flag_spec='-L$libdir'
|
||||||
|
;;
|
||||||
|
freebsd2.2*)
|
||||||
|
hardcode_libdir_flag_spec='-R$libdir'
|
||||||
|
hardcode_direct=yes
|
||||||
|
;;
|
||||||
|
freebsd2*)
|
||||||
|
hardcode_direct=yes
|
||||||
|
hardcode_minus_L=yes
|
||||||
|
;;
|
||||||
|
freebsd* | dragonfly*)
|
||||||
|
hardcode_libdir_flag_spec='-R$libdir'
|
||||||
|
hardcode_direct=yes
|
||||||
|
;;
|
||||||
|
hpux9*)
|
||||||
|
hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
|
||||||
|
hardcode_libdir_separator=:
|
||||||
|
hardcode_direct=yes
|
||||||
|
# hardcode_minus_L: Not really in the search PATH,
|
||||||
|
# but as the default location of the library.
|
||||||
|
hardcode_minus_L=yes
|
||||||
|
;;
|
||||||
|
hpux10*)
|
||||||
|
if test "$with_gnu_ld" = no; then
|
||||||
|
hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
|
||||||
|
hardcode_libdir_separator=:
|
||||||
|
hardcode_direct=yes
|
||||||
|
# hardcode_minus_L: Not really in the search PATH,
|
||||||
|
# but as the default location of the library.
|
||||||
|
hardcode_minus_L=yes
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
hpux11*)
|
||||||
|
if test "$with_gnu_ld" = no; then
|
||||||
|
hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
|
||||||
|
hardcode_libdir_separator=:
|
||||||
|
case $host_cpu in
|
||||||
|
hppa*64*|ia64*)
|
||||||
|
hardcode_direct=no
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
hardcode_direct=yes
|
||||||
|
# hardcode_minus_L: Not really in the search PATH,
|
||||||
|
# but as the default location of the library.
|
||||||
|
hardcode_minus_L=yes
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
irix5* | irix6* | nonstopux*)
|
||||||
|
hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
|
||||||
|
hardcode_libdir_separator=:
|
||||||
|
;;
|
||||||
|
netbsd*)
|
||||||
|
hardcode_libdir_flag_spec='-R$libdir'
|
||||||
|
hardcode_direct=yes
|
||||||
|
;;
|
||||||
|
newsos6)
|
||||||
|
hardcode_direct=yes
|
||||||
|
hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
|
||||||
|
hardcode_libdir_separator=:
|
||||||
|
;;
|
||||||
|
*nto* | *qnx*)
|
||||||
|
;;
|
||||||
|
openbsd*)
|
||||||
|
if test -f /usr/libexec/ld.so; then
|
||||||
|
hardcode_direct=yes
|
||||||
|
if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
|
||||||
|
hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
|
||||||
|
else
|
||||||
|
case "$host_os" in
|
||||||
|
openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*)
|
||||||
|
hardcode_libdir_flag_spec='-R$libdir'
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
ld_shlibs=no
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
os2*)
|
||||||
|
hardcode_libdir_flag_spec='-L$libdir'
|
||||||
|
hardcode_minus_L=yes
|
||||||
|
;;
|
||||||
|
osf3*)
|
||||||
|
hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
|
||||||
|
hardcode_libdir_separator=:
|
||||||
|
;;
|
||||||
|
osf4* | osf5*)
|
||||||
|
if test "$GCC" = yes; then
|
||||||
|
hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
|
||||||
|
else
|
||||||
|
# Both cc and cxx compiler support -rpath directly
|
||||||
|
hardcode_libdir_flag_spec='-rpath $libdir'
|
||||||
|
fi
|
||||||
|
hardcode_libdir_separator=:
|
||||||
|
;;
|
||||||
|
solaris*)
|
||||||
|
hardcode_libdir_flag_spec='-R$libdir'
|
||||||
|
;;
|
||||||
|
sunos4*)
|
||||||
|
hardcode_libdir_flag_spec='-L$libdir'
|
||||||
|
hardcode_direct=yes
|
||||||
|
hardcode_minus_L=yes
|
||||||
|
;;
|
||||||
|
sysv4)
|
||||||
|
case $host_vendor in
|
||||||
|
sni)
|
||||||
|
hardcode_direct=yes # is this really true???
|
||||||
|
;;
|
||||||
|
siemens)
|
||||||
|
hardcode_direct=no
|
||||||
|
;;
|
||||||
|
motorola)
|
||||||
|
hardcode_direct=no #Motorola manual says yes, but my tests say they lie
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
sysv4.3*)
|
||||||
|
;;
|
||||||
|
sysv4*MP*)
|
||||||
|
if test -d /usr/nec; then
|
||||||
|
ld_shlibs=yes
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*)
|
||||||
|
;;
|
||||||
|
sysv5* | sco3.2v5* | sco5v6*)
|
||||||
|
hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`'
|
||||||
|
hardcode_libdir_separator=':'
|
||||||
|
;;
|
||||||
|
uts4*)
|
||||||
|
hardcode_libdir_flag_spec='-L$libdir'
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
ld_shlibs=no
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Check dynamic linker characteristics
|
||||||
|
# Code taken from libtool.m4's _LT_SYS_DYNAMIC_LINKER.
|
||||||
|
# Unlike libtool.m4, here we don't care about _all_ names of the library, but
|
||||||
|
# only about the one the linker finds when passed -lNAME. This is the last
|
||||||
|
# element of library_names_spec in libtool.m4, or possibly two of them if the
|
||||||
|
# linker has special search rules.
|
||||||
|
library_names_spec= # the last element of library_names_spec in libtool.m4
|
||||||
|
libname_spec='lib$name'
|
||||||
|
case "$host_os" in
|
||||||
|
aix3*)
|
||||||
|
library_names_spec='$libname.a'
|
||||||
|
;;
|
||||||
|
aix[4-9]*)
|
||||||
|
library_names_spec='$libname$shrext'
|
||||||
|
;;
|
||||||
|
amigaos*)
|
||||||
|
case "$host_cpu" in
|
||||||
|
powerpc*)
|
||||||
|
library_names_spec='$libname$shrext' ;;
|
||||||
|
m68k)
|
||||||
|
library_names_spec='$libname.a' ;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
beos*)
|
||||||
|
library_names_spec='$libname$shrext'
|
||||||
|
;;
|
||||||
|
bsdi[45]*)
|
||||||
|
library_names_spec='$libname$shrext'
|
||||||
|
;;
|
||||||
|
cygwin* | mingw* | pw32* | cegcc*)
|
||||||
|
shrext=.dll
|
||||||
|
library_names_spec='$libname.dll.a $libname.lib'
|
||||||
|
;;
|
||||||
|
darwin* | rhapsody*)
|
||||||
|
shrext=.dylib
|
||||||
|
library_names_spec='$libname$shrext'
|
||||||
|
;;
|
||||||
|
dgux*)
|
||||||
|
library_names_spec='$libname$shrext'
|
||||||
|
;;
|
||||||
|
freebsd* | dragonfly*)
|
||||||
|
case "$host_os" in
|
||||||
|
freebsd[123]*)
|
||||||
|
library_names_spec='$libname$shrext$versuffix' ;;
|
||||||
|
*)
|
||||||
|
library_names_spec='$libname$shrext' ;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
gnu*)
|
||||||
|
library_names_spec='$libname$shrext'
|
||||||
|
;;
|
||||||
|
haiku*)
|
||||||
|
library_names_spec='$libname$shrext'
|
||||||
|
;;
|
||||||
|
hpux9* | hpux10* | hpux11*)
|
||||||
|
case $host_cpu in
|
||||||
|
ia64*)
|
||||||
|
shrext=.so
|
||||||
|
;;
|
||||||
|
hppa*64*)
|
||||||
|
shrext=.sl
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
shrext=.sl
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
library_names_spec='$libname$shrext'
|
||||||
|
;;
|
||||||
|
interix[3-9]*)
|
||||||
|
library_names_spec='$libname$shrext'
|
||||||
|
;;
|
||||||
|
irix5* | irix6* | nonstopux*)
|
||||||
|
library_names_spec='$libname$shrext'
|
||||||
|
case "$host_os" in
|
||||||
|
irix5* | nonstopux*)
|
||||||
|
libsuff= shlibsuff=
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
case $LD in
|
||||||
|
*-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= ;;
|
||||||
|
*-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 ;;
|
||||||
|
*-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 ;;
|
||||||
|
*) libsuff= shlibsuff= ;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
linux*oldld* | linux*aout* | linux*coff*)
|
||||||
|
;;
|
||||||
|
linux* | k*bsd*-gnu | kopensolaris*-gnu)
|
||||||
|
library_names_spec='$libname$shrext'
|
||||||
|
;;
|
||||||
|
knetbsd*-gnu)
|
||||||
|
library_names_spec='$libname$shrext'
|
||||||
|
;;
|
||||||
|
netbsd*)
|
||||||
|
library_names_spec='$libname$shrext'
|
||||||
|
;;
|
||||||
|
newsos6)
|
||||||
|
library_names_spec='$libname$shrext'
|
||||||
|
;;
|
||||||
|
*nto* | *qnx*)
|
||||||
|
library_names_spec='$libname$shrext'
|
||||||
|
;;
|
||||||
|
openbsd*)
|
||||||
|
library_names_spec='$libname$shrext$versuffix'
|
||||||
|
;;
|
||||||
|
os2*)
|
||||||
|
libname_spec='$name'
|
||||||
|
shrext=.dll
|
||||||
|
library_names_spec='$libname.a'
|
||||||
|
;;
|
||||||
|
osf3* | osf4* | osf5*)
|
||||||
|
library_names_spec='$libname$shrext'
|
||||||
|
;;
|
||||||
|
rdos*)
|
||||||
|
;;
|
||||||
|
solaris*)
|
||||||
|
library_names_spec='$libname$shrext'
|
||||||
|
;;
|
||||||
|
sunos4*)
|
||||||
|
library_names_spec='$libname$shrext$versuffix'
|
||||||
|
;;
|
||||||
|
sysv4 | sysv4.3*)
|
||||||
|
library_names_spec='$libname$shrext'
|
||||||
|
;;
|
||||||
|
sysv4*MP*)
|
||||||
|
library_names_spec='$libname$shrext'
|
||||||
|
;;
|
||||||
|
sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
|
||||||
|
library_names_spec='$libname$shrext'
|
||||||
|
;;
|
||||||
|
tpf*)
|
||||||
|
library_names_spec='$libname$shrext'
|
||||||
|
;;
|
||||||
|
uts4*)
|
||||||
|
library_names_spec='$libname$shrext'
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
sed_quote_subst='s/\(["`$\\]\)/\\\1/g'
|
||||||
|
escaped_wl=`echo "X$wl" | sed -e 's/^X//' -e "$sed_quote_subst"`
|
||||||
|
shlibext=`echo "$shrext" | sed -e 's,^\.,,'`
|
||||||
|
escaped_libname_spec=`echo "X$libname_spec" | sed -e 's/^X//' -e "$sed_quote_subst"`
|
||||||
|
escaped_library_names_spec=`echo "X$library_names_spec" | sed -e 's/^X//' -e "$sed_quote_subst"`
|
||||||
|
escaped_hardcode_libdir_flag_spec=`echo "X$hardcode_libdir_flag_spec" | sed -e 's/^X//' -e "$sed_quote_subst"`
|
||||||
|
|
||||||
|
LC_ALL=C sed -e 's/^\([a-zA-Z0-9_]*\)=/acl_cv_\1=/' <<EOF
|
||||||
|
|
||||||
|
# How to pass a linker flag through the compiler.
|
||||||
|
wl="$escaped_wl"
|
||||||
|
|
||||||
|
# Static library suffix (normally "a").
|
||||||
|
libext="$libext"
|
||||||
|
|
||||||
|
# Shared library suffix (normally "so").
|
||||||
|
shlibext="$shlibext"
|
||||||
|
|
||||||
|
# Format of library name prefix.
|
||||||
|
libname_spec="$escaped_libname_spec"
|
||||||
|
|
||||||
|
# Library names that the linker finds when passed -lNAME.
|
||||||
|
library_names_spec="$escaped_library_names_spec"
|
||||||
|
|
||||||
|
# Flag to hardcode \$libdir into a binary during linking.
|
||||||
|
# This must work even if \$libdir does not exist.
|
||||||
|
hardcode_libdir_flag_spec="$escaped_hardcode_libdir_flag_spec"
|
||||||
|
|
||||||
|
# Whether we need a single -rpath flag with a separated argument.
|
||||||
|
hardcode_libdir_separator="$hardcode_libdir_separator"
|
||||||
|
|
||||||
|
# Set to yes if using DIR/libNAME.so during linking hardcodes DIR into the
|
||||||
|
# resulting binary.
|
||||||
|
hardcode_direct="$hardcode_direct"
|
||||||
|
|
||||||
|
# Set to yes if using the -LDIR flag during linking hardcodes DIR into the
|
||||||
|
# resulting binary.
|
||||||
|
hardcode_minus_L="$hardcode_minus_L"
|
||||||
|
|
||||||
|
EOF
|
||||||
+1890
File diff suppressed because it is too large
Load Diff
+790
@@ -0,0 +1,790 @@
|
|||||||
|
#! /bin/sh
|
||||||
|
# depcomp - compile a program generating dependencies as side-effects
|
||||||
|
|
||||||
|
scriptversion=2018-03-07.03; # UTC
|
||||||
|
|
||||||
|
# Copyright (C) 1999-2022 Free Software Foundation, Inc.
|
||||||
|
|
||||||
|
# This program is free software; you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation; either version 2, or (at your option)
|
||||||
|
# any later version.
|
||||||
|
|
||||||
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
# As a special exception to the GNU General Public License, if you
|
||||||
|
# distribute this file as part of a program that contains a
|
||||||
|
# configuration script generated by Autoconf, you may include it under
|
||||||
|
# the same distribution terms that you use for the rest of that program.
|
||||||
|
|
||||||
|
# Originally written by Alexandre Oliva <oliva@dcc.unicamp.br>.
|
||||||
|
|
||||||
|
case $1 in
|
||||||
|
'')
|
||||||
|
echo "$0: No command. Try '$0 --help' for more information." 1>&2
|
||||||
|
exit 1;
|
||||||
|
;;
|
||||||
|
-h | --h*)
|
||||||
|
cat <<\EOF
|
||||||
|
Usage: depcomp [--help] [--version] PROGRAM [ARGS]
|
||||||
|
|
||||||
|
Run PROGRAMS ARGS to compile a file, generating dependencies
|
||||||
|
as side-effects.
|
||||||
|
|
||||||
|
Environment variables:
|
||||||
|
depmode Dependency tracking mode.
|
||||||
|
source Source file read by 'PROGRAMS ARGS'.
|
||||||
|
object Object file output by 'PROGRAMS ARGS'.
|
||||||
|
DEPDIR directory where to store dependencies.
|
||||||
|
depfile Dependency file to output.
|
||||||
|
tmpdepfile Temporary file to use when outputting dependencies.
|
||||||
|
libtool Whether libtool is used (yes/no).
|
||||||
|
|
||||||
|
Report bugs to <bug-automake@gnu.org>.
|
||||||
|
EOF
|
||||||
|
exit $?
|
||||||
|
;;
|
||||||
|
-v | --v*)
|
||||||
|
echo "depcomp $scriptversion"
|
||||||
|
exit $?
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# Get the directory component of the given path, and save it in the
|
||||||
|
# global variables '$dir'. Note that this directory component will
|
||||||
|
# be either empty or ending with a '/' character. This is deliberate.
|
||||||
|
set_dir_from ()
|
||||||
|
{
|
||||||
|
case $1 in
|
||||||
|
*/*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;;
|
||||||
|
*) dir=;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
# Get the suffix-stripped basename of the given path, and save it the
|
||||||
|
# global variable '$base'.
|
||||||
|
set_base_from ()
|
||||||
|
{
|
||||||
|
base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'`
|
||||||
|
}
|
||||||
|
|
||||||
|
# If no dependency file was actually created by the compiler invocation,
|
||||||
|
# we still have to create a dummy depfile, to avoid errors with the
|
||||||
|
# Makefile "include basename.Plo" scheme.
|
||||||
|
make_dummy_depfile ()
|
||||||
|
{
|
||||||
|
echo "#dummy" > "$depfile"
|
||||||
|
}
|
||||||
|
|
||||||
|
# Factor out some common post-processing of the generated depfile.
|
||||||
|
# Requires the auxiliary global variable '$tmpdepfile' to be set.
|
||||||
|
aix_post_process_depfile ()
|
||||||
|
{
|
||||||
|
# If the compiler actually managed to produce a dependency file,
|
||||||
|
# post-process it.
|
||||||
|
if test -f "$tmpdepfile"; then
|
||||||
|
# Each line is of the form 'foo.o: dependency.h'.
|
||||||
|
# Do two passes, one to just change these to
|
||||||
|
# $object: dependency.h
|
||||||
|
# and one to simply output
|
||||||
|
# dependency.h:
|
||||||
|
# which is needed to avoid the deleted-header problem.
|
||||||
|
{ sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile"
|
||||||
|
sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile"
|
||||||
|
} > "$depfile"
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
else
|
||||||
|
make_dummy_depfile
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
# A tabulation character.
|
||||||
|
tab=' '
|
||||||
|
# A newline character.
|
||||||
|
nl='
|
||||||
|
'
|
||||||
|
# Character ranges might be problematic outside the C locale.
|
||||||
|
# These definitions help.
|
||||||
|
upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ
|
||||||
|
lower=abcdefghijklmnopqrstuvwxyz
|
||||||
|
alpha=${upper}${lower}
|
||||||
|
|
||||||
|
if test -z "$depmode" || test -z "$source" || test -z "$object"; then
|
||||||
|
echo "depcomp: Variables source, object and depmode must be set" 1>&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po.
|
||||||
|
depfile=${depfile-`echo "$object" |
|
||||||
|
sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`}
|
||||||
|
tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`}
|
||||||
|
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
|
||||||
|
# Avoid interferences from the environment.
|
||||||
|
gccflag= dashmflag=
|
||||||
|
|
||||||
|
# Some modes work just like other modes, but use different flags. We
|
||||||
|
# parameterize here, but still list the modes in the big case below,
|
||||||
|
# to make depend.m4 easier to write. Note that we *cannot* use a case
|
||||||
|
# here, because this file can only contain one case statement.
|
||||||
|
if test "$depmode" = hp; then
|
||||||
|
# HP compiler uses -M and no extra arg.
|
||||||
|
gccflag=-M
|
||||||
|
depmode=gcc
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test "$depmode" = dashXmstdout; then
|
||||||
|
# This is just like dashmstdout with a different argument.
|
||||||
|
dashmflag=-xM
|
||||||
|
depmode=dashmstdout
|
||||||
|
fi
|
||||||
|
|
||||||
|
cygpath_u="cygpath -u -f -"
|
||||||
|
if test "$depmode" = msvcmsys; then
|
||||||
|
# This is just like msvisualcpp but w/o cygpath translation.
|
||||||
|
# Just convert the backslash-escaped backslashes to single forward
|
||||||
|
# slashes to satisfy depend.m4
|
||||||
|
cygpath_u='sed s,\\\\,/,g'
|
||||||
|
depmode=msvisualcpp
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test "$depmode" = msvc7msys; then
|
||||||
|
# This is just like msvc7 but w/o cygpath translation.
|
||||||
|
# Just convert the backslash-escaped backslashes to single forward
|
||||||
|
# slashes to satisfy depend.m4
|
||||||
|
cygpath_u='sed s,\\\\,/,g'
|
||||||
|
depmode=msvc7
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test "$depmode" = xlc; then
|
||||||
|
# IBM C/C++ Compilers xlc/xlC can output gcc-like dependency information.
|
||||||
|
gccflag=-qmakedep=gcc,-MF
|
||||||
|
depmode=gcc
|
||||||
|
fi
|
||||||
|
|
||||||
|
case "$depmode" in
|
||||||
|
gcc3)
|
||||||
|
## gcc 3 implements dependency tracking that does exactly what
|
||||||
|
## we want. Yay! Note: for some reason libtool 1.4 doesn't like
|
||||||
|
## it if -MD -MP comes after the -MF stuff. Hmm.
|
||||||
|
## Unfortunately, FreeBSD c89 acceptance of flags depends upon
|
||||||
|
## the command line argument order; so add the flags where they
|
||||||
|
## appear in depend2.am. Note that the slowdown incurred here
|
||||||
|
## affects only configure: in makefiles, %FASTDEP% shortcuts this.
|
||||||
|
for arg
|
||||||
|
do
|
||||||
|
case $arg in
|
||||||
|
-c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
|
||||||
|
*) set fnord "$@" "$arg" ;;
|
||||||
|
esac
|
||||||
|
shift # fnord
|
||||||
|
shift # $arg
|
||||||
|
done
|
||||||
|
"$@"
|
||||||
|
stat=$?
|
||||||
|
if test $stat -ne 0; then
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
exit $stat
|
||||||
|
fi
|
||||||
|
mv "$tmpdepfile" "$depfile"
|
||||||
|
;;
|
||||||
|
|
||||||
|
gcc)
|
||||||
|
## Note that this doesn't just cater to obsosete pre-3.x GCC compilers.
|
||||||
|
## but also to in-use compilers like IMB xlc/xlC and the HP C compiler.
|
||||||
|
## (see the conditional assignment to $gccflag above).
|
||||||
|
## There are various ways to get dependency output from gcc. Here's
|
||||||
|
## why we pick this rather obscure method:
|
||||||
|
## - Don't want to use -MD because we'd like the dependencies to end
|
||||||
|
## up in a subdir. Having to rename by hand is ugly.
|
||||||
|
## (We might end up doing this anyway to support other compilers.)
|
||||||
|
## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like
|
||||||
|
## -MM, not -M (despite what the docs say). Also, it might not be
|
||||||
|
## supported by the other compilers which use the 'gcc' depmode.
|
||||||
|
## - Using -M directly means running the compiler twice (even worse
|
||||||
|
## than renaming).
|
||||||
|
if test -z "$gccflag"; then
|
||||||
|
gccflag=-MD,
|
||||||
|
fi
|
||||||
|
"$@" -Wp,"$gccflag$tmpdepfile"
|
||||||
|
stat=$?
|
||||||
|
if test $stat -ne 0; then
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
exit $stat
|
||||||
|
fi
|
||||||
|
rm -f "$depfile"
|
||||||
|
echo "$object : \\" > "$depfile"
|
||||||
|
# The second -e expression handles DOS-style file names with drive
|
||||||
|
# letters.
|
||||||
|
sed -e 's/^[^:]*: / /' \
|
||||||
|
-e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile"
|
||||||
|
## This next piece of magic avoids the "deleted header file" problem.
|
||||||
|
## The problem is that when a header file which appears in a .P file
|
||||||
|
## is deleted, the dependency causes make to die (because there is
|
||||||
|
## typically no way to rebuild the header). We avoid this by adding
|
||||||
|
## dummy dependencies for each header file. Too bad gcc doesn't do
|
||||||
|
## this for us directly.
|
||||||
|
## Some versions of gcc put a space before the ':'. On the theory
|
||||||
|
## that the space means something, we add a space to the output as
|
||||||
|
## well. hp depmode also adds that space, but also prefixes the VPATH
|
||||||
|
## to the object. Take care to not repeat it in the output.
|
||||||
|
## Some versions of the HPUX 10.20 sed can't process this invocation
|
||||||
|
## correctly. Breaking it into two sed invocations is a workaround.
|
||||||
|
tr ' ' "$nl" < "$tmpdepfile" \
|
||||||
|
| sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \
|
||||||
|
| sed -e 's/$/ :/' >> "$depfile"
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
;;
|
||||||
|
|
||||||
|
hp)
|
||||||
|
# This case exists only to let depend.m4 do its work. It works by
|
||||||
|
# looking at the text of this script. This case will never be run,
|
||||||
|
# since it is checked for above.
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
|
||||||
|
sgi)
|
||||||
|
if test "$libtool" = yes; then
|
||||||
|
"$@" "-Wp,-MDupdate,$tmpdepfile"
|
||||||
|
else
|
||||||
|
"$@" -MDupdate "$tmpdepfile"
|
||||||
|
fi
|
||||||
|
stat=$?
|
||||||
|
if test $stat -ne 0; then
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
exit $stat
|
||||||
|
fi
|
||||||
|
rm -f "$depfile"
|
||||||
|
|
||||||
|
if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files
|
||||||
|
echo "$object : \\" > "$depfile"
|
||||||
|
# Clip off the initial element (the dependent). Don't try to be
|
||||||
|
# clever and replace this with sed code, as IRIX sed won't handle
|
||||||
|
# lines with more than a fixed number of characters (4096 in
|
||||||
|
# IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines;
|
||||||
|
# the IRIX cc adds comments like '#:fec' to the end of the
|
||||||
|
# dependency line.
|
||||||
|
tr ' ' "$nl" < "$tmpdepfile" \
|
||||||
|
| sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' \
|
||||||
|
| tr "$nl" ' ' >> "$depfile"
|
||||||
|
echo >> "$depfile"
|
||||||
|
# The second pass generates a dummy entry for each header file.
|
||||||
|
tr ' ' "$nl" < "$tmpdepfile" \
|
||||||
|
| sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \
|
||||||
|
>> "$depfile"
|
||||||
|
else
|
||||||
|
make_dummy_depfile
|
||||||
|
fi
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
;;
|
||||||
|
|
||||||
|
xlc)
|
||||||
|
# This case exists only to let depend.m4 do its work. It works by
|
||||||
|
# looking at the text of this script. This case will never be run,
|
||||||
|
# since it is checked for above.
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
|
||||||
|
aix)
|
||||||
|
# The C for AIX Compiler uses -M and outputs the dependencies
|
||||||
|
# in a .u file. In older versions, this file always lives in the
|
||||||
|
# current directory. Also, the AIX compiler puts '$object:' at the
|
||||||
|
# start of each line; $object doesn't have directory information.
|
||||||
|
# Version 6 uses the directory in both cases.
|
||||||
|
set_dir_from "$object"
|
||||||
|
set_base_from "$object"
|
||||||
|
if test "$libtool" = yes; then
|
||||||
|
tmpdepfile1=$dir$base.u
|
||||||
|
tmpdepfile2=$base.u
|
||||||
|
tmpdepfile3=$dir.libs/$base.u
|
||||||
|
"$@" -Wc,-M
|
||||||
|
else
|
||||||
|
tmpdepfile1=$dir$base.u
|
||||||
|
tmpdepfile2=$dir$base.u
|
||||||
|
tmpdepfile3=$dir$base.u
|
||||||
|
"$@" -M
|
||||||
|
fi
|
||||||
|
stat=$?
|
||||||
|
if test $stat -ne 0; then
|
||||||
|
rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
|
||||||
|
exit $stat
|
||||||
|
fi
|
||||||
|
|
||||||
|
for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
|
||||||
|
do
|
||||||
|
test -f "$tmpdepfile" && break
|
||||||
|
done
|
||||||
|
aix_post_process_depfile
|
||||||
|
;;
|
||||||
|
|
||||||
|
tcc)
|
||||||
|
# tcc (Tiny C Compiler) understand '-MD -MF file' since version 0.9.26
|
||||||
|
# FIXME: That version still under development at the moment of writing.
|
||||||
|
# Make that this statement remains true also for stable, released
|
||||||
|
# versions.
|
||||||
|
# It will wrap lines (doesn't matter whether long or short) with a
|
||||||
|
# trailing '\', as in:
|
||||||
|
#
|
||||||
|
# foo.o : \
|
||||||
|
# foo.c \
|
||||||
|
# foo.h \
|
||||||
|
#
|
||||||
|
# It will put a trailing '\' even on the last line, and will use leading
|
||||||
|
# spaces rather than leading tabs (at least since its commit 0394caf7
|
||||||
|
# "Emit spaces for -MD").
|
||||||
|
"$@" -MD -MF "$tmpdepfile"
|
||||||
|
stat=$?
|
||||||
|
if test $stat -ne 0; then
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
exit $stat
|
||||||
|
fi
|
||||||
|
rm -f "$depfile"
|
||||||
|
# Each non-empty line is of the form 'foo.o : \' or ' dep.h \'.
|
||||||
|
# We have to change lines of the first kind to '$object: \'.
|
||||||
|
sed -e "s|.*:|$object :|" < "$tmpdepfile" > "$depfile"
|
||||||
|
# And for each line of the second kind, we have to emit a 'dep.h:'
|
||||||
|
# dummy dependency, to avoid the deleted-header problem.
|
||||||
|
sed -n -e 's|^ *\(.*\) *\\$|\1:|p' < "$tmpdepfile" >> "$depfile"
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
;;
|
||||||
|
|
||||||
|
## The order of this option in the case statement is important, since the
|
||||||
|
## shell code in configure will try each of these formats in the order
|
||||||
|
## listed in this file. A plain '-MD' option would be understood by many
|
||||||
|
## compilers, so we must ensure this comes after the gcc and icc options.
|
||||||
|
pgcc)
|
||||||
|
# Portland's C compiler understands '-MD'.
|
||||||
|
# Will always output deps to 'file.d' where file is the root name of the
|
||||||
|
# source file under compilation, even if file resides in a subdirectory.
|
||||||
|
# The object file name does not affect the name of the '.d' file.
|
||||||
|
# pgcc 10.2 will output
|
||||||
|
# foo.o: sub/foo.c sub/foo.h
|
||||||
|
# and will wrap long lines using '\' :
|
||||||
|
# foo.o: sub/foo.c ... \
|
||||||
|
# sub/foo.h ... \
|
||||||
|
# ...
|
||||||
|
set_dir_from "$object"
|
||||||
|
# Use the source, not the object, to determine the base name, since
|
||||||
|
# that's sadly what pgcc will do too.
|
||||||
|
set_base_from "$source"
|
||||||
|
tmpdepfile=$base.d
|
||||||
|
|
||||||
|
# For projects that build the same source file twice into different object
|
||||||
|
# files, the pgcc approach of using the *source* file root name can cause
|
||||||
|
# problems in parallel builds. Use a locking strategy to avoid stomping on
|
||||||
|
# the same $tmpdepfile.
|
||||||
|
lockdir=$base.d-lock
|
||||||
|
trap "
|
||||||
|
echo '$0: caught signal, cleaning up...' >&2
|
||||||
|
rmdir '$lockdir'
|
||||||
|
exit 1
|
||||||
|
" 1 2 13 15
|
||||||
|
numtries=100
|
||||||
|
i=$numtries
|
||||||
|
while test $i -gt 0; do
|
||||||
|
# mkdir is a portable test-and-set.
|
||||||
|
if mkdir "$lockdir" 2>/dev/null; then
|
||||||
|
# This process acquired the lock.
|
||||||
|
"$@" -MD
|
||||||
|
stat=$?
|
||||||
|
# Release the lock.
|
||||||
|
rmdir "$lockdir"
|
||||||
|
break
|
||||||
|
else
|
||||||
|
# If the lock is being held by a different process, wait
|
||||||
|
# until the winning process is done or we timeout.
|
||||||
|
while test -d "$lockdir" && test $i -gt 0; do
|
||||||
|
sleep 1
|
||||||
|
i=`expr $i - 1`
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
i=`expr $i - 1`
|
||||||
|
done
|
||||||
|
trap - 1 2 13 15
|
||||||
|
if test $i -le 0; then
|
||||||
|
echo "$0: failed to acquire lock after $numtries attempts" >&2
|
||||||
|
echo "$0: check lockdir '$lockdir'" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test $stat -ne 0; then
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
exit $stat
|
||||||
|
fi
|
||||||
|
rm -f "$depfile"
|
||||||
|
# Each line is of the form `foo.o: dependent.h',
|
||||||
|
# or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'.
|
||||||
|
# Do two passes, one to just change these to
|
||||||
|
# `$object: dependent.h' and one to simply `dependent.h:'.
|
||||||
|
sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile"
|
||||||
|
# Some versions of the HPUX 10.20 sed can't process this invocation
|
||||||
|
# correctly. Breaking it into two sed invocations is a workaround.
|
||||||
|
sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" \
|
||||||
|
| sed -e 's/$/ :/' >> "$depfile"
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
;;
|
||||||
|
|
||||||
|
hp2)
|
||||||
|
# The "hp" stanza above does not work with aCC (C++) and HP's ia64
|
||||||
|
# compilers, which have integrated preprocessors. The correct option
|
||||||
|
# to use with these is +Maked; it writes dependencies to a file named
|
||||||
|
# 'foo.d', which lands next to the object file, wherever that
|
||||||
|
# happens to be.
|
||||||
|
# Much of this is similar to the tru64 case; see comments there.
|
||||||
|
set_dir_from "$object"
|
||||||
|
set_base_from "$object"
|
||||||
|
if test "$libtool" = yes; then
|
||||||
|
tmpdepfile1=$dir$base.d
|
||||||
|
tmpdepfile2=$dir.libs/$base.d
|
||||||
|
"$@" -Wc,+Maked
|
||||||
|
else
|
||||||
|
tmpdepfile1=$dir$base.d
|
||||||
|
tmpdepfile2=$dir$base.d
|
||||||
|
"$@" +Maked
|
||||||
|
fi
|
||||||
|
stat=$?
|
||||||
|
if test $stat -ne 0; then
|
||||||
|
rm -f "$tmpdepfile1" "$tmpdepfile2"
|
||||||
|
exit $stat
|
||||||
|
fi
|
||||||
|
|
||||||
|
for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2"
|
||||||
|
do
|
||||||
|
test -f "$tmpdepfile" && break
|
||||||
|
done
|
||||||
|
if test -f "$tmpdepfile"; then
|
||||||
|
sed -e "s,^.*\.[$lower]*:,$object:," "$tmpdepfile" > "$depfile"
|
||||||
|
# Add 'dependent.h:' lines.
|
||||||
|
sed -ne '2,${
|
||||||
|
s/^ *//
|
||||||
|
s/ \\*$//
|
||||||
|
s/$/:/
|
||||||
|
p
|
||||||
|
}' "$tmpdepfile" >> "$depfile"
|
||||||
|
else
|
||||||
|
make_dummy_depfile
|
||||||
|
fi
|
||||||
|
rm -f "$tmpdepfile" "$tmpdepfile2"
|
||||||
|
;;
|
||||||
|
|
||||||
|
tru64)
|
||||||
|
# The Tru64 compiler uses -MD to generate dependencies as a side
|
||||||
|
# effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'.
|
||||||
|
# At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put
|
||||||
|
# dependencies in 'foo.d' instead, so we check for that too.
|
||||||
|
# Subdirectories are respected.
|
||||||
|
set_dir_from "$object"
|
||||||
|
set_base_from "$object"
|
||||||
|
|
||||||
|
if test "$libtool" = yes; then
|
||||||
|
# Libtool generates 2 separate objects for the 2 libraries. These
|
||||||
|
# two compilations output dependencies in $dir.libs/$base.o.d and
|
||||||
|
# in $dir$base.o.d. We have to check for both files, because
|
||||||
|
# one of the two compilations can be disabled. We should prefer
|
||||||
|
# $dir$base.o.d over $dir.libs/$base.o.d because the latter is
|
||||||
|
# automatically cleaned when .libs/ is deleted, while ignoring
|
||||||
|
# the former would cause a distcleancheck panic.
|
||||||
|
tmpdepfile1=$dir$base.o.d # libtool 1.5
|
||||||
|
tmpdepfile2=$dir.libs/$base.o.d # Likewise.
|
||||||
|
tmpdepfile3=$dir.libs/$base.d # Compaq CCC V6.2-504
|
||||||
|
"$@" -Wc,-MD
|
||||||
|
else
|
||||||
|
tmpdepfile1=$dir$base.d
|
||||||
|
tmpdepfile2=$dir$base.d
|
||||||
|
tmpdepfile3=$dir$base.d
|
||||||
|
"$@" -MD
|
||||||
|
fi
|
||||||
|
|
||||||
|
stat=$?
|
||||||
|
if test $stat -ne 0; then
|
||||||
|
rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
|
||||||
|
exit $stat
|
||||||
|
fi
|
||||||
|
|
||||||
|
for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
|
||||||
|
do
|
||||||
|
test -f "$tmpdepfile" && break
|
||||||
|
done
|
||||||
|
# Same post-processing that is required for AIX mode.
|
||||||
|
aix_post_process_depfile
|
||||||
|
;;
|
||||||
|
|
||||||
|
msvc7)
|
||||||
|
if test "$libtool" = yes; then
|
||||||
|
showIncludes=-Wc,-showIncludes
|
||||||
|
else
|
||||||
|
showIncludes=-showIncludes
|
||||||
|
fi
|
||||||
|
"$@" $showIncludes > "$tmpdepfile"
|
||||||
|
stat=$?
|
||||||
|
grep -v '^Note: including file: ' "$tmpdepfile"
|
||||||
|
if test $stat -ne 0; then
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
exit $stat
|
||||||
|
fi
|
||||||
|
rm -f "$depfile"
|
||||||
|
echo "$object : \\" > "$depfile"
|
||||||
|
# The first sed program below extracts the file names and escapes
|
||||||
|
# backslashes for cygpath. The second sed program outputs the file
|
||||||
|
# name when reading, but also accumulates all include files in the
|
||||||
|
# hold buffer in order to output them again at the end. This only
|
||||||
|
# works with sed implementations that can handle large buffers.
|
||||||
|
sed < "$tmpdepfile" -n '
|
||||||
|
/^Note: including file: *\(.*\)/ {
|
||||||
|
s//\1/
|
||||||
|
s/\\/\\\\/g
|
||||||
|
p
|
||||||
|
}' | $cygpath_u | sort -u | sed -n '
|
||||||
|
s/ /\\ /g
|
||||||
|
s/\(.*\)/'"$tab"'\1 \\/p
|
||||||
|
s/.\(.*\) \\/\1:/
|
||||||
|
H
|
||||||
|
$ {
|
||||||
|
s/.*/'"$tab"'/
|
||||||
|
G
|
||||||
|
p
|
||||||
|
}' >> "$depfile"
|
||||||
|
echo >> "$depfile" # make sure the fragment doesn't end with a backslash
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
;;
|
||||||
|
|
||||||
|
msvc7msys)
|
||||||
|
# This case exists only to let depend.m4 do its work. It works by
|
||||||
|
# looking at the text of this script. This case will never be run,
|
||||||
|
# since it is checked for above.
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
|
||||||
|
#nosideeffect)
|
||||||
|
# This comment above is used by automake to tell side-effect
|
||||||
|
# dependency tracking mechanisms from slower ones.
|
||||||
|
|
||||||
|
dashmstdout)
|
||||||
|
# Important note: in order to support this mode, a compiler *must*
|
||||||
|
# always write the preprocessed file to stdout, regardless of -o.
|
||||||
|
"$@" || exit $?
|
||||||
|
|
||||||
|
# Remove the call to Libtool.
|
||||||
|
if test "$libtool" = yes; then
|
||||||
|
while test "X$1" != 'X--mode=compile'; do
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
shift
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Remove '-o $object'.
|
||||||
|
IFS=" "
|
||||||
|
for arg
|
||||||
|
do
|
||||||
|
case $arg in
|
||||||
|
-o)
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
$object)
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
set fnord "$@" "$arg"
|
||||||
|
shift # fnord
|
||||||
|
shift # $arg
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
test -z "$dashmflag" && dashmflag=-M
|
||||||
|
# Require at least two characters before searching for ':'
|
||||||
|
# in the target name. This is to cope with DOS-style filenames:
|
||||||
|
# a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise.
|
||||||
|
"$@" $dashmflag |
|
||||||
|
sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile"
|
||||||
|
rm -f "$depfile"
|
||||||
|
cat < "$tmpdepfile" > "$depfile"
|
||||||
|
# Some versions of the HPUX 10.20 sed can't process this sed invocation
|
||||||
|
# correctly. Breaking it into two sed invocations is a workaround.
|
||||||
|
tr ' ' "$nl" < "$tmpdepfile" \
|
||||||
|
| sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \
|
||||||
|
| sed -e 's/$/ :/' >> "$depfile"
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
;;
|
||||||
|
|
||||||
|
dashXmstdout)
|
||||||
|
# This case only exists to satisfy depend.m4. It is never actually
|
||||||
|
# run, as this mode is specially recognized in the preamble.
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
|
||||||
|
makedepend)
|
||||||
|
"$@" || exit $?
|
||||||
|
# Remove any Libtool call
|
||||||
|
if test "$libtool" = yes; then
|
||||||
|
while test "X$1" != 'X--mode=compile'; do
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
shift
|
||||||
|
fi
|
||||||
|
# X makedepend
|
||||||
|
shift
|
||||||
|
cleared=no eat=no
|
||||||
|
for arg
|
||||||
|
do
|
||||||
|
case $cleared in
|
||||||
|
no)
|
||||||
|
set ""; shift
|
||||||
|
cleared=yes ;;
|
||||||
|
esac
|
||||||
|
if test $eat = yes; then
|
||||||
|
eat=no
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
case "$arg" in
|
||||||
|
-D*|-I*)
|
||||||
|
set fnord "$@" "$arg"; shift ;;
|
||||||
|
# Strip any option that makedepend may not understand. Remove
|
||||||
|
# the object too, otherwise makedepend will parse it as a source file.
|
||||||
|
-arch)
|
||||||
|
eat=yes ;;
|
||||||
|
-*|$object)
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
set fnord "$@" "$arg"; shift ;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
obj_suffix=`echo "$object" | sed 's/^.*\././'`
|
||||||
|
touch "$tmpdepfile"
|
||||||
|
${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@"
|
||||||
|
rm -f "$depfile"
|
||||||
|
# makedepend may prepend the VPATH from the source file name to the object.
|
||||||
|
# No need to regex-escape $object, excess matching of '.' is harmless.
|
||||||
|
sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile"
|
||||||
|
# Some versions of the HPUX 10.20 sed can't process the last invocation
|
||||||
|
# correctly. Breaking it into two sed invocations is a workaround.
|
||||||
|
sed '1,2d' "$tmpdepfile" \
|
||||||
|
| tr ' ' "$nl" \
|
||||||
|
| sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \
|
||||||
|
| sed -e 's/$/ :/' >> "$depfile"
|
||||||
|
rm -f "$tmpdepfile" "$tmpdepfile".bak
|
||||||
|
;;
|
||||||
|
|
||||||
|
cpp)
|
||||||
|
# Important note: in order to support this mode, a compiler *must*
|
||||||
|
# always write the preprocessed file to stdout.
|
||||||
|
"$@" || exit $?
|
||||||
|
|
||||||
|
# Remove the call to Libtool.
|
||||||
|
if test "$libtool" = yes; then
|
||||||
|
while test "X$1" != 'X--mode=compile'; do
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
shift
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Remove '-o $object'.
|
||||||
|
IFS=" "
|
||||||
|
for arg
|
||||||
|
do
|
||||||
|
case $arg in
|
||||||
|
-o)
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
$object)
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
set fnord "$@" "$arg"
|
||||||
|
shift # fnord
|
||||||
|
shift # $arg
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
"$@" -E \
|
||||||
|
| sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \
|
||||||
|
-e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \
|
||||||
|
| sed '$ s: \\$::' > "$tmpdepfile"
|
||||||
|
rm -f "$depfile"
|
||||||
|
echo "$object : \\" > "$depfile"
|
||||||
|
cat < "$tmpdepfile" >> "$depfile"
|
||||||
|
sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile"
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
;;
|
||||||
|
|
||||||
|
msvisualcpp)
|
||||||
|
# Important note: in order to support this mode, a compiler *must*
|
||||||
|
# always write the preprocessed file to stdout.
|
||||||
|
"$@" || exit $?
|
||||||
|
|
||||||
|
# Remove the call to Libtool.
|
||||||
|
if test "$libtool" = yes; then
|
||||||
|
while test "X$1" != 'X--mode=compile'; do
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
shift
|
||||||
|
fi
|
||||||
|
|
||||||
|
IFS=" "
|
||||||
|
for arg
|
||||||
|
do
|
||||||
|
case "$arg" in
|
||||||
|
-o)
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
$object)
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
"-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI")
|
||||||
|
set fnord "$@"
|
||||||
|
shift
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
set fnord "$@" "$arg"
|
||||||
|
shift
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
"$@" -E 2>/dev/null |
|
||||||
|
sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile"
|
||||||
|
rm -f "$depfile"
|
||||||
|
echo "$object : \\" > "$depfile"
|
||||||
|
sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile"
|
||||||
|
echo "$tab" >> "$depfile"
|
||||||
|
sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile"
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
;;
|
||||||
|
|
||||||
|
msvcmsys)
|
||||||
|
# This case exists only to let depend.m4 do its work. It works by
|
||||||
|
# looking at the text of this script. This case will never be run,
|
||||||
|
# since it is checked for above.
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
|
||||||
|
none)
|
||||||
|
exec "$@"
|
||||||
|
;;
|
||||||
|
|
||||||
|
*)
|
||||||
|
echo "Unknown depmode $depmode" 1>&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
exit 0
|
||||||
|
|
||||||
|
# Local Variables:
|
||||||
|
# mode: shell-script
|
||||||
|
# sh-indentation: 2
|
||||||
|
# eval: (add-hook 'before-save-hook 'time-stamp)
|
||||||
|
# time-stamp-start: "scriptversion="
|
||||||
|
# time-stamp-format: "%:y-%02m-%02d.%02H"
|
||||||
|
# time-stamp-time-zone: "UTC0"
|
||||||
|
# time-stamp-end: "; # UTC"
|
||||||
|
# End:
|
||||||
@@ -0,0 +1,516 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
#! -*-perl-*-
|
||||||
|
|
||||||
|
# Convert git log output to ChangeLog format.
|
||||||
|
|
||||||
|
# Copyright (C) 2008-2022 Free Software Foundation, Inc.
|
||||||
|
#
|
||||||
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
#
|
||||||
|
# Written by Jim Meyering
|
||||||
|
|
||||||
|
# This is a prologue that allows to run a perl script as an executable
|
||||||
|
# on systems that are compliant to a POSIX version before POSIX:2017.
|
||||||
|
# On such systems, the usual invocation of an executable through execlp()
|
||||||
|
# or execvp() fails with ENOEXEC if it is a script that does not start
|
||||||
|
# with a #! line. The script interpreter mentioned in the #! line has
|
||||||
|
# to be /bin/sh, because on GuixSD systems that is the only program that
|
||||||
|
# has a fixed file name. The second line is essential for perl and is
|
||||||
|
# also useful for editing this file in Emacs. The next two lines below
|
||||||
|
# are valid code in both sh and perl. When executed by sh, they re-execute
|
||||||
|
# the script through the perl program found in $PATH. The '-x' option
|
||||||
|
# is essential as well; without it, perl would re-execute the script
|
||||||
|
# through /bin/sh. When executed by perl, the next two lines are a no-op.
|
||||||
|
eval 'exec perl -wSx "$0" "$@"'
|
||||||
|
if 0;
|
||||||
|
|
||||||
|
my $VERSION = '2022-01-27 18:49'; # UTC
|
||||||
|
# The definition above must lie within the first 8 lines in order
|
||||||
|
# for the Emacs time-stamp write hook (at end) to update it.
|
||||||
|
# If you change this file with Emacs, please let the write hook
|
||||||
|
# do its job. Otherwise, update this string manually.
|
||||||
|
|
||||||
|
use strict;
|
||||||
|
use warnings;
|
||||||
|
use Getopt::Long;
|
||||||
|
use POSIX qw(strftime);
|
||||||
|
|
||||||
|
(my $ME = $0) =~ s|.*/||;
|
||||||
|
|
||||||
|
# use File::Coda; # https://meyering.net/code/Coda/
|
||||||
|
END {
|
||||||
|
defined fileno STDOUT or return;
|
||||||
|
close STDOUT and return;
|
||||||
|
warn "$ME: failed to close standard output: $!\n";
|
||||||
|
$? ||= 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
sub usage ($)
|
||||||
|
{
|
||||||
|
my ($exit_code) = @_;
|
||||||
|
my $STREAM = ($exit_code == 0 ? *STDOUT : *STDERR);
|
||||||
|
if ($exit_code != 0)
|
||||||
|
{
|
||||||
|
print $STREAM "Try '$ME --help' for more information.\n";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
print $STREAM <<EOF;
|
||||||
|
Usage: $ME [OPTIONS] [ARGS]
|
||||||
|
|
||||||
|
Convert git log output to ChangeLog format. If present, any ARGS
|
||||||
|
are passed to "git log". To avoid ARGS being parsed as options to
|
||||||
|
$ME, they may be preceded by '--'.
|
||||||
|
|
||||||
|
OPTIONS:
|
||||||
|
|
||||||
|
--amend=FILE FILE maps from an SHA1 to perl code (i.e., s/old/new/) that
|
||||||
|
makes a change to SHA1's commit log text or metadata.
|
||||||
|
--append-dot append a dot to the first line of each commit message if
|
||||||
|
there is no other punctuation or blank at the end.
|
||||||
|
--no-cluster never cluster commit messages under the same date/author
|
||||||
|
header; the default is to cluster adjacent commit messages
|
||||||
|
if their headers are the same and neither commit message
|
||||||
|
contains multiple paragraphs.
|
||||||
|
--srcdir=DIR the root of the source tree, from which the .git/
|
||||||
|
directory can be derived.
|
||||||
|
--since=DATE convert only the logs since DATE;
|
||||||
|
the default is to convert all log entries.
|
||||||
|
--until=DATE convert only the logs older than DATE.
|
||||||
|
--ignore-matching=PAT ignore commit messages whose first lines match PAT.
|
||||||
|
--ignore-line=PAT ignore lines of commit messages that match PAT.
|
||||||
|
--format=FMT set format string for commit subject and body;
|
||||||
|
see 'man git-log' for the list of format metacharacters;
|
||||||
|
the default is '%s%n%b%n'
|
||||||
|
--strip-tab remove one additional leading TAB from commit message lines.
|
||||||
|
--strip-cherry-pick remove data inserted by "git cherry-pick";
|
||||||
|
this includes the "cherry picked from commit ..." line,
|
||||||
|
and the possible final "Conflicts:" paragraph.
|
||||||
|
--help display this help and exit
|
||||||
|
--version output version information and exit
|
||||||
|
|
||||||
|
EXAMPLE:
|
||||||
|
|
||||||
|
$ME --since=2008-01-01 > ChangeLog
|
||||||
|
$ME -- -n 5 foo > last-5-commits-to-branch-foo
|
||||||
|
|
||||||
|
SPECIAL SYNTAX:
|
||||||
|
|
||||||
|
The following types of strings are interpreted specially when they appear
|
||||||
|
at the beginning of a log message line. They are not copied to the output.
|
||||||
|
|
||||||
|
Copyright-paperwork-exempt: Yes
|
||||||
|
Append the "(tiny change)" notation to the usual "date name email"
|
||||||
|
ChangeLog header to mark a change that does not require a copyright
|
||||||
|
assignment.
|
||||||
|
Co-authored-by: Joe User <user\@example.com>
|
||||||
|
List the specified name and email address on a second
|
||||||
|
ChangeLog header, denoting a co-author.
|
||||||
|
Signed-off-by: Joe User <user\@example.com>
|
||||||
|
These lines are simply elided.
|
||||||
|
|
||||||
|
In a FILE specified via --amend, comment lines (starting with "#") are ignored.
|
||||||
|
FILE must consist of <SHA,CODE+> pairs where SHA is a 40-byte SHA1 (alone on
|
||||||
|
a line) referring to a commit in the current project, and CODE refers to one
|
||||||
|
or more consecutive lines of Perl code. Pairs must be separated by one or
|
||||||
|
more blank line.
|
||||||
|
|
||||||
|
Here is sample input for use with --amend=FILE, from coreutils:
|
||||||
|
|
||||||
|
3a169f4c5d9159283548178668d2fae6fced3030
|
||||||
|
# fix typo in title:
|
||||||
|
s/all tile types/all file types/
|
||||||
|
|
||||||
|
1379ed974f1fa39b12e2ffab18b3f7a607082202
|
||||||
|
# Due to a bug in vc-dwim, I mis-attributed a patch by Paul to myself.
|
||||||
|
# Change the author to be Paul. Note the escaped "@":
|
||||||
|
s,Jim .*>,Paul Eggert <eggert\\\@cs.ucla.edu>,
|
||||||
|
|
||||||
|
EOF
|
||||||
|
}
|
||||||
|
exit $exit_code;
|
||||||
|
}
|
||||||
|
|
||||||
|
# If the string $S is a well-behaved file name, simply return it.
|
||||||
|
# If it contains white space, quotes, etc., quote it, and return the new string.
|
||||||
|
sub shell_quote($)
|
||||||
|
{
|
||||||
|
my ($s) = @_;
|
||||||
|
if ($s =~ m![^\w+/.,-]!)
|
||||||
|
{
|
||||||
|
# Convert each single quote to '\''
|
||||||
|
$s =~ s/\'/\'\\\'\'/g;
|
||||||
|
# Then single quote the string.
|
||||||
|
$s = "'$s'";
|
||||||
|
}
|
||||||
|
return $s;
|
||||||
|
}
|
||||||
|
|
||||||
|
sub quoted_cmd(@)
|
||||||
|
{
|
||||||
|
return join (' ', map {shell_quote $_} @_);
|
||||||
|
}
|
||||||
|
|
||||||
|
# Parse file F.
|
||||||
|
# Comment lines (starting with "#") are ignored.
|
||||||
|
# F must consist of <SHA,CODE+> pairs where SHA is a 40-byte SHA1
|
||||||
|
# (alone on a line) referring to a commit in the current project, and
|
||||||
|
# CODE refers to one or more consecutive lines of Perl code.
|
||||||
|
# Pairs must be separated by one or more blank line.
|
||||||
|
sub parse_amend_file($)
|
||||||
|
{
|
||||||
|
my ($f) = @_;
|
||||||
|
|
||||||
|
open F, '<', $f
|
||||||
|
or die "$ME: $f: failed to open for reading: $!\n";
|
||||||
|
|
||||||
|
my $fail;
|
||||||
|
my $h = {};
|
||||||
|
my $in_code = 0;
|
||||||
|
my $sha;
|
||||||
|
while (defined (my $line = <F>))
|
||||||
|
{
|
||||||
|
$line =~ /^\#/
|
||||||
|
and next;
|
||||||
|
chomp $line;
|
||||||
|
$line eq ''
|
||||||
|
and $in_code = 0, next;
|
||||||
|
|
||||||
|
if (!$in_code)
|
||||||
|
{
|
||||||
|
$line =~ /^([[:xdigit:]]{40})$/
|
||||||
|
or (warn "$ME: $f:$.: invalid line; expected an SHA1\n"),
|
||||||
|
$fail = 1, next;
|
||||||
|
$sha = lc $1;
|
||||||
|
$in_code = 1;
|
||||||
|
exists $h->{$sha}
|
||||||
|
and (warn "$ME: $f:$.: duplicate SHA1\n"),
|
||||||
|
$fail = 1, next;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$h->{$sha} ||= '';
|
||||||
|
$h->{$sha} .= "$line\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
close F;
|
||||||
|
|
||||||
|
$fail
|
||||||
|
and exit 1;
|
||||||
|
|
||||||
|
return $h;
|
||||||
|
}
|
||||||
|
|
||||||
|
# git_dir_option $SRCDIR
|
||||||
|
#
|
||||||
|
# From $SRCDIR, the --git-dir option to pass to git (none if $SRCDIR
|
||||||
|
# is undef). Return as a list (0 or 1 element).
|
||||||
|
sub git_dir_option($)
|
||||||
|
{
|
||||||
|
my ($srcdir) = @_;
|
||||||
|
my @res = ();
|
||||||
|
if (defined $srcdir)
|
||||||
|
{
|
||||||
|
my $qdir = shell_quote $srcdir;
|
||||||
|
my $cmd = "cd $qdir && git rev-parse --show-toplevel";
|
||||||
|
my $qcmd = shell_quote $cmd;
|
||||||
|
my $git_dir = qx($cmd);
|
||||||
|
defined $git_dir
|
||||||
|
or die "$ME: cannot run $qcmd: $!\n";
|
||||||
|
$? == 0
|
||||||
|
or die "$ME: $qcmd had unexpected exit code or signal ($?)\n";
|
||||||
|
chomp $git_dir;
|
||||||
|
push @res, "--git-dir=$git_dir/.git";
|
||||||
|
}
|
||||||
|
@res;
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
my $since_date;
|
||||||
|
my $until_date;
|
||||||
|
my $format_string = '%s%n%b%n';
|
||||||
|
my $amend_file;
|
||||||
|
my $append_dot = 0;
|
||||||
|
my $cluster = 1;
|
||||||
|
my $ignore_matching;
|
||||||
|
my $ignore_line;
|
||||||
|
my $strip_tab = 0;
|
||||||
|
my $strip_cherry_pick = 0;
|
||||||
|
my $srcdir;
|
||||||
|
GetOptions
|
||||||
|
(
|
||||||
|
help => sub { usage 0 },
|
||||||
|
version => sub { print "$ME version $VERSION\n"; exit },
|
||||||
|
'since=s' => \$since_date,
|
||||||
|
'until=s' => \$until_date,
|
||||||
|
'format=s' => \$format_string,
|
||||||
|
'amend=s' => \$amend_file,
|
||||||
|
'append-dot' => \$append_dot,
|
||||||
|
'cluster!' => \$cluster,
|
||||||
|
'ignore-matching=s' => \$ignore_matching,
|
||||||
|
'ignore-line=s' => \$ignore_line,
|
||||||
|
'strip-tab' => \$strip_tab,
|
||||||
|
'strip-cherry-pick' => \$strip_cherry_pick,
|
||||||
|
'srcdir=s' => \$srcdir,
|
||||||
|
) or usage 1;
|
||||||
|
|
||||||
|
defined $since_date
|
||||||
|
and unshift @ARGV, "--since=$since_date";
|
||||||
|
defined $until_date
|
||||||
|
and unshift @ARGV, "--until=$until_date";
|
||||||
|
|
||||||
|
# This is a hash that maps an SHA1 to perl code (i.e., s/old/new/)
|
||||||
|
# that makes a correction in the log or attribution of that commit.
|
||||||
|
my $amend_code = defined $amend_file ? parse_amend_file $amend_file : {};
|
||||||
|
|
||||||
|
my @cmd = ('git',
|
||||||
|
git_dir_option $srcdir,
|
||||||
|
qw(log --log-size),
|
||||||
|
'--pretty=format:%H:%ct %an <%ae>%n%n'.$format_string, @ARGV);
|
||||||
|
open PIPE, '-|', @cmd
|
||||||
|
or die ("$ME: failed to run '". quoted_cmd (@cmd) ."': $!\n"
|
||||||
|
. "(Is your Git too old? Version 1.5.1 or later is required.)\n");
|
||||||
|
|
||||||
|
my $prev_multi_paragraph;
|
||||||
|
my $prev_date_line = '';
|
||||||
|
my @prev_coauthors = ();
|
||||||
|
my @skipshas = ();
|
||||||
|
while (1)
|
||||||
|
{
|
||||||
|
defined (my $in = <PIPE>)
|
||||||
|
or last;
|
||||||
|
$in =~ /^log size (\d+)$/
|
||||||
|
or die "$ME:$.: Invalid line (expected log size):\n$in";
|
||||||
|
my $log_nbytes = $1;
|
||||||
|
|
||||||
|
my $log;
|
||||||
|
my $n_read = read PIPE, $log, $log_nbytes;
|
||||||
|
$n_read == $log_nbytes
|
||||||
|
or die "$ME:$.: unexpected EOF\n";
|
||||||
|
|
||||||
|
# Extract leading hash.
|
||||||
|
my ($sha, $rest) = split ':', $log, 2;
|
||||||
|
defined $sha
|
||||||
|
or die "$ME:$.: malformed log entry\n";
|
||||||
|
$sha =~ /^[[:xdigit:]]{40}$/
|
||||||
|
or die "$ME:$.: invalid SHA1: $sha\n";
|
||||||
|
|
||||||
|
my $skipflag = 0;
|
||||||
|
if (@skipshas)
|
||||||
|
{
|
||||||
|
foreach(@skipshas)
|
||||||
|
{
|
||||||
|
if ($sha =~ /^$_/)
|
||||||
|
{
|
||||||
|
$skipflag = $_;
|
||||||
|
last;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
# If this commit's log requires any transformation, do it now.
|
||||||
|
my $code = $amend_code->{$sha};
|
||||||
|
if (defined $code)
|
||||||
|
{
|
||||||
|
eval 'use Safe';
|
||||||
|
my $s = new Safe;
|
||||||
|
# Put the unpreprocessed entry into "$_".
|
||||||
|
$_ = $rest;
|
||||||
|
|
||||||
|
# Let $code operate on it, safely.
|
||||||
|
my $r = $s->reval("$code")
|
||||||
|
or die "$ME:$.:$sha: failed to eval \"$code\":\n$@\n";
|
||||||
|
|
||||||
|
# Note that we've used this entry.
|
||||||
|
delete $amend_code->{$sha};
|
||||||
|
|
||||||
|
# Update $rest upon success.
|
||||||
|
$rest = $_;
|
||||||
|
}
|
||||||
|
|
||||||
|
# Remove lines inserted by "git cherry-pick".
|
||||||
|
if ($strip_cherry_pick)
|
||||||
|
{
|
||||||
|
$rest =~ s/^\s*Conflicts:\n.*//sm;
|
||||||
|
$rest =~ s/^\s*\(cherry picked from commit [\da-f]+\)\n//m;
|
||||||
|
}
|
||||||
|
|
||||||
|
my @line = split /[ \t]*\n/, $rest;
|
||||||
|
my $author_line = shift @line;
|
||||||
|
defined $author_line
|
||||||
|
or die "$ME:$.: unexpected EOF\n";
|
||||||
|
$author_line =~ /^(\d+) (.*>)$/
|
||||||
|
or die "$ME:$.: Invalid line "
|
||||||
|
. "(expected date/author/email):\n$author_line\n";
|
||||||
|
|
||||||
|
# Format 'Copyright-paperwork-exempt: Yes' as a standard ChangeLog
|
||||||
|
# `(tiny change)' annotation.
|
||||||
|
my $tiny = (grep (/^(?:Copyright-paperwork-exempt|Tiny-change):\s+[Yy]es$/, @line)
|
||||||
|
? ' (tiny change)' : '');
|
||||||
|
|
||||||
|
my $date_line = sprintf "%s %s$tiny\n",
|
||||||
|
strftime ("%Y-%m-%d", localtime ($1)), $2;
|
||||||
|
|
||||||
|
my @coauthors = grep /^Co-authored-by:.*$/, @line;
|
||||||
|
# Omit meta-data lines we've already interpreted.
|
||||||
|
@line = grep !/^(?:Signed-off-by:[ ].*>$
|
||||||
|
|Co-authored-by:[ ]
|
||||||
|
|Copyright-paperwork-exempt:[ ]
|
||||||
|
|Tiny-change:[ ]
|
||||||
|
)/x, @line;
|
||||||
|
|
||||||
|
# Remove leading and trailing blank lines.
|
||||||
|
if (@line)
|
||||||
|
{
|
||||||
|
while ($line[0] =~ /^\s*$/) { shift @line; }
|
||||||
|
while ($line[$#line] =~ /^\s*$/) { pop @line; }
|
||||||
|
}
|
||||||
|
|
||||||
|
# Handle Emacs gitmerge.el "skipped" commits.
|
||||||
|
# Yes, this should be controlled by an option. So sue me.
|
||||||
|
if ( grep /^(; )?Merge from /, @line )
|
||||||
|
{
|
||||||
|
my $found = 0;
|
||||||
|
foreach (@line)
|
||||||
|
{
|
||||||
|
if (grep /^The following commit.*skipped:$/, $_)
|
||||||
|
{
|
||||||
|
$found = 1;
|
||||||
|
## Reset at each merge to reduce chance of false matches.
|
||||||
|
@skipshas = ();
|
||||||
|
next;
|
||||||
|
}
|
||||||
|
if ($found && $_ =~ /^([[:xdigit:]]{7,}) [^ ]/)
|
||||||
|
{
|
||||||
|
push ( @skipshas, $1 );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
# Ignore commits that match the --ignore-matching pattern, if specified.
|
||||||
|
if (defined $ignore_matching && @line && $line[0] =~ /$ignore_matching/)
|
||||||
|
{
|
||||||
|
$skipflag = 1;
|
||||||
|
}
|
||||||
|
elsif ($skipflag)
|
||||||
|
{
|
||||||
|
## Perhaps only warn if a pattern matches more than once?
|
||||||
|
warn "$ME: warning: skipping $sha due to $skipflag\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
if (! $skipflag)
|
||||||
|
{
|
||||||
|
if (defined $ignore_line && @line)
|
||||||
|
{
|
||||||
|
@line = grep ! /$ignore_line/, @line;
|
||||||
|
while ($line[$#line] =~ /^\s*$/) { pop @line; }
|
||||||
|
}
|
||||||
|
|
||||||
|
# Record whether there are two or more paragraphs.
|
||||||
|
my $multi_paragraph = grep /^\s*$/, @line;
|
||||||
|
|
||||||
|
# Format 'Co-authored-by: A U Thor <email@example.com>' lines in
|
||||||
|
# standard multi-author ChangeLog format.
|
||||||
|
for (@coauthors)
|
||||||
|
{
|
||||||
|
s/^Co-authored-by:\s*/\t /;
|
||||||
|
s/\s*</ </;
|
||||||
|
|
||||||
|
/<.*?@.*\..*>/
|
||||||
|
or warn "$ME: warning: missing email address for "
|
||||||
|
. substr ($_, 5) . "\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
# If clustering of commit messages has been disabled, if this header
|
||||||
|
# would be different from the previous date/name/etc. header,
|
||||||
|
# or if this or the previous entry consists of two or more paragraphs,
|
||||||
|
# then print the header.
|
||||||
|
if ( ! $cluster
|
||||||
|
|| $date_line ne $prev_date_line
|
||||||
|
|| "@coauthors" ne "@prev_coauthors"
|
||||||
|
|| $multi_paragraph
|
||||||
|
|| $prev_multi_paragraph)
|
||||||
|
{
|
||||||
|
$prev_date_line eq ''
|
||||||
|
or print "\n";
|
||||||
|
print $date_line;
|
||||||
|
@coauthors
|
||||||
|
and print join ("\n", @coauthors), "\n";
|
||||||
|
}
|
||||||
|
$prev_date_line = $date_line;
|
||||||
|
@prev_coauthors = @coauthors;
|
||||||
|
$prev_multi_paragraph = $multi_paragraph;
|
||||||
|
|
||||||
|
# If there were any lines
|
||||||
|
if (@line == 0)
|
||||||
|
{
|
||||||
|
warn "$ME: warning: empty commit message:\n"
|
||||||
|
. " commit $sha\n $date_line\n";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if ($append_dot)
|
||||||
|
{
|
||||||
|
# If the first line of the message has enough room, then
|
||||||
|
if (length $line[0] < 72)
|
||||||
|
{
|
||||||
|
# append a dot if there is no other punctuation or blank
|
||||||
|
# at the end.
|
||||||
|
$line[0] =~ /[[:punct:]\s]$/
|
||||||
|
or $line[0] .= '.';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
# Remove one additional leading TAB from each line.
|
||||||
|
$strip_tab
|
||||||
|
and map { s/^\t// } @line;
|
||||||
|
|
||||||
|
# Prefix each non-empty line with a TAB.
|
||||||
|
@line = map { length $_ ? "\t$_" : '' } @line;
|
||||||
|
|
||||||
|
print "\n", join ("\n", @line), "\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
defined ($in = <PIPE>)
|
||||||
|
or last;
|
||||||
|
$in ne "\n"
|
||||||
|
and die "$ME:$.: unexpected line:\n$in";
|
||||||
|
}
|
||||||
|
|
||||||
|
close PIPE
|
||||||
|
or die "$ME: error closing pipe from " . quoted_cmd (@cmd) . "\n";
|
||||||
|
# FIXME-someday: include $PROCESS_STATUS in the diagnostic
|
||||||
|
|
||||||
|
# Complain about any unused entry in the --amend=F specified file.
|
||||||
|
my $fail = 0;
|
||||||
|
foreach my $sha (keys %$amend_code)
|
||||||
|
{
|
||||||
|
warn "$ME:$amend_file: unused entry: $sha\n";
|
||||||
|
$fail = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
exit $fail;
|
||||||
|
}
|
||||||
|
|
||||||
|
# Local Variables:
|
||||||
|
# mode: perl
|
||||||
|
# indent-tabs-mode: nil
|
||||||
|
# eval: (add-hook 'before-save-hook 'time-stamp)
|
||||||
|
# time-stamp-line-limit: 50
|
||||||
|
# time-stamp-start: "my $VERSION = '"
|
||||||
|
# time-stamp-format: "%:y-%02m-%02d %02H:%02M"
|
||||||
|
# time-stamp-time-zone: "UTC0"
|
||||||
|
# time-stamp-end: "'; # UTC"
|
||||||
|
# End:
|
||||||
+541
@@ -0,0 +1,541 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# install - install a program, script, or datafile
|
||||||
|
|
||||||
|
scriptversion=2020-11-14.01; # UTC
|
||||||
|
|
||||||
|
# This originates from X11R5 (mit/util/scripts/install.sh), which was
|
||||||
|
# later released in X11R6 (xc/config/util/install.sh) with the
|
||||||
|
# following copyright and license.
|
||||||
|
#
|
||||||
|
# Copyright (C) 1994 X Consortium
|
||||||
|
#
|
||||||
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
# of this software and associated documentation files (the "Software"), to
|
||||||
|
# deal in the Software without restriction, including without limitation the
|
||||||
|
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||||
|
# sell copies of the Software, and to permit persons to whom the Software is
|
||||||
|
# furnished to do so, subject to the following conditions:
|
||||||
|
#
|
||||||
|
# The above copyright notice and this permission notice shall be included in
|
||||||
|
# all copies or substantial portions of the Software.
|
||||||
|
#
|
||||||
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
||||||
|
# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-
|
||||||
|
# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
#
|
||||||
|
# Except as contained in this notice, the name of the X Consortium shall not
|
||||||
|
# be used in advertising or otherwise to promote the sale, use or other deal-
|
||||||
|
# ings in this Software without prior written authorization from the X Consor-
|
||||||
|
# tium.
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# FSF changes to this file are in the public domain.
|
||||||
|
#
|
||||||
|
# Calling this script install-sh is preferred over install.sh, to prevent
|
||||||
|
# 'make' implicit rules from creating a file called install from it
|
||||||
|
# when there is no Makefile.
|
||||||
|
#
|
||||||
|
# This script is compatible with the BSD install script, but was written
|
||||||
|
# from scratch.
|
||||||
|
|
||||||
|
tab=' '
|
||||||
|
nl='
|
||||||
|
'
|
||||||
|
IFS=" $tab$nl"
|
||||||
|
|
||||||
|
# Set DOITPROG to "echo" to test this script.
|
||||||
|
|
||||||
|
doit=${DOITPROG-}
|
||||||
|
doit_exec=${doit:-exec}
|
||||||
|
|
||||||
|
# Put in absolute file names if you don't have them in your path;
|
||||||
|
# or use environment vars.
|
||||||
|
|
||||||
|
chgrpprog=${CHGRPPROG-chgrp}
|
||||||
|
chmodprog=${CHMODPROG-chmod}
|
||||||
|
chownprog=${CHOWNPROG-chown}
|
||||||
|
cmpprog=${CMPPROG-cmp}
|
||||||
|
cpprog=${CPPROG-cp}
|
||||||
|
mkdirprog=${MKDIRPROG-mkdir}
|
||||||
|
mvprog=${MVPROG-mv}
|
||||||
|
rmprog=${RMPROG-rm}
|
||||||
|
stripprog=${STRIPPROG-strip}
|
||||||
|
|
||||||
|
posix_mkdir=
|
||||||
|
|
||||||
|
# Desired mode of installed file.
|
||||||
|
mode=0755
|
||||||
|
|
||||||
|
# Create dirs (including intermediate dirs) using mode 755.
|
||||||
|
# This is like GNU 'install' as of coreutils 8.32 (2020).
|
||||||
|
mkdir_umask=22
|
||||||
|
|
||||||
|
backupsuffix=
|
||||||
|
chgrpcmd=
|
||||||
|
chmodcmd=$chmodprog
|
||||||
|
chowncmd=
|
||||||
|
mvcmd=$mvprog
|
||||||
|
rmcmd="$rmprog -f"
|
||||||
|
stripcmd=
|
||||||
|
|
||||||
|
src=
|
||||||
|
dst=
|
||||||
|
dir_arg=
|
||||||
|
dst_arg=
|
||||||
|
|
||||||
|
copy_on_change=false
|
||||||
|
is_target_a_directory=possibly
|
||||||
|
|
||||||
|
usage="\
|
||||||
|
Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE
|
||||||
|
or: $0 [OPTION]... SRCFILES... DIRECTORY
|
||||||
|
or: $0 [OPTION]... -t DIRECTORY SRCFILES...
|
||||||
|
or: $0 [OPTION]... -d DIRECTORIES...
|
||||||
|
|
||||||
|
In the 1st form, copy SRCFILE to DSTFILE.
|
||||||
|
In the 2nd and 3rd, copy all SRCFILES to DIRECTORY.
|
||||||
|
In the 4th, create DIRECTORIES.
|
||||||
|
|
||||||
|
Options:
|
||||||
|
--help display this help and exit.
|
||||||
|
--version display version info and exit.
|
||||||
|
|
||||||
|
-c (ignored)
|
||||||
|
-C install only if different (preserve data modification time)
|
||||||
|
-d create directories instead of installing files.
|
||||||
|
-g GROUP $chgrpprog installed files to GROUP.
|
||||||
|
-m MODE $chmodprog installed files to MODE.
|
||||||
|
-o USER $chownprog installed files to USER.
|
||||||
|
-p pass -p to $cpprog.
|
||||||
|
-s $stripprog installed files.
|
||||||
|
-S SUFFIX attempt to back up existing files, with suffix SUFFIX.
|
||||||
|
-t DIRECTORY install into DIRECTORY.
|
||||||
|
-T report an error if DSTFILE is a directory.
|
||||||
|
|
||||||
|
Environment variables override the default commands:
|
||||||
|
CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG
|
||||||
|
RMPROG STRIPPROG
|
||||||
|
|
||||||
|
By default, rm is invoked with -f; when overridden with RMPROG,
|
||||||
|
it's up to you to specify -f if you want it.
|
||||||
|
|
||||||
|
If -S is not specified, no backups are attempted.
|
||||||
|
|
||||||
|
Email bug reports to bug-automake@gnu.org.
|
||||||
|
Automake home page: https://www.gnu.org/software/automake/
|
||||||
|
"
|
||||||
|
|
||||||
|
while test $# -ne 0; do
|
||||||
|
case $1 in
|
||||||
|
-c) ;;
|
||||||
|
|
||||||
|
-C) copy_on_change=true;;
|
||||||
|
|
||||||
|
-d) dir_arg=true;;
|
||||||
|
|
||||||
|
-g) chgrpcmd="$chgrpprog $2"
|
||||||
|
shift;;
|
||||||
|
|
||||||
|
--help) echo "$usage"; exit $?;;
|
||||||
|
|
||||||
|
-m) mode=$2
|
||||||
|
case $mode in
|
||||||
|
*' '* | *"$tab"* | *"$nl"* | *'*'* | *'?'* | *'['*)
|
||||||
|
echo "$0: invalid mode: $mode" >&2
|
||||||
|
exit 1;;
|
||||||
|
esac
|
||||||
|
shift;;
|
||||||
|
|
||||||
|
-o) chowncmd="$chownprog $2"
|
||||||
|
shift;;
|
||||||
|
|
||||||
|
-p) cpprog="$cpprog -p";;
|
||||||
|
|
||||||
|
-s) stripcmd=$stripprog;;
|
||||||
|
|
||||||
|
-S) backupsuffix="$2"
|
||||||
|
shift;;
|
||||||
|
|
||||||
|
-t)
|
||||||
|
is_target_a_directory=always
|
||||||
|
dst_arg=$2
|
||||||
|
# Protect names problematic for 'test' and other utilities.
|
||||||
|
case $dst_arg in
|
||||||
|
-* | [=\(\)!]) dst_arg=./$dst_arg;;
|
||||||
|
esac
|
||||||
|
shift;;
|
||||||
|
|
||||||
|
-T) is_target_a_directory=never;;
|
||||||
|
|
||||||
|
--version) echo "$0 $scriptversion"; exit $?;;
|
||||||
|
|
||||||
|
--) shift
|
||||||
|
break;;
|
||||||
|
|
||||||
|
-*) echo "$0: invalid option: $1" >&2
|
||||||
|
exit 1;;
|
||||||
|
|
||||||
|
*) break;;
|
||||||
|
esac
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
|
||||||
|
# We allow the use of options -d and -T together, by making -d
|
||||||
|
# take the precedence; this is for compatibility with GNU install.
|
||||||
|
|
||||||
|
if test -n "$dir_arg"; then
|
||||||
|
if test -n "$dst_arg"; then
|
||||||
|
echo "$0: target directory not allowed when installing a directory." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then
|
||||||
|
# When -d is used, all remaining arguments are directories to create.
|
||||||
|
# When -t is used, the destination is already specified.
|
||||||
|
# Otherwise, the last argument is the destination. Remove it from $@.
|
||||||
|
for arg
|
||||||
|
do
|
||||||
|
if test -n "$dst_arg"; then
|
||||||
|
# $@ is not empty: it contains at least $arg.
|
||||||
|
set fnord "$@" "$dst_arg"
|
||||||
|
shift # fnord
|
||||||
|
fi
|
||||||
|
shift # arg
|
||||||
|
dst_arg=$arg
|
||||||
|
# Protect names problematic for 'test' and other utilities.
|
||||||
|
case $dst_arg in
|
||||||
|
-* | [=\(\)!]) dst_arg=./$dst_arg;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test $# -eq 0; then
|
||||||
|
if test -z "$dir_arg"; then
|
||||||
|
echo "$0: no input file specified." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
# It's OK to call 'install-sh -d' without argument.
|
||||||
|
# This can happen when creating conditional directories.
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test -z "$dir_arg"; then
|
||||||
|
if test $# -gt 1 || test "$is_target_a_directory" = always; then
|
||||||
|
if test ! -d "$dst_arg"; then
|
||||||
|
echo "$0: $dst_arg: Is not a directory." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test -z "$dir_arg"; then
|
||||||
|
do_exit='(exit $ret); exit $ret'
|
||||||
|
trap "ret=129; $do_exit" 1
|
||||||
|
trap "ret=130; $do_exit" 2
|
||||||
|
trap "ret=141; $do_exit" 13
|
||||||
|
trap "ret=143; $do_exit" 15
|
||||||
|
|
||||||
|
# Set umask so as not to create temps with too-generous modes.
|
||||||
|
# However, 'strip' requires both read and write access to temps.
|
||||||
|
case $mode in
|
||||||
|
# Optimize common cases.
|
||||||
|
*644) cp_umask=133;;
|
||||||
|
*755) cp_umask=22;;
|
||||||
|
|
||||||
|
*[0-7])
|
||||||
|
if test -z "$stripcmd"; then
|
||||||
|
u_plus_rw=
|
||||||
|
else
|
||||||
|
u_plus_rw='% 200'
|
||||||
|
fi
|
||||||
|
cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
|
||||||
|
*)
|
||||||
|
if test -z "$stripcmd"; then
|
||||||
|
u_plus_rw=
|
||||||
|
else
|
||||||
|
u_plus_rw=,u+rw
|
||||||
|
fi
|
||||||
|
cp_umask=$mode$u_plus_rw;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
|
for src
|
||||||
|
do
|
||||||
|
# Protect names problematic for 'test' and other utilities.
|
||||||
|
case $src in
|
||||||
|
-* | [=\(\)!]) src=./$src;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if test -n "$dir_arg"; then
|
||||||
|
dst=$src
|
||||||
|
dstdir=$dst
|
||||||
|
test -d "$dstdir"
|
||||||
|
dstdir_status=$?
|
||||||
|
# Don't chown directories that already exist.
|
||||||
|
if test $dstdir_status = 0; then
|
||||||
|
chowncmd=""
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
|
||||||
|
# Waiting for this to be detected by the "$cpprog $src $dsttmp" command
|
||||||
|
# might cause directories to be created, which would be especially bad
|
||||||
|
# if $src (and thus $dsttmp) contains '*'.
|
||||||
|
if test ! -f "$src" && test ! -d "$src"; then
|
||||||
|
echo "$0: $src does not exist." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test -z "$dst_arg"; then
|
||||||
|
echo "$0: no destination specified." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
dst=$dst_arg
|
||||||
|
|
||||||
|
# If destination is a directory, append the input filename.
|
||||||
|
if test -d "$dst"; then
|
||||||
|
if test "$is_target_a_directory" = never; then
|
||||||
|
echo "$0: $dst_arg: Is a directory" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
dstdir=$dst
|
||||||
|
dstbase=`basename "$src"`
|
||||||
|
case $dst in
|
||||||
|
*/) dst=$dst$dstbase;;
|
||||||
|
*) dst=$dst/$dstbase;;
|
||||||
|
esac
|
||||||
|
dstdir_status=0
|
||||||
|
else
|
||||||
|
dstdir=`dirname "$dst"`
|
||||||
|
test -d "$dstdir"
|
||||||
|
dstdir_status=$?
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
case $dstdir in
|
||||||
|
*/) dstdirslash=$dstdir;;
|
||||||
|
*) dstdirslash=$dstdir/;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
obsolete_mkdir_used=false
|
||||||
|
|
||||||
|
if test $dstdir_status != 0; then
|
||||||
|
case $posix_mkdir in
|
||||||
|
'')
|
||||||
|
# With -d, create the new directory with the user-specified mode.
|
||||||
|
# Otherwise, rely on $mkdir_umask.
|
||||||
|
if test -n "$dir_arg"; then
|
||||||
|
mkdir_mode=-m$mode
|
||||||
|
else
|
||||||
|
mkdir_mode=
|
||||||
|
fi
|
||||||
|
|
||||||
|
posix_mkdir=false
|
||||||
|
# The $RANDOM variable is not portable (e.g., dash). Use it
|
||||||
|
# here however when possible just to lower collision chance.
|
||||||
|
tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$
|
||||||
|
|
||||||
|
trap '
|
||||||
|
ret=$?
|
||||||
|
rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" 2>/dev/null
|
||||||
|
exit $ret
|
||||||
|
' 0
|
||||||
|
|
||||||
|
# Because "mkdir -p" follows existing symlinks and we likely work
|
||||||
|
# directly in world-writeable /tmp, make sure that the '$tmpdir'
|
||||||
|
# directory is successfully created first before we actually test
|
||||||
|
# 'mkdir -p'.
|
||||||
|
if (umask $mkdir_umask &&
|
||||||
|
$mkdirprog $mkdir_mode "$tmpdir" &&
|
||||||
|
exec $mkdirprog $mkdir_mode -p -- "$tmpdir/a/b") >/dev/null 2>&1
|
||||||
|
then
|
||||||
|
if test -z "$dir_arg" || {
|
||||||
|
# Check for POSIX incompatibilities with -m.
|
||||||
|
# HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or
|
||||||
|
# other-writable bit of parent directory when it shouldn't.
|
||||||
|
# FreeBSD 6.1 mkdir -m -p sets mode of existing directory.
|
||||||
|
test_tmpdir="$tmpdir/a"
|
||||||
|
ls_ld_tmpdir=`ls -ld "$test_tmpdir"`
|
||||||
|
case $ls_ld_tmpdir in
|
||||||
|
d????-?r-*) different_mode=700;;
|
||||||
|
d????-?--*) different_mode=755;;
|
||||||
|
*) false;;
|
||||||
|
esac &&
|
||||||
|
$mkdirprog -m$different_mode -p -- "$test_tmpdir" && {
|
||||||
|
ls_ld_tmpdir_1=`ls -ld "$test_tmpdir"`
|
||||||
|
test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
then posix_mkdir=:
|
||||||
|
fi
|
||||||
|
rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir"
|
||||||
|
else
|
||||||
|
# Remove any dirs left behind by ancient mkdir implementations.
|
||||||
|
rmdir ./$mkdir_mode ./-p ./-- "$tmpdir" 2>/dev/null
|
||||||
|
fi
|
||||||
|
trap '' 0;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if
|
||||||
|
$posix_mkdir && (
|
||||||
|
umask $mkdir_umask &&
|
||||||
|
$doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir"
|
||||||
|
)
|
||||||
|
then :
|
||||||
|
else
|
||||||
|
|
||||||
|
# mkdir does not conform to POSIX,
|
||||||
|
# or it failed possibly due to a race condition. Create the
|
||||||
|
# directory the slow way, step by step, checking for races as we go.
|
||||||
|
|
||||||
|
case $dstdir in
|
||||||
|
/*) prefix='/';;
|
||||||
|
[-=\(\)!]*) prefix='./';;
|
||||||
|
*) prefix='';;
|
||||||
|
esac
|
||||||
|
|
||||||
|
oIFS=$IFS
|
||||||
|
IFS=/
|
||||||
|
set -f
|
||||||
|
set fnord $dstdir
|
||||||
|
shift
|
||||||
|
set +f
|
||||||
|
IFS=$oIFS
|
||||||
|
|
||||||
|
prefixes=
|
||||||
|
|
||||||
|
for d
|
||||||
|
do
|
||||||
|
test X"$d" = X && continue
|
||||||
|
|
||||||
|
prefix=$prefix$d
|
||||||
|
if test -d "$prefix"; then
|
||||||
|
prefixes=
|
||||||
|
else
|
||||||
|
if $posix_mkdir; then
|
||||||
|
(umask $mkdir_umask &&
|
||||||
|
$doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break
|
||||||
|
# Don't fail if two instances are running concurrently.
|
||||||
|
test -d "$prefix" || exit 1
|
||||||
|
else
|
||||||
|
case $prefix in
|
||||||
|
*\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;;
|
||||||
|
*) qprefix=$prefix;;
|
||||||
|
esac
|
||||||
|
prefixes="$prefixes '$qprefix'"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
prefix=$prefix/
|
||||||
|
done
|
||||||
|
|
||||||
|
if test -n "$prefixes"; then
|
||||||
|
# Don't fail if two instances are running concurrently.
|
||||||
|
(umask $mkdir_umask &&
|
||||||
|
eval "\$doit_exec \$mkdirprog $prefixes") ||
|
||||||
|
test -d "$dstdir" || exit 1
|
||||||
|
obsolete_mkdir_used=true
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test -n "$dir_arg"; then
|
||||||
|
{ test -z "$chowncmd" || $doit $chowncmd "$dst"; } &&
|
||||||
|
{ test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } &&
|
||||||
|
{ test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false ||
|
||||||
|
test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1
|
||||||
|
else
|
||||||
|
|
||||||
|
# Make a couple of temp file names in the proper directory.
|
||||||
|
dsttmp=${dstdirslash}_inst.$$_
|
||||||
|
rmtmp=${dstdirslash}_rm.$$_
|
||||||
|
|
||||||
|
# Trap to clean up those temp files at exit.
|
||||||
|
trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0
|
||||||
|
|
||||||
|
# Copy the file name to the temp name.
|
||||||
|
(umask $cp_umask &&
|
||||||
|
{ test -z "$stripcmd" || {
|
||||||
|
# Create $dsttmp read-write so that cp doesn't create it read-only,
|
||||||
|
# which would cause strip to fail.
|
||||||
|
if test -z "$doit"; then
|
||||||
|
: >"$dsttmp" # No need to fork-exec 'touch'.
|
||||||
|
else
|
||||||
|
$doit touch "$dsttmp"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
} &&
|
||||||
|
$doit_exec $cpprog "$src" "$dsttmp") &&
|
||||||
|
|
||||||
|
# and set any options; do chmod last to preserve setuid bits.
|
||||||
|
#
|
||||||
|
# If any of these fail, we abort the whole thing. If we want to
|
||||||
|
# ignore errors from any of these, just make sure not to ignore
|
||||||
|
# errors from the above "$doit $cpprog $src $dsttmp" command.
|
||||||
|
#
|
||||||
|
{ test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } &&
|
||||||
|
{ test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } &&
|
||||||
|
{ test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } &&
|
||||||
|
{ test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } &&
|
||||||
|
|
||||||
|
# If -C, don't bother to copy if it wouldn't change the file.
|
||||||
|
if $copy_on_change &&
|
||||||
|
old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` &&
|
||||||
|
new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` &&
|
||||||
|
set -f &&
|
||||||
|
set X $old && old=:$2:$4:$5:$6 &&
|
||||||
|
set X $new && new=:$2:$4:$5:$6 &&
|
||||||
|
set +f &&
|
||||||
|
test "$old" = "$new" &&
|
||||||
|
$cmpprog "$dst" "$dsttmp" >/dev/null 2>&1
|
||||||
|
then
|
||||||
|
rm -f "$dsttmp"
|
||||||
|
else
|
||||||
|
# If $backupsuffix is set, and the file being installed
|
||||||
|
# already exists, attempt a backup. Don't worry if it fails,
|
||||||
|
# e.g., if mv doesn't support -f.
|
||||||
|
if test -n "$backupsuffix" && test -f "$dst"; then
|
||||||
|
$doit $mvcmd -f "$dst" "$dst$backupsuffix" 2>/dev/null
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Rename the file to the real destination.
|
||||||
|
$doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null ||
|
||||||
|
|
||||||
|
# The rename failed, perhaps because mv can't rename something else
|
||||||
|
# to itself, or perhaps because mv is so ancient that it does not
|
||||||
|
# support -f.
|
||||||
|
{
|
||||||
|
# Now remove or move aside any old file at destination location.
|
||||||
|
# We try this two ways since rm can't unlink itself on some
|
||||||
|
# systems and the destination file might be busy for other
|
||||||
|
# reasons. In this case, the final cleanup might fail but the new
|
||||||
|
# file should still install successfully.
|
||||||
|
{
|
||||||
|
test ! -f "$dst" ||
|
||||||
|
$doit $rmcmd "$dst" 2>/dev/null ||
|
||||||
|
{ $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null &&
|
||||||
|
{ $doit $rmcmd "$rmtmp" 2>/dev/null; :; }
|
||||||
|
} ||
|
||||||
|
{ echo "$0: cannot unlink or rename $dst" >&2
|
||||||
|
(exit 1); exit 1
|
||||||
|
}
|
||||||
|
} &&
|
||||||
|
|
||||||
|
# Now rename the file to the real destination.
|
||||||
|
$doit $mvcmd "$dsttmp" "$dst"
|
||||||
|
}
|
||||||
|
fi || exit 1
|
||||||
|
|
||||||
|
trap '' 0
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
# Local variables:
|
||||||
|
# eval: (add-hook 'before-save-hook 'time-stamp)
|
||||||
|
# time-stamp-start: "scriptversion="
|
||||||
|
# time-stamp-format: "%:y-%02m-%02d.%02H"
|
||||||
|
# time-stamp-time-zone: "UTC0"
|
||||||
|
# time-stamp-end: "; # UTC"
|
||||||
|
# End:
|
||||||
+228
@@ -0,0 +1,228 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# Get modification time of a file or directory and pretty-print it.
|
||||||
|
|
||||||
|
scriptversion=2018-03-07.03; # UTC
|
||||||
|
|
||||||
|
# Copyright (C) 1995-2022 Free Software Foundation, Inc.
|
||||||
|
# written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, June 1995
|
||||||
|
#
|
||||||
|
# This program is free software; you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation; either version 2, or (at your option)
|
||||||
|
# any later version.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
# As a special exception to the GNU General Public License, if you
|
||||||
|
# distribute this file as part of a program that contains a
|
||||||
|
# configuration script generated by Autoconf, you may include it under
|
||||||
|
# the same distribution terms that you use for the rest of that program.
|
||||||
|
|
||||||
|
# This file is maintained in Automake, please report
|
||||||
|
# bugs to <bug-automake@gnu.org> or send patches to
|
||||||
|
# <automake-patches@gnu.org>.
|
||||||
|
|
||||||
|
if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
|
||||||
|
emulate sh
|
||||||
|
NULLCMD=:
|
||||||
|
# Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
|
||||||
|
# is contrary to our usage. Disable this feature.
|
||||||
|
alias -g '${1+"$@"}'='"$@"'
|
||||||
|
setopt NO_GLOB_SUBST
|
||||||
|
fi
|
||||||
|
|
||||||
|
case $1 in
|
||||||
|
'')
|
||||||
|
echo "$0: No file. Try '$0 --help' for more information." 1>&2
|
||||||
|
exit 1;
|
||||||
|
;;
|
||||||
|
-h | --h*)
|
||||||
|
cat <<\EOF
|
||||||
|
Usage: mdate-sh [--help] [--version] FILE
|
||||||
|
|
||||||
|
Pretty-print the modification day of FILE, in the format:
|
||||||
|
1 January 1970
|
||||||
|
|
||||||
|
Report bugs to <bug-automake@gnu.org>.
|
||||||
|
EOF
|
||||||
|
exit $?
|
||||||
|
;;
|
||||||
|
-v | --v*)
|
||||||
|
echo "mdate-sh $scriptversion"
|
||||||
|
exit $?
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
error ()
|
||||||
|
{
|
||||||
|
echo "$0: $1" >&2
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# Prevent date giving response in another language.
|
||||||
|
LANG=C
|
||||||
|
export LANG
|
||||||
|
LC_ALL=C
|
||||||
|
export LC_ALL
|
||||||
|
LC_TIME=C
|
||||||
|
export LC_TIME
|
||||||
|
|
||||||
|
# Use UTC to get reproducible result.
|
||||||
|
TZ=UTC0
|
||||||
|
export TZ
|
||||||
|
|
||||||
|
# GNU ls changes its time format in response to the TIME_STYLE
|
||||||
|
# variable. Since we cannot assume 'unset' works, revert this
|
||||||
|
# variable to its documented default.
|
||||||
|
if test "${TIME_STYLE+set}" = set; then
|
||||||
|
TIME_STYLE=posix-long-iso
|
||||||
|
export TIME_STYLE
|
||||||
|
fi
|
||||||
|
|
||||||
|
save_arg1=$1
|
||||||
|
|
||||||
|
# Find out how to get the extended ls output of a file or directory.
|
||||||
|
if ls -L /dev/null 1>/dev/null 2>&1; then
|
||||||
|
ls_command='ls -L -l -d'
|
||||||
|
else
|
||||||
|
ls_command='ls -l -d'
|
||||||
|
fi
|
||||||
|
# Avoid user/group names that might have spaces, when possible.
|
||||||
|
if ls -n /dev/null 1>/dev/null 2>&1; then
|
||||||
|
ls_command="$ls_command -n"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# A 'ls -l' line looks as follows on OS/2.
|
||||||
|
# drwxrwx--- 0 Aug 11 2001 foo
|
||||||
|
# This differs from Unix, which adds ownership information.
|
||||||
|
# drwxrwx--- 2 root root 4096 Aug 11 2001 foo
|
||||||
|
#
|
||||||
|
# To find the date, we split the line on spaces and iterate on words
|
||||||
|
# until we find a month. This cannot work with files whose owner is a
|
||||||
|
# user named "Jan", or "Feb", etc. However, it's unlikely that '/'
|
||||||
|
# will be owned by a user whose name is a month. So we first look at
|
||||||
|
# the extended ls output of the root directory to decide how many
|
||||||
|
# words should be skipped to get the date.
|
||||||
|
|
||||||
|
# On HPUX /bin/sh, "set" interprets "-rw-r--r--" as options, so the "x" below.
|
||||||
|
set x`$ls_command /`
|
||||||
|
|
||||||
|
# Find which argument is the month.
|
||||||
|
month=
|
||||||
|
command=
|
||||||
|
until test $month
|
||||||
|
do
|
||||||
|
test $# -gt 0 || error "failed parsing '$ls_command /' output"
|
||||||
|
shift
|
||||||
|
# Add another shift to the command.
|
||||||
|
command="$command shift;"
|
||||||
|
case $1 in
|
||||||
|
Jan) month=January; nummonth=1;;
|
||||||
|
Feb) month=February; nummonth=2;;
|
||||||
|
Mar) month=March; nummonth=3;;
|
||||||
|
Apr) month=April; nummonth=4;;
|
||||||
|
May) month=May; nummonth=5;;
|
||||||
|
Jun) month=June; nummonth=6;;
|
||||||
|
Jul) month=July; nummonth=7;;
|
||||||
|
Aug) month=August; nummonth=8;;
|
||||||
|
Sep) month=September; nummonth=9;;
|
||||||
|
Oct) month=October; nummonth=10;;
|
||||||
|
Nov) month=November; nummonth=11;;
|
||||||
|
Dec) month=December; nummonth=12;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
test -n "$month" || error "failed parsing '$ls_command /' output"
|
||||||
|
|
||||||
|
# Get the extended ls output of the file or directory.
|
||||||
|
set dummy x`eval "$ls_command \"\\\$save_arg1\""`
|
||||||
|
|
||||||
|
# Remove all preceding arguments
|
||||||
|
eval $command
|
||||||
|
|
||||||
|
# Because of the dummy argument above, month is in $2.
|
||||||
|
#
|
||||||
|
# On a POSIX system, we should have
|
||||||
|
#
|
||||||
|
# $# = 5
|
||||||
|
# $1 = file size
|
||||||
|
# $2 = month
|
||||||
|
# $3 = day
|
||||||
|
# $4 = year or time
|
||||||
|
# $5 = filename
|
||||||
|
#
|
||||||
|
# On Darwin 7.7.0 and 7.6.0, we have
|
||||||
|
#
|
||||||
|
# $# = 4
|
||||||
|
# $1 = day
|
||||||
|
# $2 = month
|
||||||
|
# $3 = year or time
|
||||||
|
# $4 = filename
|
||||||
|
|
||||||
|
# Get the month.
|
||||||
|
case $2 in
|
||||||
|
Jan) month=January; nummonth=1;;
|
||||||
|
Feb) month=February; nummonth=2;;
|
||||||
|
Mar) month=March; nummonth=3;;
|
||||||
|
Apr) month=April; nummonth=4;;
|
||||||
|
May) month=May; nummonth=5;;
|
||||||
|
Jun) month=June; nummonth=6;;
|
||||||
|
Jul) month=July; nummonth=7;;
|
||||||
|
Aug) month=August; nummonth=8;;
|
||||||
|
Sep) month=September; nummonth=9;;
|
||||||
|
Oct) month=October; nummonth=10;;
|
||||||
|
Nov) month=November; nummonth=11;;
|
||||||
|
Dec) month=December; nummonth=12;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
case $3 in
|
||||||
|
???*) day=$1;;
|
||||||
|
*) day=$3; shift;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# Here we have to deal with the problem that the ls output gives either
|
||||||
|
# the time of day or the year.
|
||||||
|
case $3 in
|
||||||
|
*:*) set `date`; eval year=\$$#
|
||||||
|
case $2 in
|
||||||
|
Jan) nummonthtod=1;;
|
||||||
|
Feb) nummonthtod=2;;
|
||||||
|
Mar) nummonthtod=3;;
|
||||||
|
Apr) nummonthtod=4;;
|
||||||
|
May) nummonthtod=5;;
|
||||||
|
Jun) nummonthtod=6;;
|
||||||
|
Jul) nummonthtod=7;;
|
||||||
|
Aug) nummonthtod=8;;
|
||||||
|
Sep) nummonthtod=9;;
|
||||||
|
Oct) nummonthtod=10;;
|
||||||
|
Nov) nummonthtod=11;;
|
||||||
|
Dec) nummonthtod=12;;
|
||||||
|
esac
|
||||||
|
# For the first six month of the year the time notation can also
|
||||||
|
# be used for files modified in the last year.
|
||||||
|
if (expr $nummonth \> $nummonthtod) > /dev/null;
|
||||||
|
then
|
||||||
|
year=`expr $year - 1`
|
||||||
|
fi;;
|
||||||
|
*) year=$3;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# The result.
|
||||||
|
echo $day $month $year
|
||||||
|
|
||||||
|
# Local Variables:
|
||||||
|
# mode: shell-script
|
||||||
|
# sh-indentation: 2
|
||||||
|
# eval: (add-hook 'before-save-hook 'time-stamp)
|
||||||
|
# time-stamp-start: "scriptversion="
|
||||||
|
# time-stamp-format: "%:y-%02m-%02d.%02H"
|
||||||
|
# time-stamp-time-zone: "UTC0"
|
||||||
|
# time-stamp-end: "; # UTC"
|
||||||
|
# End:
|
||||||
+215
@@ -0,0 +1,215 @@
|
|||||||
|
#! /bin/sh
|
||||||
|
# Common wrapper for a few potentially missing GNU programs.
|
||||||
|
|
||||||
|
scriptversion=2013-10-28.13; # UTC
|
||||||
|
|
||||||
|
# Copyright (C) 1996-2014 Free Software Foundation, Inc.
|
||||||
|
# Originally written by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
|
||||||
|
|
||||||
|
# This program is free software; you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation; either version 2, or (at your option)
|
||||||
|
# any later version.
|
||||||
|
|
||||||
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
# As a special exception to the GNU General Public License, if you
|
||||||
|
# distribute this file as part of a program that contains a
|
||||||
|
# configuration script generated by Autoconf, you may include it under
|
||||||
|
# the same distribution terms that you use for the rest of that program.
|
||||||
|
|
||||||
|
if test $# -eq 0; then
|
||||||
|
echo 1>&2 "Try '$0 --help' for more information"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
case $1 in
|
||||||
|
|
||||||
|
--is-lightweight)
|
||||||
|
# Used by our autoconf macros to check whether the available missing
|
||||||
|
# script is modern enough.
|
||||||
|
exit 0
|
||||||
|
;;
|
||||||
|
|
||||||
|
--run)
|
||||||
|
# Back-compat with the calling convention used by older automake.
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
|
||||||
|
-h|--h|--he|--hel|--help)
|
||||||
|
echo "\
|
||||||
|
$0 [OPTION]... PROGRAM [ARGUMENT]...
|
||||||
|
|
||||||
|
Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due
|
||||||
|
to PROGRAM being missing or too old.
|
||||||
|
|
||||||
|
Options:
|
||||||
|
-h, --help display this help and exit
|
||||||
|
-v, --version output version information and exit
|
||||||
|
|
||||||
|
Supported PROGRAM values:
|
||||||
|
aclocal autoconf autoheader autom4te automake makeinfo
|
||||||
|
bison yacc flex lex help2man
|
||||||
|
|
||||||
|
Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and
|
||||||
|
'g' are ignored when checking the name.
|
||||||
|
|
||||||
|
Send bug reports to <bug-automake@gnu.org>."
|
||||||
|
exit $?
|
||||||
|
;;
|
||||||
|
|
||||||
|
-v|--v|--ve|--ver|--vers|--versi|--versio|--version)
|
||||||
|
echo "missing $scriptversion (GNU Automake)"
|
||||||
|
exit $?
|
||||||
|
;;
|
||||||
|
|
||||||
|
-*)
|
||||||
|
echo 1>&2 "$0: unknown '$1' option"
|
||||||
|
echo 1>&2 "Try '$0 --help' for more information"
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
|
||||||
|
esac
|
||||||
|
|
||||||
|
# Run the given program, remember its exit status.
|
||||||
|
"$@"; st=$?
|
||||||
|
|
||||||
|
# If it succeeded, we are done.
|
||||||
|
test $st -eq 0 && exit 0
|
||||||
|
|
||||||
|
# Also exit now if we it failed (or wasn't found), and '--version' was
|
||||||
|
# passed; such an option is passed most likely to detect whether the
|
||||||
|
# program is present and works.
|
||||||
|
case $2 in --version|--help) exit $st;; esac
|
||||||
|
|
||||||
|
# Exit code 63 means version mismatch. This often happens when the user
|
||||||
|
# tries to use an ancient version of a tool on a file that requires a
|
||||||
|
# minimum version.
|
||||||
|
if test $st -eq 63; then
|
||||||
|
msg="probably too old"
|
||||||
|
elif test $st -eq 127; then
|
||||||
|
# Program was missing.
|
||||||
|
msg="missing on your system"
|
||||||
|
else
|
||||||
|
# Program was found and executed, but failed. Give up.
|
||||||
|
exit $st
|
||||||
|
fi
|
||||||
|
|
||||||
|
perl_URL=http://www.perl.org/
|
||||||
|
flex_URL=http://flex.sourceforge.net/
|
||||||
|
gnu_software_URL=http://www.gnu.org/software
|
||||||
|
|
||||||
|
program_details ()
|
||||||
|
{
|
||||||
|
case $1 in
|
||||||
|
aclocal|automake)
|
||||||
|
echo "The '$1' program is part of the GNU Automake package:"
|
||||||
|
echo "<$gnu_software_URL/automake>"
|
||||||
|
echo "It also requires GNU Autoconf, GNU m4 and Perl in order to run:"
|
||||||
|
echo "<$gnu_software_URL/autoconf>"
|
||||||
|
echo "<$gnu_software_URL/m4/>"
|
||||||
|
echo "<$perl_URL>"
|
||||||
|
;;
|
||||||
|
autoconf|autom4te|autoheader)
|
||||||
|
echo "The '$1' program is part of the GNU Autoconf package:"
|
||||||
|
echo "<$gnu_software_URL/autoconf/>"
|
||||||
|
echo "It also requires GNU m4 and Perl in order to run:"
|
||||||
|
echo "<$gnu_software_URL/m4/>"
|
||||||
|
echo "<$perl_URL>"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
give_advice ()
|
||||||
|
{
|
||||||
|
# Normalize program name to check for.
|
||||||
|
normalized_program=`echo "$1" | sed '
|
||||||
|
s/^gnu-//; t
|
||||||
|
s/^gnu//; t
|
||||||
|
s/^g//; t'`
|
||||||
|
|
||||||
|
printf '%s\n' "'$1' is $msg."
|
||||||
|
|
||||||
|
configure_deps="'configure.ac' or m4 files included by 'configure.ac'"
|
||||||
|
case $normalized_program in
|
||||||
|
autoconf*)
|
||||||
|
echo "You should only need it if you modified 'configure.ac',"
|
||||||
|
echo "or m4 files included by it."
|
||||||
|
program_details 'autoconf'
|
||||||
|
;;
|
||||||
|
autoheader*)
|
||||||
|
echo "You should only need it if you modified 'acconfig.h' or"
|
||||||
|
echo "$configure_deps."
|
||||||
|
program_details 'autoheader'
|
||||||
|
;;
|
||||||
|
automake*)
|
||||||
|
echo "You should only need it if you modified 'Makefile.am' or"
|
||||||
|
echo "$configure_deps."
|
||||||
|
program_details 'automake'
|
||||||
|
;;
|
||||||
|
aclocal*)
|
||||||
|
echo "You should only need it if you modified 'acinclude.m4' or"
|
||||||
|
echo "$configure_deps."
|
||||||
|
program_details 'aclocal'
|
||||||
|
;;
|
||||||
|
autom4te*)
|
||||||
|
echo "You might have modified some maintainer files that require"
|
||||||
|
echo "the 'autom4te' program to be rebuilt."
|
||||||
|
program_details 'autom4te'
|
||||||
|
;;
|
||||||
|
bison*|yacc*)
|
||||||
|
echo "You should only need it if you modified a '.y' file."
|
||||||
|
echo "You may want to install the GNU Bison package:"
|
||||||
|
echo "<$gnu_software_URL/bison/>"
|
||||||
|
;;
|
||||||
|
lex*|flex*)
|
||||||
|
echo "You should only need it if you modified a '.l' file."
|
||||||
|
echo "You may want to install the Fast Lexical Analyzer package:"
|
||||||
|
echo "<$flex_URL>"
|
||||||
|
;;
|
||||||
|
help2man*)
|
||||||
|
echo "You should only need it if you modified a dependency" \
|
||||||
|
"of a man page."
|
||||||
|
echo "You may want to install the GNU Help2man package:"
|
||||||
|
echo "<$gnu_software_URL/help2man/>"
|
||||||
|
;;
|
||||||
|
makeinfo*)
|
||||||
|
echo "You should only need it if you modified a '.texi' file, or"
|
||||||
|
echo "any other file indirectly affecting the aspect of the manual."
|
||||||
|
echo "You might want to install the Texinfo package:"
|
||||||
|
echo "<$gnu_software_URL/texinfo/>"
|
||||||
|
echo "The spurious makeinfo call might also be the consequence of"
|
||||||
|
echo "using a buggy 'make' (AIX, DU, IRIX), in which case you might"
|
||||||
|
echo "want to install GNU make:"
|
||||||
|
echo "<$gnu_software_URL/make/>"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "You might have modified some files without having the proper"
|
||||||
|
echo "tools for further handling them. Check the 'README' file, it"
|
||||||
|
echo "often tells you about the needed prerequisites for installing"
|
||||||
|
echo "this package. You may also peek at any GNU archive site, in"
|
||||||
|
echo "case some other package contains this missing '$1' program."
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
give_advice "$1" | sed -e '1s/^/WARNING: /' \
|
||||||
|
-e '2,$s/^/ /' >&2
|
||||||
|
|
||||||
|
# Propagate the correct exit status (expected to be 127 for a program
|
||||||
|
# not found, 63 for a program that failed due to version mismatch).
|
||||||
|
exit $st
|
||||||
|
|
||||||
|
# Local variables:
|
||||||
|
# eval: (add-hook 'write-file-hooks 'time-stamp)
|
||||||
|
# time-stamp-start: "scriptversion="
|
||||||
|
# time-stamp-format: "%:y-%02m-%02d.%02H"
|
||||||
|
# time-stamp-time-zone: "UTC"
|
||||||
|
# time-stamp-end: "; # UTC"
|
||||||
|
# End:
|
||||||
+148
@@ -0,0 +1,148 @@
|
|||||||
|
#! /bin/sh
|
||||||
|
# test-driver - basic testsuite driver script.
|
||||||
|
|
||||||
|
scriptversion=2013-07-13.22; # UTC
|
||||||
|
|
||||||
|
# Copyright (C) 2011-2014 Free Software Foundation, Inc.
|
||||||
|
#
|
||||||
|
# This program is free software; you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation; either version 2, or (at your option)
|
||||||
|
# any later version.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
# As a special exception to the GNU General Public License, if you
|
||||||
|
# distribute this file as part of a program that contains a
|
||||||
|
# configuration script generated by Autoconf, you may include it under
|
||||||
|
# the same distribution terms that you use for the rest of that program.
|
||||||
|
|
||||||
|
# This file is maintained in Automake, please report
|
||||||
|
# bugs to <bug-automake@gnu.org> or send patches to
|
||||||
|
# <automake-patches@gnu.org>.
|
||||||
|
|
||||||
|
# Make unconditional expansion of undefined variables an error. This
|
||||||
|
# helps a lot in preventing typo-related bugs.
|
||||||
|
set -u
|
||||||
|
|
||||||
|
usage_error ()
|
||||||
|
{
|
||||||
|
echo "$0: $*" >&2
|
||||||
|
print_usage >&2
|
||||||
|
exit 2
|
||||||
|
}
|
||||||
|
|
||||||
|
print_usage ()
|
||||||
|
{
|
||||||
|
cat <<END
|
||||||
|
Usage:
|
||||||
|
test-driver --test-name=NAME --log-file=PATH --trs-file=PATH
|
||||||
|
[--expect-failure={yes|no}] [--color-tests={yes|no}]
|
||||||
|
[--enable-hard-errors={yes|no}] [--]
|
||||||
|
TEST-SCRIPT [TEST-SCRIPT-ARGUMENTS]
|
||||||
|
The '--test-name', '--log-file' and '--trs-file' options are mandatory.
|
||||||
|
END
|
||||||
|
}
|
||||||
|
|
||||||
|
test_name= # Used for reporting.
|
||||||
|
log_file= # Where to save the output of the test script.
|
||||||
|
trs_file= # Where to save the metadata of the test run.
|
||||||
|
expect_failure=no
|
||||||
|
color_tests=no
|
||||||
|
enable_hard_errors=yes
|
||||||
|
while test $# -gt 0; do
|
||||||
|
case $1 in
|
||||||
|
--help) print_usage; exit $?;;
|
||||||
|
--version) echo "test-driver $scriptversion"; exit $?;;
|
||||||
|
--test-name) test_name=$2; shift;;
|
||||||
|
--log-file) log_file=$2; shift;;
|
||||||
|
--trs-file) trs_file=$2; shift;;
|
||||||
|
--color-tests) color_tests=$2; shift;;
|
||||||
|
--expect-failure) expect_failure=$2; shift;;
|
||||||
|
--enable-hard-errors) enable_hard_errors=$2; shift;;
|
||||||
|
--) shift; break;;
|
||||||
|
-*) usage_error "invalid option: '$1'";;
|
||||||
|
*) break;;
|
||||||
|
esac
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
|
||||||
|
missing_opts=
|
||||||
|
test x"$test_name" = x && missing_opts="$missing_opts --test-name"
|
||||||
|
test x"$log_file" = x && missing_opts="$missing_opts --log-file"
|
||||||
|
test x"$trs_file" = x && missing_opts="$missing_opts --trs-file"
|
||||||
|
if test x"$missing_opts" != x; then
|
||||||
|
usage_error "the following mandatory options are missing:$missing_opts"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test $# -eq 0; then
|
||||||
|
usage_error "missing argument"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test $color_tests = yes; then
|
||||||
|
# Keep this in sync with 'lib/am/check.am:$(am__tty_colors)'.
|
||||||
|
red='[0;31m' # Red.
|
||||||
|
grn='[0;32m' # Green.
|
||||||
|
lgn='[1;32m' # Light green.
|
||||||
|
blu='[1;34m' # Blue.
|
||||||
|
mgn='[0;35m' # Magenta.
|
||||||
|
std='[m' # No color.
|
||||||
|
else
|
||||||
|
red= grn= lgn= blu= mgn= std=
|
||||||
|
fi
|
||||||
|
|
||||||
|
do_exit='rm -f $log_file $trs_file; (exit $st); exit $st'
|
||||||
|
trap "st=129; $do_exit" 1
|
||||||
|
trap "st=130; $do_exit" 2
|
||||||
|
trap "st=141; $do_exit" 13
|
||||||
|
trap "st=143; $do_exit" 15
|
||||||
|
|
||||||
|
# Test script is run here.
|
||||||
|
"$@" >$log_file 2>&1
|
||||||
|
estatus=$?
|
||||||
|
|
||||||
|
if test $enable_hard_errors = no && test $estatus -eq 99; then
|
||||||
|
tweaked_estatus=1
|
||||||
|
else
|
||||||
|
tweaked_estatus=$estatus
|
||||||
|
fi
|
||||||
|
|
||||||
|
case $tweaked_estatus:$expect_failure in
|
||||||
|
0:yes) col=$red res=XPASS recheck=yes gcopy=yes;;
|
||||||
|
0:*) col=$grn res=PASS recheck=no gcopy=no;;
|
||||||
|
77:*) col=$blu res=SKIP recheck=no gcopy=yes;;
|
||||||
|
99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;;
|
||||||
|
*:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;;
|
||||||
|
*:*) col=$red res=FAIL recheck=yes gcopy=yes;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# Report the test outcome and exit status in the logs, so that one can
|
||||||
|
# know whether the test passed or failed simply by looking at the '.log'
|
||||||
|
# file, without the need of also peaking into the corresponding '.trs'
|
||||||
|
# file (automake bug#11814).
|
||||||
|
echo "$res $test_name (exit status: $estatus)" >>$log_file
|
||||||
|
|
||||||
|
# Report outcome to console.
|
||||||
|
echo "${col}${res}${std}: $test_name"
|
||||||
|
|
||||||
|
# Register the test result, and other relevant metadata.
|
||||||
|
echo ":test-result: $res" > $trs_file
|
||||||
|
echo ":global-test-result: $res" >> $trs_file
|
||||||
|
echo ":recheck: $recheck" >> $trs_file
|
||||||
|
echo ":copy-in-global-log: $gcopy" >> $trs_file
|
||||||
|
|
||||||
|
# Local Variables:
|
||||||
|
# mode: shell-script
|
||||||
|
# sh-indentation: 2
|
||||||
|
# eval: (add-hook 'write-file-hooks 'time-stamp)
|
||||||
|
# time-stamp-start: "scriptversion="
|
||||||
|
# time-stamp-format: "%:y-%02m-%02d.%02H"
|
||||||
|
# time-stamp-time-zone: "UTC"
|
||||||
|
# time-stamp-end: "; # UTC"
|
||||||
|
# End:
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,151 @@
|
|||||||
|
# -*- makefile -*-
|
||||||
|
|
||||||
|
CFLAGS_PLATFORM=
|
||||||
|
|
||||||
|
export LC_COLLATE := C
|
||||||
|
unexport LC_ALL
|
||||||
|
|
||||||
|
# Platform specific options
|
||||||
|
if COND_sparc64_ieee1275
|
||||||
|
LDFLAGS_PLATFORM = -Wl,-melf64_sparc
|
||||||
|
endif
|
||||||
|
if COND_arm
|
||||||
|
if !COND_emu
|
||||||
|
LDFLAGS_PLATFORM = -Wl,--wrap=__clear_cache
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
if COND_arm64
|
||||||
|
CFLAGS_PLATFORM += -mcmodel=large
|
||||||
|
endif
|
||||||
|
if COND_powerpc_ieee1275
|
||||||
|
CFLAGS_PLATFORM += -mcpu=powerpc
|
||||||
|
endif
|
||||||
|
if COND_HAVE_PCI
|
||||||
|
CFLAGS_PLATFORM += -DGRUB_HAS_PCI
|
||||||
|
endif
|
||||||
|
|
||||||
|
# Other options
|
||||||
|
|
||||||
|
CPPFLAGS_DEFAULT = -DGRUB_FILE=\"$(subst $(srcdir)/,,$<)\"
|
||||||
|
CPPFLAGS_DEFAULT += -I$(builddir)
|
||||||
|
CPPFLAGS_DEFAULT += -I$(srcdir)
|
||||||
|
CPPFLAGS_DEFAULT += -I$(top_builddir)
|
||||||
|
CPPFLAGS_DEFAULT += -I$(top_srcdir)
|
||||||
|
CPPFLAGS_DEFAULT += -I$(top_srcdir)/include
|
||||||
|
CPPFLAGS_DEFAULT += -I$(top_builddir)/include
|
||||||
|
CPPFLAGS_DEFAULT += -I$(top_srcdir)/grub-core/lib/libgcrypt-grub/src/
|
||||||
|
CCASFLAGS_DEFAULT = $(CPPFLAGS_DEFAULT) -DASM_FILE=1
|
||||||
|
BUILD_CPPFLAGS += $(CPPFLAGS_DEFAULT)
|
||||||
|
|
||||||
|
CFLAGS_KERNEL = $(CFLAGS_PLATFORM) -ffreestanding
|
||||||
|
LDFLAGS_KERNEL = $(LDFLAGS_PLATFORM) -nostdlib $(TARGET_LDFLAGS_OLDMAGIC)
|
||||||
|
CPPFLAGS_KERNEL = $(CPPFLAGS_CPU) $(CPPFLAGS_PLATFORM) -DGRUB_KERNEL=1
|
||||||
|
CCASFLAGS_KERNEL = $(CCASFLAGS_CPU) $(CCASFLAGS_PLATFORM)
|
||||||
|
STRIPFLAGS_KERNEL = -R .rel.dyn -R .reginfo -R .note -R .comment -R .drectve -R .note.gnu.gold-version -R .MIPS.abiflags -R .ARM.exidx
|
||||||
|
if !COND_emu
|
||||||
|
if COND_HAVE_ASM_USCORE
|
||||||
|
LDFLAGS_KERNEL += -Wl,--defsym=_malloc=_grub_malloc -Wl,--defsym=_free=_grub_free
|
||||||
|
else
|
||||||
|
LDFLAGS_KERNEL += -Wl,--defsym=malloc=grub_malloc -Wl,--defsym=free=grub_free
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
CFLAGS_MODULE = $(CFLAGS_PLATFORM) -ffreestanding
|
||||||
|
LDFLAGS_MODULE = $(LDFLAGS_PLATFORM) -nostdlib $(TARGET_LDFLAGS_OLDMAGIC) -Wl,-r
|
||||||
|
CPPFLAGS_MODULE = $(CPPFLAGS_CPU) $(CPPFLAGS_PLATFORM)
|
||||||
|
CCASFLAGS_MODULE = $(CCASFLAGS_CPU) $(CCASFLAGS_PLATFORM)
|
||||||
|
|
||||||
|
CFLAGS_IMAGE = $(CFLAGS_PLATFORM) -fno-builtin
|
||||||
|
LDFLAGS_IMAGE = $(LDFLAGS_PLATFORM) -nostdlib $(TARGET_LDFLAGS_OLDMAGIC) -Wl,-S
|
||||||
|
CPPFLAGS_IMAGE = $(CPPFLAGS_CPU) $(CPPFLAGS_PLATFORM)
|
||||||
|
CCASFLAGS_IMAGE = $(CCASFLAGS_CPU) $(CCASFLAGS_PLATFORM)
|
||||||
|
|
||||||
|
CFLAGS_PROGRAM =
|
||||||
|
LDFLAGS_PROGRAM =
|
||||||
|
CPPFLAGS_PROGRAM =
|
||||||
|
CCASFLAGS_PROGRAM =
|
||||||
|
|
||||||
|
CFLAGS_LIBRARY =
|
||||||
|
CPPFLAGS_LIBRARY =
|
||||||
|
CCASFLAGS_LIBRARY =
|
||||||
|
|
||||||
|
# Other variables
|
||||||
|
|
||||||
|
grubconfdir = $(sysconfdir)/grub.d
|
||||||
|
platformdir = $(pkglibdir)/$(target_cpu)-$(platform)
|
||||||
|
starfielddir = $(pkgdatadir)/themes/starfield
|
||||||
|
|
||||||
|
CFLAGS_GNULIB = -Wno-undef -Wno-sign-compare -Wno-unused -Wno-unused-parameter -Wno-redundant-decls -Wno-unreachable-code -Wno-conversion -Wno-error=attributes
|
||||||
|
CPPFLAGS_GNULIB = -I$(top_builddir)/grub-core/lib/gnulib -I$(top_srcdir)/grub-core/lib/gnulib
|
||||||
|
|
||||||
|
CFLAGS_POSIX = -fno-builtin
|
||||||
|
CPPFLAGS_POSIX = -I$(top_srcdir)/grub-core/lib/posix_wrap
|
||||||
|
|
||||||
|
CFLAGS_GCRY = -Wno-error -Wno-missing-field-initializers -Wno-redundant-decls -Wno-undef $(CFLAGS_POSIX)
|
||||||
|
CPPFLAGS_GCRY = -I$(top_srcdir)/grub-core/lib/libgcrypt_wrap $(CPPFLAGS_POSIX) -D_GCRYPT_IN_LIBGCRYPT=1 -I$(top_srcdir)/include/grub/gcrypt
|
||||||
|
|
||||||
|
CPPFLAGS_EFIEMU = -I$(top_srcdir)/grub-core/efiemu/runtime
|
||||||
|
|
||||||
|
# List file macros for recognizing /interesting/ modules
|
||||||
|
CPPFLAGS_FS_LIST = -Dgrub_fs_register=FS_LIST_MARKER
|
||||||
|
CPPFLAGS_VIDEO_LIST= -Dgrub_video_register=VIDEO_LIST_MARKER
|
||||||
|
CPPFLAGS_PARTMAP_LIST = -Dgrub_partition_map_register=PARTMAP_LIST_MARKER
|
||||||
|
CPPFLAGS_PARTTOOL_LIST = -Dgrub_parttool_register=PARTTOOL_LIST_MARKER
|
||||||
|
CPPFLAGS_TERMINAL_LIST = '-Dgrub_term_register_input(...)=INPUT_TERMINAL_LIST_MARKER(__VA_ARGS__)'
|
||||||
|
CPPFLAGS_TERMINAL_LIST += '-Dgrub_term_register_output(...)=OUTPUT_TERMINAL_LIST_MARKER(__VA_ARGS__)'
|
||||||
|
CPPFLAGS_COMMAND_LIST = '-Dgrub_register_command(...)=COMMAND_LIST_MARKER(__VA_ARGS__)'
|
||||||
|
CPPFLAGS_COMMAND_LIST += '-Dgrub_register_command_lockdown(...)=COMMAND_LOCKDOWN_LIST_MARKER(__VA_ARGS__)'
|
||||||
|
CPPFLAGS_COMMAND_LIST += '-Dgrub_register_extcmd(...)=EXTCOMMAND_LIST_MARKER(__VA_ARGS__)'
|
||||||
|
CPPFLAGS_COMMAND_LIST += '-Dgrub_register_extcmd_lockdown(...)=EXTCOMMAND_LOCKDOWN_LIST_MARKER(__VA_ARGS__)'
|
||||||
|
CPPFLAGS_COMMAND_LIST += '-Dgrub_register_command_p1(...)=P1COMMAND_LIST_MARKER(__VA_ARGS__)'
|
||||||
|
CPPFLAGS_FDT_LIST := '-Dgrub_fdtbus_register(...)=FDT_DRIVER_LIST_MARKER(__VA_ARGS__)'
|
||||||
|
CPPFLAGS_MARKER = $(CPPFLAGS_FS_LIST) $(CPPFLAGS_VIDEO_LIST) \
|
||||||
|
$(CPPFLAGS_PARTTOOL_LIST) $(CPPFLAGS_PARTMAP_LIST) \
|
||||||
|
$(CPPFLAGS_TERMINAL_LIST) $(CPPFLAGS_COMMAND_LIST) \
|
||||||
|
$(CPPFLAGS_FDT_LIST)
|
||||||
|
|
||||||
|
# Define these variables to calm down automake
|
||||||
|
|
||||||
|
IMG_FILES =
|
||||||
|
MOD_FILES =
|
||||||
|
MODULE_FILES =
|
||||||
|
MARKER_FILES =
|
||||||
|
KERNEL_HEADER_FILES =
|
||||||
|
|
||||||
|
bin_SCRIPTS =
|
||||||
|
bin_PROGRAMS =
|
||||||
|
check_SCRIPTS_native =
|
||||||
|
check_SCRIPTS_nonnative =
|
||||||
|
check_PROGRAMS_native =
|
||||||
|
check_PROGRAMS_nonnative =
|
||||||
|
dist_grubconf_DATA =
|
||||||
|
dist_noinst_DATA =
|
||||||
|
grubconf_SCRIPTS =
|
||||||
|
man_MANS =
|
||||||
|
noinst_DATA =
|
||||||
|
noinst_SCRIPTS =
|
||||||
|
noinst_PROGRAMS =
|
||||||
|
noinst_LIBRARIES =
|
||||||
|
pkgdata_DATA =
|
||||||
|
platform_DATA =
|
||||||
|
platform_SCRIPTS =
|
||||||
|
platform_PROGRAMS =
|
||||||
|
sbin_SCRIPTS =
|
||||||
|
sbin_PROGRAMS =
|
||||||
|
|
||||||
|
EXTRA_DIST =
|
||||||
|
CLEANFILES =
|
||||||
|
BUILT_SOURCES =
|
||||||
|
|
||||||
|
# Rules for Automake input
|
||||||
|
|
||||||
|
.PRECIOUS: $(top_srcdir)/Makefile.util.am
|
||||||
|
$(top_srcdir)/Makefile.util.am: $(top_srcdir)/gentpl.py $(top_srcdir)/Makefile.util.def $(top_srcdir)/Makefile.utilgcry.def
|
||||||
|
$(PYTHON) $^ > $@.new || (rm -f $@.new; exit 1)
|
||||||
|
mv $@.new $@
|
||||||
|
|
||||||
|
.PRECIOUS: $(top_srcdir)/grub-core/Makefile.core.am
|
||||||
|
$(top_srcdir)/grub-core/Makefile.core.am: $(top_srcdir)/gentpl.py $(top_srcdir)/grub-core/Makefile.core.def $(top_srcdir)/grub-core/Makefile.gcry.def
|
||||||
|
if [ "x$$GRUB_CONTRIB" != x ]; then echo "You need to run ./bootstrap manually." >&2; exit 1; fi
|
||||||
|
$(PYTHON) $^ > $@.new || (rm -f $@.new; exit 1)
|
||||||
|
mv $@.new $@
|
||||||
@@ -0,0 +1,152 @@
|
|||||||
|
EXTRA_DIST += autogen.sh
|
||||||
|
EXTRA_DIST += geninit.sh
|
||||||
|
|
||||||
|
EXTRA_DIST += gentpl.py
|
||||||
|
EXTRA_DIST += Makefile.util.def
|
||||||
|
EXTRA_DIST += Makefile.utilgcry.def
|
||||||
|
|
||||||
|
EXTRA_DIST += asm-tests
|
||||||
|
EXTRA_DIST += unicode
|
||||||
|
|
||||||
|
EXTRA_DIST += util/import_gcry.py
|
||||||
|
EXTRA_DIST += util/import_unicode.py
|
||||||
|
|
||||||
|
EXTRA_DIST += docs/man
|
||||||
|
EXTRA_DIST += docs/autoiso.cfg
|
||||||
|
EXTRA_DIST += docs/grub.cfg
|
||||||
|
EXTRA_DIST += docs/osdetect.cfg
|
||||||
|
|
||||||
|
EXTRA_DIST += conf/i386-cygwin-img-ld.sc
|
||||||
|
|
||||||
|
EXTRA_DIST += grub-core/Makefile.core.def
|
||||||
|
EXTRA_DIST += grub-core/Makefile.gcry.def
|
||||||
|
|
||||||
|
EXTRA_DIST += grub-core/genmoddep.awk
|
||||||
|
EXTRA_DIST += grub-core/genmod.sh.in
|
||||||
|
EXTRA_DIST += grub-core/gensyminfo.sh.in
|
||||||
|
EXTRA_DIST += grub-core/gensymlist.sh
|
||||||
|
EXTRA_DIST += grub-core/genemuinit.sh
|
||||||
|
EXTRA_DIST += grub-core/genemuinitheader.sh
|
||||||
|
|
||||||
|
EXTRA_DIST += grub-core/lib/gnulib-patches/fix-width.patch
|
||||||
|
|
||||||
|
EXTRA_DIST += grub-core/lib/libgcrypt
|
||||||
|
EXTRA_DIST += grub-core/lib/libgcrypt-grub/mpi/generic
|
||||||
|
EXTRA_DIST += $(shell find $(top_srcdir)/include -name '*.h')
|
||||||
|
EXTRA_DIST += $(shell find $(top_srcdir)/grub-core/lib -name '*.h')
|
||||||
|
EXTRA_DIST += grub-core/efiemu/runtime/config.h
|
||||||
|
|
||||||
|
EXTRA_DIST += grub-core/lib/LzmaDec.c
|
||||||
|
|
||||||
|
EXTRA_DIST += grub-core/fs/cpio_common.c
|
||||||
|
|
||||||
|
EXTRA_DIST += BUGS
|
||||||
|
EXTRA_DIST += util/i386/efi/grub-dumpdevtree
|
||||||
|
EXTRA_DIST += util/spkmodem-recv.c
|
||||||
|
EXTRA_DIST += util/import_gcrypth.sed
|
||||||
|
EXTRA_DIST += util/bin2h.c
|
||||||
|
EXTRA_DIST += util/grub-gen-asciih.c
|
||||||
|
EXTRA_DIST += util/grub-gen-widthspec.c
|
||||||
|
EXTRA_DIST += util/grub-module-verifier.c
|
||||||
|
EXTRA_DIST += util/grub-module-verifier32.c
|
||||||
|
EXTRA_DIST += util/grub-module-verifier64.c
|
||||||
|
EXTRA_DIST += util/grub-module-verifierXX.c
|
||||||
|
EXTRA_DIST += util/grub-pe2elf.c
|
||||||
|
|
||||||
|
|
||||||
|
EXTRA_DIST += m4/gnulib-cache.m4
|
||||||
|
EXTRA_DIST += m4/glibc2.m4
|
||||||
|
EXTRA_DIST += m4/gnulib-tool.m4
|
||||||
|
EXTRA_DIST += m4/intdiv0.m4
|
||||||
|
EXTRA_DIST += m4/intl.m4
|
||||||
|
EXTRA_DIST += m4/intldir.m4
|
||||||
|
EXTRA_DIST += m4/intmax.m4
|
||||||
|
EXTRA_DIST += m4/inttypes-pri.m4
|
||||||
|
EXTRA_DIST += m4/lcmessage.m4
|
||||||
|
EXTRA_DIST += m4/lock.m4
|
||||||
|
EXTRA_DIST += m4/printf-posix.m4
|
||||||
|
EXTRA_DIST += m4/threadlib.m4
|
||||||
|
EXTRA_DIST += m4/uintmax_t.m4
|
||||||
|
EXTRA_DIST += m4/visibility.m4
|
||||||
|
EXTRA_DIST += m4/math_h.m4
|
||||||
|
|
||||||
|
EXTRA_DIST += grub-core/osdep/apple/hostdisk.c
|
||||||
|
EXTRA_DIST += grub-core/osdep/aros/hostdisk.c
|
||||||
|
EXTRA_DIST += grub-core/osdep/basic/hostdisk.c
|
||||||
|
EXTRA_DIST += grub-core/osdep/bsd/hostdisk.c
|
||||||
|
EXTRA_DIST += grub-core/osdep/freebsd/hostdisk.c
|
||||||
|
EXTRA_DIST += grub-core/osdep/hurd/hostdisk.c
|
||||||
|
EXTRA_DIST += grub-core/osdep/linux/hostdisk.c
|
||||||
|
EXTRA_DIST += grub-core/osdep/windows/hostdisk.c
|
||||||
|
EXTRA_DIST += grub-core/osdep/sun/hostdisk.c
|
||||||
|
EXTRA_DIST += grub-core/osdep/haiku/hostdisk.c
|
||||||
|
|
||||||
|
EXTRA_DIST += grub-core/osdep/basic/init.c
|
||||||
|
EXTRA_DIST += grub-core/osdep/windows/init.c
|
||||||
|
|
||||||
|
EXTRA_DIST += grub-core/osdep/apple/getroot.c
|
||||||
|
EXTRA_DIST += grub-core/osdep/aros/getroot.c
|
||||||
|
EXTRA_DIST += grub-core/osdep/basic/getroot.c
|
||||||
|
EXTRA_DIST += grub-core/osdep/bsd/getroot.c
|
||||||
|
EXTRA_DIST += grub-core/osdep/windows/getroot.c
|
||||||
|
EXTRA_DIST += grub-core/osdep/freebsd/getroot.c
|
||||||
|
EXTRA_DIST += grub-core/osdep/hurd/getroot.c
|
||||||
|
EXTRA_DIST += grub-core/osdep/linux/getroot.c
|
||||||
|
EXTRA_DIST += grub-core/osdep/sun/getroot.c
|
||||||
|
EXTRA_DIST += grub-core/osdep/haiku/getroot.c
|
||||||
|
|
||||||
|
EXTRA_DIST += grub-core/osdep/basic/random.c
|
||||||
|
EXTRA_DIST += grub-core/osdep/basic/ofpath.c
|
||||||
|
|
||||||
|
EXTRA_DIST += grub-core/osdep/unix/password.c
|
||||||
|
EXTRA_DIST += grub-core/osdep/unix/random.c
|
||||||
|
EXTRA_DIST += grub-core/osdep/unix/sleep.c
|
||||||
|
|
||||||
|
EXTRA_DIST += grub-core/osdep/linux/ofpath.c
|
||||||
|
|
||||||
|
EXTRA_DIST += grub-core/osdep/windows/password.c
|
||||||
|
EXTRA_DIST += grub-core/osdep/windows/random.c
|
||||||
|
EXTRA_DIST += grub-core/osdep/windows/sleep.c
|
||||||
|
|
||||||
|
EXTRA_DIST += po/gettext-patches/0001-Support-POTFILES-shell.patch
|
||||||
|
EXTRA_DIST += po/gettext-patches/0002-Handle-gettext_printf-shell-function.patch
|
||||||
|
EXTRA_DIST += po/gettext-patches/0003-Make-msgfmt-output-in-little-endian.patch
|
||||||
|
EXTRA_DIST += po/gettext-patches/0004-Use-SHELL-rather-than-bin-sh.patch
|
||||||
|
|
||||||
|
EXTRA_DIST += po/POTFILES-shell.in
|
||||||
|
EXTRA_DIST += po/README
|
||||||
|
EXTRA_DIST += po/Rules-translit
|
||||||
|
EXTRA_DIST += po/Rules-windowsdir
|
||||||
|
EXTRA_DIST += po/arabic.sed
|
||||||
|
EXTRA_DIST += po/cyrillic.sed
|
||||||
|
EXTRA_DIST += po/greek.sed
|
||||||
|
EXTRA_DIST += po/grub.d.sed
|
||||||
|
EXTRA_DIST += po/hebrew.sed
|
||||||
|
|
||||||
|
EXTRA_DIST += tests/dfly-mbr-mbexample.mbr.img.gz
|
||||||
|
EXTRA_DIST += tests/dfly-mbr-mbexample.dfly.img.gz
|
||||||
|
|
||||||
|
EXTRA_DIST += coreboot.cfg
|
||||||
|
|
||||||
|
EXTRA_DIST += tests/file_filter/file
|
||||||
|
EXTRA_DIST += tests/file_filter/file.gz
|
||||||
|
EXTRA_DIST += tests/file_filter/file.gz.sig
|
||||||
|
EXTRA_DIST += tests/file_filter/file.lzop
|
||||||
|
EXTRA_DIST += tests/file_filter/file.lzop.sig
|
||||||
|
EXTRA_DIST += tests/file_filter/file.xz
|
||||||
|
EXTRA_DIST += tests/file_filter/file.xz.sig
|
||||||
|
EXTRA_DIST += tests/file_filter/keys
|
||||||
|
EXTRA_DIST += tests/file_filter/keys.pub
|
||||||
|
EXTRA_DIST += tests/file_filter/test.cfg
|
||||||
|
EXTRA_DIST += tests/syslinux/ubuntu10.04/isolinux/prompt.cfg
|
||||||
|
EXTRA_DIST += tests/syslinux/ubuntu10.04/isolinux/gfxboot.cfg
|
||||||
|
EXTRA_DIST += tests/syslinux/ubuntu10.04/isolinux/adtxt.cfg
|
||||||
|
EXTRA_DIST += tests/syslinux/ubuntu10.04/isolinux/isolinux.cfg
|
||||||
|
EXTRA_DIST += tests/syslinux/ubuntu10.04/isolinux/exithelp.cfg
|
||||||
|
EXTRA_DIST += tests/syslinux/ubuntu10.04/isolinux/txt.cfg
|
||||||
|
EXTRA_DIST += tests/syslinux/ubuntu10.04/isolinux/menu.cfg
|
||||||
|
EXTRA_DIST += tests/syslinux/ubuntu10.04/isolinux/stdmenu.cfg
|
||||||
|
EXTRA_DIST += tests/syslinux/ubuntu10.04/isolinux/dtmenu.cfg
|
||||||
|
EXTRA_DIST += tests/syslinux/ubuntu10.04/isolinux/po4a.cfg
|
||||||
|
EXTRA_DIST += tests/syslinux/ubuntu10.04/isolinux/rqtxt.cfg
|
||||||
|
EXTRA_DIST += tests/syslinux/ubuntu10.04_grub.cfg.in
|
||||||
@@ -0,0 +1,57 @@
|
|||||||
|
/* Linker script to create grub .img files on Cygwin. */
|
||||||
|
|
||||||
|
SECTIONS
|
||||||
|
{
|
||||||
|
.text :
|
||||||
|
{
|
||||||
|
start = . ;
|
||||||
|
_start = . ;
|
||||||
|
__start = . ;
|
||||||
|
*(.text)
|
||||||
|
etext = . ;
|
||||||
|
}
|
||||||
|
.data :
|
||||||
|
{
|
||||||
|
__data_start__ = . ;
|
||||||
|
*(.data)
|
||||||
|
/* Do not discard this section. */
|
||||||
|
. = . ;
|
||||||
|
__data_end__ = . ;
|
||||||
|
__rdata_start__ = . ;
|
||||||
|
*(.rdata)
|
||||||
|
__rdata_end__ = . ;
|
||||||
|
*(.pdata)
|
||||||
|
edata = . ;
|
||||||
|
_edata = . ;
|
||||||
|
__edata = . ;
|
||||||
|
}
|
||||||
|
.bss :
|
||||||
|
{
|
||||||
|
__bss_start__ = . ;
|
||||||
|
*(.bss)
|
||||||
|
__common_start__ = . ;
|
||||||
|
*(COMMON)
|
||||||
|
__bss_end__ = . ;
|
||||||
|
}
|
||||||
|
.edata :
|
||||||
|
{
|
||||||
|
*(.edata)
|
||||||
|
/* Do not discard this section. */
|
||||||
|
. = . ;
|
||||||
|
end = . ;
|
||||||
|
_end = . ;
|
||||||
|
__end = . ;
|
||||||
|
}
|
||||||
|
.stab :
|
||||||
|
{
|
||||||
|
*(.stab)
|
||||||
|
}
|
||||||
|
.stabstr :
|
||||||
|
{
|
||||||
|
*(.stabstr)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ASSERT("__rdata_end__"=="edata", ".pdata not empty")
|
||||||
|
ASSERT("__bss_end__" =="end" , ".edata not empty")
|
||||||
|
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,149 @@
|
|||||||
|
#undef _LARGEFILE_SOURCE
|
||||||
|
#undef _FILE_OFFSET_BITS
|
||||||
|
#define _LARGEFILE_SOURCE
|
||||||
|
#define _FILE_OFFSET_BITS 64
|
||||||
|
#if defined(__PPC__) && !defined(__powerpc__)
|
||||||
|
#define __powerpc__ 1
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define GCRYPT_NO_DEPRECATED 1
|
||||||
|
#define HAVE_MEMMOVE 1
|
||||||
|
|
||||||
|
#if @MM_DEBUG@
|
||||||
|
#define MM_DEBUG @MM_DEBUG@
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Define to 1 to enable disk cache statistics. */
|
||||||
|
#define DISK_CACHE_STATS @DISK_CACHE_STATS@
|
||||||
|
#define BOOT_TIME_STATS @BOOT_TIME_STATS@
|
||||||
|
|
||||||
|
/* We don't need those. */
|
||||||
|
#define MINILZO_CFG_SKIP_LZO_PTR 1
|
||||||
|
#define MINILZO_CFG_SKIP_LZO_UTIL 1
|
||||||
|
#define MINILZO_CFG_SKIP_LZO_STRING 1
|
||||||
|
#define MINILZO_CFG_SKIP_LZO_INIT 1
|
||||||
|
#define MINILZO_CFG_SKIP_LZO1X_1_COMPRESS 1
|
||||||
|
#define MINILZO_CFG_SKIP_LZO1X_DECOMPRESS 1
|
||||||
|
|
||||||
|
#if defined (GRUB_BUILD)
|
||||||
|
# undef ENABLE_NLS
|
||||||
|
# define BUILD_SIZEOF_LONG @BUILD_SIZEOF_LONG@
|
||||||
|
# define BUILD_SIZEOF_VOID_P @BUILD_SIZEOF_VOID_P@
|
||||||
|
# if defined __APPLE__
|
||||||
|
# if defined __BIG_ENDIAN__
|
||||||
|
# define BUILD_WORDS_BIGENDIAN 1
|
||||||
|
# else
|
||||||
|
# define BUILD_WORDS_BIGENDIAN 0
|
||||||
|
# endif
|
||||||
|
# else /* !defined __APPLE__ */
|
||||||
|
# define BUILD_WORDS_BIGENDIAN @BUILD_WORDS_BIGENDIAN@
|
||||||
|
# endif /* !defined __APPLE__ */
|
||||||
|
#elif defined (GRUB_UTIL) || !defined (GRUB_MACHINE)
|
||||||
|
# include <config-util.h>
|
||||||
|
#else /* !defined GRUB_UTIL && defined GRUB_MACHINE */
|
||||||
|
# define HAVE_FONT_SOURCE @HAVE_FONT_SOURCE@
|
||||||
|
/* Define if C symbols get an underscore after compilation. */
|
||||||
|
# define HAVE_ASM_USCORE @HAVE_ASM_USCORE@
|
||||||
|
/* Define it to one of __bss_start, edata and _edata. */
|
||||||
|
# define BSS_START_SYMBOL @BSS_START_SYMBOL@
|
||||||
|
/* Define it to either end or _end. */
|
||||||
|
# define END_SYMBOL @END_SYMBOL@
|
||||||
|
/* Name of package. */
|
||||||
|
# define PACKAGE "@PACKAGE@"
|
||||||
|
/* Version number of package. */
|
||||||
|
# define VERSION "@VERSION@"
|
||||||
|
/* Define to the full name and version of this package. */
|
||||||
|
# define PACKAGE_STRING "@PACKAGE_STRING@"
|
||||||
|
/* Define to the version of this package. */
|
||||||
|
# define PACKAGE_VERSION "@PACKAGE_VERSION@"
|
||||||
|
/* Define to the full name of this package. */
|
||||||
|
# define PACKAGE_NAME "@PACKAGE_NAME@"
|
||||||
|
/* Define to the address where bug reports for this package should be sent. */
|
||||||
|
# define PACKAGE_BUGREPORT "@PACKAGE_BUGREPORT@"
|
||||||
|
|
||||||
|
# define GRUB_TARGET_CPU "@GRUB_TARGET_CPU@"
|
||||||
|
# define GRUB_PLATFORM "@GRUB_PLATFORM@"
|
||||||
|
|
||||||
|
# define GRUB_STACK_PROTECTOR_INIT @GRUB_STACK_PROTECTOR_INIT@
|
||||||
|
|
||||||
|
# define RE_ENABLE_I18N 1
|
||||||
|
|
||||||
|
# define _GNU_SOURCE 1
|
||||||
|
|
||||||
|
# ifndef _GL_INLINE_HEADER_BEGIN
|
||||||
|
/*
|
||||||
|
* gnulib gets configured against the host, not the target, and the rest of
|
||||||
|
* our buildsystem works around that. This is difficult to avoid as gnulib's
|
||||||
|
* detection requires a more capable system than our target. Instead, we
|
||||||
|
* reach in and set values appropriately - intentionally setting more than the
|
||||||
|
* bare minimum. If, when updating gnulib, something breaks, there's probably
|
||||||
|
* a change needed here or in grub-core/Makefile.core.def.
|
||||||
|
*/
|
||||||
|
# define SIZE_MAX ((size_t) -1)
|
||||||
|
# define _GL_ATTRIBUTE_ALLOC_SIZE(args) \
|
||||||
|
__attribute__ ((__alloc_size__ args))
|
||||||
|
# define _GL_ATTRIBUTE_ALWAYS_INLINE __attribute__ ((__always_inline__))
|
||||||
|
# define _GL_ATTRIBUTE_ARTIFICIAL __attribute__ ((__artificial__))
|
||||||
|
# define _GL_ATTRIBUTE_COLD __attribute__ ((cold))
|
||||||
|
# define _GL_ATTRIBUTE_CONST __attribute__ ((const))
|
||||||
|
# define _GL_ATTRIBUTE_DEALLOC(f, i) __attribute ((__malloc__ (f, i)))
|
||||||
|
# define _GL_ATTRIBUTE_DEALLOC_FREE _GL_ATTRIBUTE_DEALLOC (free, 1)
|
||||||
|
# define _GL_ATTRIBUTE_DEPRECATED __attribute__ ((__deprecated__))
|
||||||
|
# define _GL_ATTRIBUTE_ERROR(msg) __attribute__ ((__error__ (msg)))
|
||||||
|
# define _GL_ATTRIBUTE_EXTERNALLY_VISIBLE \
|
||||||
|
__attribute__ ((externally_visible))
|
||||||
|
# define _GL_ATTRIBUTE_FORMAT(spec) __attribute__ ((__format__ spec))
|
||||||
|
# define _GL_ATTRIBUTE_LEAF __attribute__ ((__leaf__))
|
||||||
|
# define _GL_ATTRIBUTE_MALLOC __attribute__ ((malloc))
|
||||||
|
# define _GL_ATTRIBUTE_MAYBE_UNUSED _GL_ATTRIBUTE_UNUSED
|
||||||
|
# define _GL_ATTRIBUTE_MAY_ALIAS __attribute__ ((__may_alias__))
|
||||||
|
# define _GL_ATTRIBUTE_NODISCARD __attribute__ ((__warn_unused_result__))
|
||||||
|
# define _GL_ATTRIBUTE_NOINLINE __attribute__ ((__noinline__))
|
||||||
|
# define _GL_ATTRIBUTE_NONNULL(args) __attribute__ ((__nonnull__ args))
|
||||||
|
# define _GL_ATTRIBUTE_NONSTRING __attribute__ ((__nonstring__))
|
||||||
|
# define _GL_ATTRIBUTE_PACKED __attribute__ ((__packed__))
|
||||||
|
# define _GL_ATTRIBUTE_PURE __attribute__ ((__pure__))
|
||||||
|
# define _GL_ATTRIBUTE_RETURNS_NONNULL \
|
||||||
|
__attribute__ ((__returns_nonnull__))
|
||||||
|
# define _GL_ATTRIBUTE_SENTINEL(pos) __attribute__ ((__sentinel__ pos))
|
||||||
|
# define _GL_ATTRIBUTE_UNUSED __attribute__ ((__unused__))
|
||||||
|
# define _GL_ATTRIBUTE_WARNING(msg) __attribute__ ((__warning__ (msg)))
|
||||||
|
# define _GL_CMP(n1, n2) (((n1) > (n2)) - ((n1) < (n2)))
|
||||||
|
# define _GL_GNUC_PREREQ GNUC_PREREQ
|
||||||
|
# define _GL_INLINE inline
|
||||||
|
# define _GL_UNUSED_LABEL _GL_ATTRIBUTE_UNUSED
|
||||||
|
|
||||||
|
/* We can't use __has_attribute for these because gcc-5.1 is too old for
|
||||||
|
* that. Everything above is present in that version, though. */
|
||||||
|
# if __GNUC__ >= 7
|
||||||
|
# define _GL_ATTRIBUTE_FALLTHROUGH __attribute__ ((fallthrough))
|
||||||
|
# else
|
||||||
|
# define _GL_ATTRIBUTE_FALLTHROUGH /* empty */
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# ifndef ASM_FILE
|
||||||
|
typedef __INT_FAST32_TYPE__ int_fast32_t;
|
||||||
|
typedef __UINT_FAST32_TYPE__ uint_fast32_t;
|
||||||
|
# endif
|
||||||
|
|
||||||
|
/* Ensure ialloc nests static/non-static inline properly. */
|
||||||
|
# define IALLOC_INLINE static inline
|
||||||
|
|
||||||
|
/*
|
||||||
|
* gnulib uses these for blocking out warnings they can't/won't fix. gnulib
|
||||||
|
* also makes the decision about whether to provide a declaration for
|
||||||
|
* reallocarray() at compile-time, so this is a convenient place to override -
|
||||||
|
* it's used by the ialloc module, which is used by base64.
|
||||||
|
*/
|
||||||
|
# define _GL_INLINE_HEADER_BEGIN _Pragma ("GCC diagnostic push") \
|
||||||
|
void * \
|
||||||
|
reallocarray (void *ptr, unsigned int nmemb, unsigned int size);
|
||||||
|
# define _GL_INLINE_HEADER_END _Pragma ("GCC diagnostic pop")
|
||||||
|
# endif /* !_GL_INLINE_HEADER_BEGIN */
|
||||||
|
|
||||||
|
/* gnulib doesn't build cleanly with older compilers. */
|
||||||
|
# if __GNUC__ < 11
|
||||||
|
_Pragma ("GCC diagnostic ignored \"-Wtype-limits\"")
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#endif
|
||||||
+43227
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,3 @@
|
|||||||
|
if test -f (cbfsdisk)/etc/grub.cfg; then
|
||||||
|
source (cbfsdisk)/etc/grub.cfg
|
||||||
|
fi
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
AUTOMAKE_OPTIONS = subdir-objects
|
||||||
|
|
||||||
|
# AM_MAKEINFOFLAGS = --no-split --no-validate
|
||||||
|
info_TEXINFOS = grub.texi grub-dev.texi
|
||||||
|
grub_TEXINFOS = fdl.texi
|
||||||
|
|
||||||
|
EXTRA_DIST = font_char_metrics.png font_char_metrics.txt
|
||||||
|
|
||||||
|
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,244 @@
|
|||||||
|
# Sample GRUB script to autodetect operating systems
|
||||||
|
#
|
||||||
|
# Copyright (C) 2010 Free Software Foundation, Inc.
|
||||||
|
#
|
||||||
|
# GRUB is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# GRUB is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with GRUB. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
function pathname { regexp -s 2:"$2" '^(\(.*\))?(/.*)$' "$1"; }
|
||||||
|
function devname { regexp -s "$2" '^(\(.*\)).*$' "$1"; }
|
||||||
|
|
||||||
|
function loopback_iso_entry {
|
||||||
|
realdev="$1"
|
||||||
|
isopath="$2"
|
||||||
|
loopdev="$3"
|
||||||
|
|
||||||
|
if test -f /boot/grub/loopback.cfg; then
|
||||||
|
cfgpath=/boot/grub/loopback.cfg
|
||||||
|
elif test -f /grub/loopback.cfg; then
|
||||||
|
cfgpath=/grub/loopback.cfg
|
||||||
|
else
|
||||||
|
return 1;
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo loopback.cfg $isopath: yes
|
||||||
|
menuentry "Boot GRUB Loopback Config from ${realdev}${isopath}" "$realdev" "$isopath" "$cfgpath" {
|
||||||
|
set device="$2"
|
||||||
|
set iso_path="$3"
|
||||||
|
set cfg_path="$4"
|
||||||
|
|
||||||
|
export iso_path
|
||||||
|
loopback loopdev_cfg "${device}${iso_path}"
|
||||||
|
set root=(loopdev_cfg)
|
||||||
|
configfile $cfg_path
|
||||||
|
loopback -d loopdev_cfg
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
function grml_iso_entry {
|
||||||
|
realdev="$1"
|
||||||
|
isopath="$2"
|
||||||
|
loopdev="$3"
|
||||||
|
|
||||||
|
result=1
|
||||||
|
for dir in /boot/grml /boot/grmlsmall /boot/grmlmedium; do
|
||||||
|
if ! test -f ${dir}/linux26 -a -f ${dir}/initrd.gz; then continue; fi
|
||||||
|
|
||||||
|
echo grml $isopath: yes
|
||||||
|
result=0
|
||||||
|
menuentry "GRML Linux from ${realdev}${isopath}" \
|
||||||
|
"$realdev" "$isopath" "$dir" {
|
||||||
|
set device="$2"
|
||||||
|
set isopath="$3"
|
||||||
|
set grmldir="$4"
|
||||||
|
|
||||||
|
loopback loopdev_grml "${device}${isopath}"
|
||||||
|
set root=(loopdev_grml)
|
||||||
|
linux $grmldir/linux26 findiso="$isopath" apm=power-off quiet \
|
||||||
|
boot=live nomce
|
||||||
|
initrd $grmldir/initrd.gz
|
||||||
|
loopback -d loopdev_grml
|
||||||
|
}
|
||||||
|
done
|
||||||
|
return $result
|
||||||
|
}
|
||||||
|
|
||||||
|
function pmagic_iso_entry {
|
||||||
|
realdev="$1"
|
||||||
|
isopath="$2"
|
||||||
|
loopdev="$3"
|
||||||
|
|
||||||
|
if ! test -f /pmagic/bzImage -a -f /pmagic/initramfs; then return 1; fi
|
||||||
|
|
||||||
|
echo pmagic $isopath: yes
|
||||||
|
menuentry "Parted Magic from ${realdev}${isopath}" "$realdev" "$isopath" {
|
||||||
|
set device="$2"
|
||||||
|
set isopath="$3"
|
||||||
|
|
||||||
|
loopback loopdev_pmagic "${device}${isopath}"
|
||||||
|
set root=(loopdev_pmagic)
|
||||||
|
linux /pmagic/bzImage iso_filename="$isopath" edd=off noapic \
|
||||||
|
load_ramdisk=1 prompt_ramdisk=0 rw sleep=10 loglevel=0 \
|
||||||
|
keymap=$langcode
|
||||||
|
initrd /pmagic/initramfs
|
||||||
|
loopback -d loopdev_pmagic
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
function sidux_iso_entry {
|
||||||
|
realdev="$1"
|
||||||
|
isopath="$2"
|
||||||
|
loopdev="$3"
|
||||||
|
|
||||||
|
result=1
|
||||||
|
for kernel in /boot/vmlinuz-*-sidux-*; do
|
||||||
|
if ! test -f "$kernel"; then continue; fi
|
||||||
|
regexp -s 1:v1 -s 2:v2 '/boot/vmlinuz-(.*)-sidux-(.*)' "$kernel"
|
||||||
|
|
||||||
|
initrd="/boot/initrd.img-$v1-sidux-$v2"
|
||||||
|
if ! test -f "$initrd"; then continue; fi
|
||||||
|
|
||||||
|
result=0
|
||||||
|
echo sidux $isopath: yes
|
||||||
|
menuentry "Sidux vmlinux-$v1-sidux-$v2 from ${realdev}${isopath}" "$realdev" "$isopath" "$kernel" "$initrd" {
|
||||||
|
set device="$2"
|
||||||
|
set isopath="$3"
|
||||||
|
set kernel="$4"
|
||||||
|
set initrd="$5"
|
||||||
|
|
||||||
|
loopback loopdev_sidux "${device}${isopath}"
|
||||||
|
set root=(loopdev_sidux)
|
||||||
|
linux $kernel fromiso=$isopath boot=fll quiet
|
||||||
|
initrd $initrd
|
||||||
|
loopback -d loopdev_sidux
|
||||||
|
}
|
||||||
|
done
|
||||||
|
return $result
|
||||||
|
}
|
||||||
|
|
||||||
|
function slax_iso_entry {
|
||||||
|
realdev="$1"
|
||||||
|
isopath="$2"
|
||||||
|
loopdev="$3"
|
||||||
|
|
||||||
|
if ! test -f /boot/vmlinuz -a -f /boot/initrd.gz; then return 1; fi
|
||||||
|
|
||||||
|
echo slax $isopath: yes
|
||||||
|
menuentry "Slax Linux from ${realdev}${isopath}" "$realdev" "$isopath" {
|
||||||
|
set device="$2"
|
||||||
|
set isopath="$3"
|
||||||
|
|
||||||
|
loopback loopdev_slax "${device}${isopath}"
|
||||||
|
set root=(loopdev_slax)
|
||||||
|
linux /boot/vmlinuz from=$isopath ramdisk_size=6666 root=/dev/ram0 rw
|
||||||
|
initrd /boot/initrd.gz
|
||||||
|
loopback -d loopdev_slax
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
function tinycore_iso_entry {
|
||||||
|
realpath="$1"
|
||||||
|
isopath="$2"
|
||||||
|
loopdev="$3"
|
||||||
|
|
||||||
|
if ! test -f /boot/bzImage -a -f /boot/tinycore.gz; then return 1; fi
|
||||||
|
|
||||||
|
echo tinycore $isopath: yes
|
||||||
|
menuentry "Tinycore Linux from ${realdev}${isopath}" "$realdev" "$isopath" {
|
||||||
|
set device="$2"
|
||||||
|
set isopath="$3"
|
||||||
|
|
||||||
|
loopback loopdev_tiny "${device}${isopath}"
|
||||||
|
set root=(loopdev_tiny)
|
||||||
|
linux /boot/bzImage
|
||||||
|
initrd /boot/tinycore.gz
|
||||||
|
loopback -d loopdev_tiny
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
function casper_iso_entry {
|
||||||
|
realpath="$1"
|
||||||
|
isopath="$2"
|
||||||
|
loopdev="$3"
|
||||||
|
|
||||||
|
if ! test -f /casper/vmlinuz; then return 1; fi
|
||||||
|
initrd=
|
||||||
|
for f in /casper/initrd.*z; do
|
||||||
|
if ! test -f "$f"; then continue; fi
|
||||||
|
pathname "$f" initrd
|
||||||
|
done
|
||||||
|
if test -z "$initrd"; then return 1; fi
|
||||||
|
|
||||||
|
echo casper $isopath: yes
|
||||||
|
menuentry "Casper based Linux from ${realdev}${isopath}" "$realdev" "$isopath" "$initrd" {
|
||||||
|
set device="$2"
|
||||||
|
set isopath="$3"
|
||||||
|
set initrd="$4"
|
||||||
|
|
||||||
|
loopback loopdev_casper "${device}${isopath}"
|
||||||
|
set root=(loopdev_casper)
|
||||||
|
linux /casper/vmlinuz boot=casper iso-scan/filename="$isopath" quiet splash noprompt keyb="$langcode" \
|
||||||
|
debian-installer/language="$langcode" console-setup/layoutcode?="$langcode" --
|
||||||
|
initrd $initrd
|
||||||
|
loopback -d loopdev_casper
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
function scan_isos {
|
||||||
|
isodirs="$1"
|
||||||
|
|
||||||
|
for dev in (*); do
|
||||||
|
for dir in $isodirs; do
|
||||||
|
for file in ${dev}${dir}/*.iso ${dev}${dir}/*.ISO; do
|
||||||
|
if ! test -f "$file"; then continue; fi
|
||||||
|
|
||||||
|
pathname $file isopath
|
||||||
|
if test -z "$dev" -o -z "$isopath"; then continue; fi
|
||||||
|
|
||||||
|
if ! loopback loopdev_scan "$file"; then continue; fi
|
||||||
|
saved_root=$root
|
||||||
|
set root=(loopdev_scan)
|
||||||
|
|
||||||
|
if loopback_iso_entry $dev $isopath (loopdev_scan); then true;
|
||||||
|
elif grml_iso_entry $dev $isopath (loopdev_scan); then true;
|
||||||
|
elif pmagic_iso_entry $dev $isopath (loopdev_scan); then true;
|
||||||
|
elif sidux_iso_entry $dev $isopath (loopdev_scan); then true;
|
||||||
|
elif slax_iso_entry $dev $isopath (loopdev_scan); then true;
|
||||||
|
elif tinycore_iso_entry $dev $isopath (loopdev_scan); then true;
|
||||||
|
elif casper_iso_entry $dev $isopath (loopdev_scan); then true;
|
||||||
|
else true; fi
|
||||||
|
|
||||||
|
set root=$saved_root
|
||||||
|
loopback -d loopdev_scan
|
||||||
|
done
|
||||||
|
done
|
||||||
|
done
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
# XXX Remove later
|
||||||
|
insmod serial
|
||||||
|
serial
|
||||||
|
terminal_output --append serial
|
||||||
|
# terminal_input --append serial
|
||||||
|
|
||||||
|
langcode="$lang"
|
||||||
|
|
||||||
|
insmod regexp
|
||||||
|
scan_isos /iso /boot/iso
|
||||||
|
|
||||||
@@ -0,0 +1,452 @@
|
|||||||
|
|
||||||
|
@node GNU Free Documentation License
|
||||||
|
@appendixsec GNU Free Documentation License
|
||||||
|
|
||||||
|
@cindex FDL, GNU Free Documentation License
|
||||||
|
@center Version 1.2, November 2002
|
||||||
|
|
||||||
|
@display
|
||||||
|
Copyright @copyright{} 2000,2001,2002 Free Software Foundation, Inc.
|
||||||
|
51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||||
|
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
of this license document, but changing it is not allowed.
|
||||||
|
@end display
|
||||||
|
|
||||||
|
@enumerate 0
|
||||||
|
@item
|
||||||
|
PREAMBLE
|
||||||
|
|
||||||
|
The purpose of this License is to make a manual, textbook, or other
|
||||||
|
functional and useful document @dfn{free} in the sense of freedom: to
|
||||||
|
assure everyone the effective freedom to copy and redistribute it,
|
||||||
|
with or without modifying it, either commercially or noncommercially.
|
||||||
|
Secondarily, this License preserves for the author and publisher a way
|
||||||
|
to get credit for their work, while not being considered responsible
|
||||||
|
for modifications made by others.
|
||||||
|
|
||||||
|
This License is a kind of ``copyleft'', which means that derivative
|
||||||
|
works of the document must themselves be free in the same sense. It
|
||||||
|
complements the GNU General Public License, which is a copyleft
|
||||||
|
license designed for free software.
|
||||||
|
|
||||||
|
We have designed this License in order to use it for manuals for free
|
||||||
|
software, because free software needs free documentation: a free
|
||||||
|
program should come with manuals providing the same freedoms that the
|
||||||
|
software does. But this License is not limited to software manuals;
|
||||||
|
it can be used for any textual work, regardless of subject matter or
|
||||||
|
whether it is published as a printed book. We recommend this License
|
||||||
|
principally for works whose purpose is instruction or reference.
|
||||||
|
|
||||||
|
@item
|
||||||
|
APPLICABILITY AND DEFINITIONS
|
||||||
|
|
||||||
|
This License applies to any manual or other work, in any medium, that
|
||||||
|
contains a notice placed by the copyright holder saying it can be
|
||||||
|
distributed under the terms of this License. Such a notice grants a
|
||||||
|
world-wide, royalty-free license, unlimited in duration, to use that
|
||||||
|
work under the conditions stated herein. The ``Document'', below,
|
||||||
|
refers to any such manual or work. Any member of the public is a
|
||||||
|
licensee, and is addressed as ``you''. You accept the license if you
|
||||||
|
copy, modify or distribute the work in a way requiring permission
|
||||||
|
under copyright law.
|
||||||
|
|
||||||
|
A ``Modified Version'' of the Document means any work containing the
|
||||||
|
Document or a portion of it, either copied verbatim, or with
|
||||||
|
modifications and/or translated into another language.
|
||||||
|
|
||||||
|
A ``Secondary Section'' is a named appendix or a front-matter section
|
||||||
|
of the Document that deals exclusively with the relationship of the
|
||||||
|
publishers or authors of the Document to the Document's overall
|
||||||
|
subject (or to related matters) and contains nothing that could fall
|
||||||
|
directly within that overall subject. (Thus, if the Document is in
|
||||||
|
part a textbook of mathematics, a Secondary Section may not explain
|
||||||
|
any mathematics.) The relationship could be a matter of historical
|
||||||
|
connection with the subject or with related matters, or of legal,
|
||||||
|
commercial, philosophical, ethical or political position regarding
|
||||||
|
them.
|
||||||
|
|
||||||
|
The ``Invariant Sections'' are certain Secondary Sections whose titles
|
||||||
|
are designated, as being those of Invariant Sections, in the notice
|
||||||
|
that says that the Document is released under this License. If a
|
||||||
|
section does not fit the above definition of Secondary then it is not
|
||||||
|
allowed to be designated as Invariant. The Document may contain zero
|
||||||
|
Invariant Sections. If the Document does not identify any Invariant
|
||||||
|
Sections then there are none.
|
||||||
|
|
||||||
|
The ``Cover Texts'' are certain short passages of text that are listed,
|
||||||
|
as Front-Cover Texts or Back-Cover Texts, in the notice that says that
|
||||||
|
the Document is released under this License. A Front-Cover Text may
|
||||||
|
be at most 5 words, and a Back-Cover Text may be at most 25 words.
|
||||||
|
|
||||||
|
A ``Transparent'' copy of the Document means a machine-readable copy,
|
||||||
|
represented in a format whose specification is available to the
|
||||||
|
general public, that is suitable for revising the document
|
||||||
|
straightforwardly with generic text editors or (for images composed of
|
||||||
|
pixels) generic paint programs or (for drawings) some widely available
|
||||||
|
drawing editor, and that is suitable for input to text formatters or
|
||||||
|
for automatic translation to a variety of formats suitable for input
|
||||||
|
to text formatters. A copy made in an otherwise Transparent file
|
||||||
|
format whose markup, or absence of markup, has been arranged to thwart
|
||||||
|
or discourage subsequent modification by readers is not Transparent.
|
||||||
|
An image format is not Transparent if used for any substantial amount
|
||||||
|
of text. A copy that is not ``Transparent'' is called ``Opaque''.
|
||||||
|
|
||||||
|
Examples of suitable formats for Transparent copies include plain
|
||||||
|
@sc{ascii} without markup, Texinfo input format, La@TeX{} input
|
||||||
|
format, @acronym{SGML} or @acronym{XML} using a publicly available
|
||||||
|
@acronym{DTD}, and standard-conforming simple @acronym{HTML},
|
||||||
|
PostScript or @acronym{PDF} designed for human modification. Examples
|
||||||
|
of transparent image formats include @acronym{PNG}, @acronym{XCF} and
|
||||||
|
@acronym{JPG}. Opaque formats include proprietary formats that can be
|
||||||
|
read and edited only by proprietary word processors, @acronym{SGML} or
|
||||||
|
@acronym{XML} for which the @acronym{DTD} and/or processing tools are
|
||||||
|
not generally available, and the machine-generated @acronym{HTML},
|
||||||
|
PostScript or @acronym{PDF} produced by some word processors for
|
||||||
|
output purposes only.
|
||||||
|
|
||||||
|
The ``Title Page'' means, for a printed book, the title page itself,
|
||||||
|
plus such following pages as are needed to hold, legibly, the material
|
||||||
|
this License requires to appear in the title page. For works in
|
||||||
|
formats which do not have any title page as such, ``Title Page'' means
|
||||||
|
the text near the most prominent appearance of the work's title,
|
||||||
|
preceding the beginning of the body of the text.
|
||||||
|
|
||||||
|
A section ``Entitled XYZ'' means a named subunit of the Document whose
|
||||||
|
title either is precisely XYZ or contains XYZ in parentheses following
|
||||||
|
text that translates XYZ in another language. (Here XYZ stands for a
|
||||||
|
specific section name mentioned below, such as ``Acknowledgements'',
|
||||||
|
``Dedications'', ``Endorsements'', or ``History''.) To ``Preserve the Title''
|
||||||
|
of such a section when you modify the Document means that it remains a
|
||||||
|
section ``Entitled XYZ'' according to this definition.
|
||||||
|
|
||||||
|
The Document may include Warranty Disclaimers next to the notice which
|
||||||
|
states that this License applies to the Document. These Warranty
|
||||||
|
Disclaimers are considered to be included by reference in this
|
||||||
|
License, but only as regards disclaiming warranties: any other
|
||||||
|
implication that these Warranty Disclaimers may have is void and has
|
||||||
|
no effect on the meaning of this License.
|
||||||
|
|
||||||
|
@item
|
||||||
|
VERBATIM COPYING
|
||||||
|
|
||||||
|
You may copy and distribute the Document in any medium, either
|
||||||
|
commercially or noncommercially, provided that this License, the
|
||||||
|
copyright notices, and the license notice saying this License applies
|
||||||
|
to the Document are reproduced in all copies, and that you add no other
|
||||||
|
conditions whatsoever to those of this License. You may not use
|
||||||
|
technical measures to obstruct or control the reading or further
|
||||||
|
copying of the copies you make or distribute. However, you may accept
|
||||||
|
compensation in exchange for copies. If you distribute a large enough
|
||||||
|
number of copies you must also follow the conditions in section 3.
|
||||||
|
|
||||||
|
You may also lend copies, under the same conditions stated above, and
|
||||||
|
you may publicly display copies.
|
||||||
|
|
||||||
|
@item
|
||||||
|
COPYING IN QUANTITY
|
||||||
|
|
||||||
|
If you publish printed copies (or copies in media that commonly have
|
||||||
|
printed covers) of the Document, numbering more than 100, and the
|
||||||
|
Document's license notice requires Cover Texts, you must enclose the
|
||||||
|
copies in covers that carry, clearly and legibly, all these Cover
|
||||||
|
Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on
|
||||||
|
the back cover. Both covers must also clearly and legibly identify
|
||||||
|
you as the publisher of these copies. The front cover must present
|
||||||
|
the full title with all words of the title equally prominent and
|
||||||
|
visible. You may add other material on the covers in addition.
|
||||||
|
Copying with changes limited to the covers, as long as they preserve
|
||||||
|
the title of the Document and satisfy these conditions, can be treated
|
||||||
|
as verbatim copying in other respects.
|
||||||
|
|
||||||
|
If the required texts for either cover are too voluminous to fit
|
||||||
|
legibly, you should put the first ones listed (as many as fit
|
||||||
|
reasonably) on the actual cover, and continue the rest onto adjacent
|
||||||
|
pages.
|
||||||
|
|
||||||
|
If you publish or distribute Opaque copies of the Document numbering
|
||||||
|
more than 100, you must either include a machine-readable Transparent
|
||||||
|
copy along with each Opaque copy, or state in or with each Opaque copy
|
||||||
|
a computer-network location from which the general network-using
|
||||||
|
public has access to download using public-standard network protocols
|
||||||
|
a complete Transparent copy of the Document, free of added material.
|
||||||
|
If you use the latter option, you must take reasonably prudent steps,
|
||||||
|
when you begin distribution of Opaque copies in quantity, to ensure
|
||||||
|
that this Transparent copy will remain thus accessible at the stated
|
||||||
|
location until at least one year after the last time you distribute an
|
||||||
|
Opaque copy (directly or through your agents or retailers) of that
|
||||||
|
edition to the public.
|
||||||
|
|
||||||
|
It is requested, but not required, that you contact the authors of the
|
||||||
|
Document well before redistributing any large number of copies, to give
|
||||||
|
them a chance to provide you with an updated version of the Document.
|
||||||
|
|
||||||
|
@item
|
||||||
|
MODIFICATIONS
|
||||||
|
|
||||||
|
You may copy and distribute a Modified Version of the Document under
|
||||||
|
the conditions of sections 2 and 3 above, provided that you release
|
||||||
|
the Modified Version under precisely this License, with the Modified
|
||||||
|
Version filling the role of the Document, thus licensing distribution
|
||||||
|
and modification of the Modified Version to whoever possesses a copy
|
||||||
|
of it. In addition, you must do these things in the Modified Version:
|
||||||
|
|
||||||
|
@enumerate A
|
||||||
|
@item
|
||||||
|
Use in the Title Page (and on the covers, if any) a title distinct
|
||||||
|
from that of the Document, and from those of previous versions
|
||||||
|
(which should, if there were any, be listed in the History section
|
||||||
|
of the Document). You may use the same title as a previous version
|
||||||
|
if the original publisher of that version gives permission.
|
||||||
|
|
||||||
|
@item
|
||||||
|
List on the Title Page, as authors, one or more persons or entities
|
||||||
|
responsible for authorship of the modifications in the Modified
|
||||||
|
Version, together with at least five of the principal authors of the
|
||||||
|
Document (all of its principal authors, if it has fewer than five),
|
||||||
|
unless they release you from this requirement.
|
||||||
|
|
||||||
|
@item
|
||||||
|
State on the Title page the name of the publisher of the
|
||||||
|
Modified Version, as the publisher.
|
||||||
|
|
||||||
|
@item
|
||||||
|
Preserve all the copyright notices of the Document.
|
||||||
|
|
||||||
|
@item
|
||||||
|
Add an appropriate copyright notice for your modifications
|
||||||
|
adjacent to the other copyright notices.
|
||||||
|
|
||||||
|
@item
|
||||||
|
Include, immediately after the copyright notices, a license notice
|
||||||
|
giving the public permission to use the Modified Version under the
|
||||||
|
terms of this License, in the form shown in the Addendum below.
|
||||||
|
|
||||||
|
@item
|
||||||
|
Preserve in that license notice the full lists of Invariant Sections
|
||||||
|
and required Cover Texts given in the Document's license notice.
|
||||||
|
|
||||||
|
@item
|
||||||
|
Include an unaltered copy of this License.
|
||||||
|
|
||||||
|
@item
|
||||||
|
Preserve the section Entitled ``History'', Preserve its Title, and add
|
||||||
|
to it an item stating at least the title, year, new authors, and
|
||||||
|
publisher of the Modified Version as given on the Title Page. If
|
||||||
|
there is no section Entitled ``History'' in the Document, create one
|
||||||
|
stating the title, year, authors, and publisher of the Document as
|
||||||
|
given on its Title Page, then add an item describing the Modified
|
||||||
|
Version as stated in the previous sentence.
|
||||||
|
|
||||||
|
@item
|
||||||
|
Preserve the network location, if any, given in the Document for
|
||||||
|
public access to a Transparent copy of the Document, and likewise
|
||||||
|
the network locations given in the Document for previous versions
|
||||||
|
it was based on. These may be placed in the ``History'' section.
|
||||||
|
You may omit a network location for a work that was published at
|
||||||
|
least four years before the Document itself, or if the original
|
||||||
|
publisher of the version it refers to gives permission.
|
||||||
|
|
||||||
|
@item
|
||||||
|
For any section Entitled ``Acknowledgements'' or ``Dedications'', Preserve
|
||||||
|
the Title of the section, and preserve in the section all the
|
||||||
|
substance and tone of each of the contributor acknowledgements and/or
|
||||||
|
dedications given therein.
|
||||||
|
|
||||||
|
@item
|
||||||
|
Preserve all the Invariant Sections of the Document,
|
||||||
|
unaltered in their text and in their titles. Section numbers
|
||||||
|
or the equivalent are not considered part of the section titles.
|
||||||
|
|
||||||
|
@item
|
||||||
|
Delete any section Entitled ``Endorsements''. Such a section
|
||||||
|
may not be included in the Modified Version.
|
||||||
|
|
||||||
|
@item
|
||||||
|
Do not retitle any existing section to be Entitled ``Endorsements'' or
|
||||||
|
to conflict in title with any Invariant Section.
|
||||||
|
|
||||||
|
@item
|
||||||
|
Preserve any Warranty Disclaimers.
|
||||||
|
@end enumerate
|
||||||
|
|
||||||
|
If the Modified Version includes new front-matter sections or
|
||||||
|
appendices that qualify as Secondary Sections and contain no material
|
||||||
|
copied from the Document, you may at your option designate some or all
|
||||||
|
of these sections as invariant. To do this, add their titles to the
|
||||||
|
list of Invariant Sections in the Modified Version's license notice.
|
||||||
|
These titles must be distinct from any other section titles.
|
||||||
|
|
||||||
|
You may add a section Entitled ``Endorsements'', provided it contains
|
||||||
|
nothing but endorsements of your Modified Version by various
|
||||||
|
parties---for example, statements of peer review or that the text has
|
||||||
|
been approved by an organization as the authoritative definition of a
|
||||||
|
standard.
|
||||||
|
|
||||||
|
You may add a passage of up to five words as a Front-Cover Text, and a
|
||||||
|
passage of up to 25 words as a Back-Cover Text, to the end of the list
|
||||||
|
of Cover Texts in the Modified Version. Only one passage of
|
||||||
|
Front-Cover Text and one of Back-Cover Text may be added by (or
|
||||||
|
through arrangements made by) any one entity. If the Document already
|
||||||
|
includes a cover text for the same cover, previously added by you or
|
||||||
|
by arrangement made by the same entity you are acting on behalf of,
|
||||||
|
you may not add another; but you may replace the old one, on explicit
|
||||||
|
permission from the previous publisher that added the old one.
|
||||||
|
|
||||||
|
The author(s) and publisher(s) of the Document do not by this License
|
||||||
|
give permission to use their names for publicity for or to assert or
|
||||||
|
imply endorsement of any Modified Version.
|
||||||
|
|
||||||
|
@item
|
||||||
|
COMBINING DOCUMENTS
|
||||||
|
|
||||||
|
You may combine the Document with other documents released under this
|
||||||
|
License, under the terms defined in section 4 above for modified
|
||||||
|
versions, provided that you include in the combination all of the
|
||||||
|
Invariant Sections of all of the original documents, unmodified, and
|
||||||
|
list them all as Invariant Sections of your combined work in its
|
||||||
|
license notice, and that you preserve all their Warranty Disclaimers.
|
||||||
|
|
||||||
|
The combined work need only contain one copy of this License, and
|
||||||
|
multiple identical Invariant Sections may be replaced with a single
|
||||||
|
copy. If there are multiple Invariant Sections with the same name but
|
||||||
|
different contents, make the title of each such section unique by
|
||||||
|
adding at the end of it, in parentheses, the name of the original
|
||||||
|
author or publisher of that section if known, or else a unique number.
|
||||||
|
Make the same adjustment to the section titles in the list of
|
||||||
|
Invariant Sections in the license notice of the combined work.
|
||||||
|
|
||||||
|
In the combination, you must combine any sections Entitled ``History''
|
||||||
|
in the various original documents, forming one section Entitled
|
||||||
|
``History''; likewise combine any sections Entitled ``Acknowledgements'',
|
||||||
|
and any sections Entitled ``Dedications''. You must delete all
|
||||||
|
sections Entitled ``Endorsements.''
|
||||||
|
|
||||||
|
@item
|
||||||
|
COLLECTIONS OF DOCUMENTS
|
||||||
|
|
||||||
|
You may make a collection consisting of the Document and other documents
|
||||||
|
released under this License, and replace the individual copies of this
|
||||||
|
License in the various documents with a single copy that is included in
|
||||||
|
the collection, provided that you follow the rules of this License for
|
||||||
|
verbatim copying of each of the documents in all other respects.
|
||||||
|
|
||||||
|
You may extract a single document from such a collection, and distribute
|
||||||
|
it individually under this License, provided you insert a copy of this
|
||||||
|
License into the extracted document, and follow this License in all
|
||||||
|
other respects regarding verbatim copying of that document.
|
||||||
|
|
||||||
|
@item
|
||||||
|
AGGREGATION WITH INDEPENDENT WORKS
|
||||||
|
|
||||||
|
A compilation of the Document or its derivatives with other separate
|
||||||
|
and independent documents or works, in or on a volume of a storage or
|
||||||
|
distribution medium, is called an ``aggregate'' if the copyright
|
||||||
|
resulting from the compilation is not used to limit the legal rights
|
||||||
|
of the compilation's users beyond what the individual works permit.
|
||||||
|
When the Document is included in an aggregate, this License does not
|
||||||
|
apply to the other works in the aggregate which are not themselves
|
||||||
|
derivative works of the Document.
|
||||||
|
|
||||||
|
If the Cover Text requirement of section 3 is applicable to these
|
||||||
|
copies of the Document, then if the Document is less than one half of
|
||||||
|
the entire aggregate, the Document's Cover Texts may be placed on
|
||||||
|
covers that bracket the Document within the aggregate, or the
|
||||||
|
electronic equivalent of covers if the Document is in electronic form.
|
||||||
|
Otherwise they must appear on printed covers that bracket the whole
|
||||||
|
aggregate.
|
||||||
|
|
||||||
|
@item
|
||||||
|
TRANSLATION
|
||||||
|
|
||||||
|
Translation is considered a kind of modification, so you may
|
||||||
|
distribute translations of the Document under the terms of section 4.
|
||||||
|
Replacing Invariant Sections with translations requires special
|
||||||
|
permission from their copyright holders, but you may include
|
||||||
|
translations of some or all Invariant Sections in addition to the
|
||||||
|
original versions of these Invariant Sections. You may include a
|
||||||
|
translation of this License, and all the license notices in the
|
||||||
|
Document, and any Warranty Disclaimers, provided that you also include
|
||||||
|
the original English version of this License and the original versions
|
||||||
|
of those notices and disclaimers. In case of a disagreement between
|
||||||
|
the translation and the original version of this License or a notice
|
||||||
|
or disclaimer, the original version will prevail.
|
||||||
|
|
||||||
|
If a section in the Document is Entitled ``Acknowledgements'',
|
||||||
|
``Dedications'', or ``History'', the requirement (section 4) to Preserve
|
||||||
|
its Title (section 1) will typically require changing the actual
|
||||||
|
title.
|
||||||
|
|
||||||
|
@item
|
||||||
|
TERMINATION
|
||||||
|
|
||||||
|
You may not copy, modify, sublicense, or distribute the Document except
|
||||||
|
as expressly provided for under this License. Any other attempt to
|
||||||
|
copy, modify, sublicense or distribute the Document is void, and will
|
||||||
|
automatically terminate your rights under this License. However,
|
||||||
|
parties who have received copies, or rights, from you under this
|
||||||
|
License will not have their licenses terminated so long as such
|
||||||
|
parties remain in full compliance.
|
||||||
|
|
||||||
|
@item
|
||||||
|
FUTURE REVISIONS OF THIS LICENSE
|
||||||
|
|
||||||
|
The Free Software Foundation may publish new, revised versions
|
||||||
|
of the GNU Free Documentation License from time to time. Such new
|
||||||
|
versions will be similar in spirit to the present version, but may
|
||||||
|
differ in detail to address new problems or concerns. See
|
||||||
|
@uref{http://www.gnu.org/copyleft/}.
|
||||||
|
|
||||||
|
Each version of the License is given a distinguishing version number.
|
||||||
|
If the Document specifies that a particular numbered version of this
|
||||||
|
License ``or any later version'' applies to it, you have the option of
|
||||||
|
following the terms and conditions either of that specified version or
|
||||||
|
of any later version that has been published (not as a draft) by the
|
||||||
|
Free Software Foundation. If the Document does not specify a version
|
||||||
|
number of this License, you may choose any version ever published (not
|
||||||
|
as a draft) by the Free Software Foundation.
|
||||||
|
@end enumerate
|
||||||
|
|
||||||
|
@page
|
||||||
|
@appendixsubsec ADDENDUM: How to use this License for your documents
|
||||||
|
|
||||||
|
To use this License in a document you have written, include a copy of
|
||||||
|
the License in the document and put the following copyright and
|
||||||
|
license notices just after the title page:
|
||||||
|
|
||||||
|
@smallexample
|
||||||
|
@group
|
||||||
|
Copyright (C) @var{year} @var{your name}.
|
||||||
|
Permission is granted to copy, distribute and/or modify this document
|
||||||
|
under the terms of the GNU Free Documentation License, Version 1.2
|
||||||
|
or any later version published by the Free Software Foundation;
|
||||||
|
with no Invariant Sections, no Front-Cover Texts, and no Back-Cover
|
||||||
|
Texts. A copy of the license is included in the section entitled ``GNU
|
||||||
|
Free Documentation License''.
|
||||||
|
@end group
|
||||||
|
@end smallexample
|
||||||
|
|
||||||
|
If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts,
|
||||||
|
replace the ``with...Texts.'' line with this:
|
||||||
|
|
||||||
|
@smallexample
|
||||||
|
@group
|
||||||
|
with the Invariant Sections being @var{list their titles}, with
|
||||||
|
the Front-Cover Texts being @var{list}, and with the Back-Cover Texts
|
||||||
|
being @var{list}.
|
||||||
|
@end group
|
||||||
|
@end smallexample
|
||||||
|
|
||||||
|
If you have Invariant Sections without Cover Texts, or some other
|
||||||
|
combination of the three, merge those two alternatives to suit the
|
||||||
|
situation.
|
||||||
|
|
||||||
|
If your document contains nontrivial examples of program code, we
|
||||||
|
recommend releasing these examples in parallel under your choice of
|
||||||
|
free software license, such as the GNU General Public License,
|
||||||
|
to permit their use in free software.
|
||||||
|
|
||||||
|
@c Local Variables:
|
||||||
|
@c ispell-local-pdict: "ispell-dict"
|
||||||
|
@c End:
|
||||||
|
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 16 KiB |
@@ -0,0 +1 @@
|
|||||||
|
Please fill this in.
|
||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,76 @@
|
|||||||
|
#
|
||||||
|
# Sample GRUB configuration file
|
||||||
|
#
|
||||||
|
|
||||||
|
# Boot automatically after 30 secs.
|
||||||
|
set timeout=30
|
||||||
|
|
||||||
|
# By default, boot the GNU/Linux
|
||||||
|
set default=gnulinux
|
||||||
|
|
||||||
|
# Fallback to GNU/Hurd.
|
||||||
|
set fallback=gnuhurd
|
||||||
|
|
||||||
|
# For booting GNU/Linux
|
||||||
|
menuentry "GNU/Linux" --id gnulinux {
|
||||||
|
set root=(hd0,msdos1)
|
||||||
|
linux /vmlinuz root=/dev/sda1
|
||||||
|
initrd /initrd.img
|
||||||
|
}
|
||||||
|
|
||||||
|
# For booting GNU/Hurd
|
||||||
|
menuentry "GNU (aka GNU/Hurd)" --id gnuhurd {
|
||||||
|
set root=(hd0,msdos1)
|
||||||
|
multiboot /boot/gnumach.gz root=device:hd0s1
|
||||||
|
module /hurd/ext2fs.static ext2fs --readonly \
|
||||||
|
--multiboot-command-line='${kernel-command-line}' \
|
||||||
|
--host-priv-port='${host-port}' \
|
||||||
|
--device-master-port='${device-port}' \
|
||||||
|
--exec-server-task='${exec-task}' -T typed '${root}' \
|
||||||
|
'$(task-create)' '$(task-resume)'
|
||||||
|
module /lib/ld.so.1 exec /hurd/exec '$(exec-task=task-create)'
|
||||||
|
}
|
||||||
|
|
||||||
|
# For booting FreeBSD
|
||||||
|
menuentry "FreeBSD (or GNU/kFreeBSD), direct boot" {
|
||||||
|
set root=(hd0,msdos1,bsd1)
|
||||||
|
kfreebsd /boot/kernel/kernel
|
||||||
|
kfreebsd_loadenv /boot/device.hints
|
||||||
|
kfreebsd_module /boot/splash.bmp type=splash_image_data
|
||||||
|
set kFreeBSD.vfs.root.mountfrom=ufs:ad0s1a
|
||||||
|
}
|
||||||
|
|
||||||
|
menuentry "FreeBSD (or GNU/kFreeBSD), via /boot/loader" {
|
||||||
|
set root=(hd0,msdos1,bsd1)
|
||||||
|
kfreebsd /boot/loader
|
||||||
|
}
|
||||||
|
|
||||||
|
# For booting NetBSD
|
||||||
|
menuentry "NetBSD" {
|
||||||
|
set root=(hd0,netbsd1)
|
||||||
|
knetbsd /netbsd
|
||||||
|
}
|
||||||
|
|
||||||
|
# For booting OpenBSD
|
||||||
|
menuentry "OpenBSD" {
|
||||||
|
set root=(hd0,openbsd1)
|
||||||
|
kopenbsd /bsd
|
||||||
|
}
|
||||||
|
|
||||||
|
# For booting Microsoft Windows
|
||||||
|
menuentry "Microsoft Windows" {
|
||||||
|
set root=(hd0,msdos1)
|
||||||
|
chainloader +1
|
||||||
|
}
|
||||||
|
|
||||||
|
# For booting Memtest86+
|
||||||
|
menuentry "Memtest86+" {
|
||||||
|
set root=(hd0,1)
|
||||||
|
linux16 /memtest86+.bin
|
||||||
|
}
|
||||||
|
|
||||||
|
# Change the colors.
|
||||||
|
menuentry "Change the colors" {
|
||||||
|
set menu_color_normal=light-green/brown
|
||||||
|
set menu_color_highlight=red/blue
|
||||||
|
}
|
||||||
@@ -0,0 +1,298 @@
|
|||||||
|
This is grub.info, produced by makeinfo version 6.3 from grub.texi.
|
||||||
|
|
||||||
|
This manual is for GNU GRUB (version 2.12, 5 December 2023).
|
||||||
|
|
||||||
|
Copyright (C)
|
||||||
|
1999,2000,2001,2002,2004,2006,2008,2009,2010,2011,2012,2013 Free
|
||||||
|
Software Foundation, Inc.
|
||||||
|
|
||||||
|
Permission is granted to copy, distribute and/or modify this
|
||||||
|
document under the terms of the GNU Free Documentation License,
|
||||||
|
Version 1.2 or any later version published by the Free Software
|
||||||
|
Foundation; with no Invariant Sections.
|
||||||
|
INFO-DIR-SECTION Kernel
|
||||||
|
START-INFO-DIR-ENTRY
|
||||||
|
* GRUB: (grub). The GRand Unified Bootloader
|
||||||
|
* grub-install: (grub)Invoking grub-install. Install GRUB on your drive
|
||||||
|
* grub-mkconfig: (grub)Invoking grub-mkconfig. Generate GRUB configuration
|
||||||
|
* grub-mkpasswd-pbkdf2: (grub)Invoking grub-mkpasswd-pbkdf2.
|
||||||
|
* grub-mkrelpath: (grub)Invoking grub-mkrelpath.
|
||||||
|
* grub-mkrescue: (grub)Invoking grub-mkrescue. Make a GRUB rescue image
|
||||||
|
* grub-mount: (grub)Invoking grub-mount. Mount a file system using GRUB
|
||||||
|
* grub-probe: (grub)Invoking grub-probe. Probe device information
|
||||||
|
* grub-script-check: (grub)Invoking grub-script-check.
|
||||||
|
END-INFO-DIR-ENTRY
|
||||||
|
|
||||||
|
|
||||||
|
Indirect:
|
||||||
|
grub.info-1: 1156
|
||||||
|
grub.info-2: 301590
|
||||||
|
|
||||||
|
Tag Table:
|
||||||
|
(Indirect)
|
||||||
|
Node: Top1156
|
||||||
|
Node: Introduction3730
|
||||||
|
Node: Overview4174
|
||||||
|
Node: Overview-Footnotes6164
|
||||||
|
Ref: Overview-Footnote-16225
|
||||||
|
Node: History6387
|
||||||
|
Node: Changes from GRUB Legacy8477
|
||||||
|
Node: Features10953
|
||||||
|
Node: Features-Footnotes17380
|
||||||
|
Ref: Features-Footnote-117441
|
||||||
|
Ref: Features-Footnote-217537
|
||||||
|
Ref: Features-Footnote-317684
|
||||||
|
Node: Role of a boot loader17829
|
||||||
|
Node: Role of a boot loader-Footnotes19168
|
||||||
|
Ref: Role of a boot loader-Footnote-119255
|
||||||
|
Node: Naming convention19334
|
||||||
|
Node: OS-specific notes about grub tools22245
|
||||||
|
Node: Installation23281
|
||||||
|
Node: Installing GRUB using grub-install24403
|
||||||
|
Node: Making a GRUB bootable CD-ROM26718
|
||||||
|
Node: Making a GRUB bootable CD-ROM-Footnotes28577
|
||||||
|
Ref: Making a GRUB bootable CD-ROM-Footnote-128680
|
||||||
|
Node: Device map28755
|
||||||
|
Node: BIOS installation30722
|
||||||
|
Node: Booting35196
|
||||||
|
Node: General boot methods35731
|
||||||
|
Node: Loading an operating system directly36428
|
||||||
|
Node: Kexec37151
|
||||||
|
Node: Chain-loading37902
|
||||||
|
Node: Loopback booting38862
|
||||||
|
Node: LVM cache booting40564
|
||||||
|
Node: OS-specific notes41830
|
||||||
|
Node: GNU/Hurd42120
|
||||||
|
Node: GNU/Linux43243
|
||||||
|
Node: NetBSD44561
|
||||||
|
Node: DOS/Windows46035
|
||||||
|
Node: Configuration47813
|
||||||
|
Node: Simple configuration48525
|
||||||
|
Node: Root Identifcation Heuristics65706
|
||||||
|
Node: Shell-like scripting68746
|
||||||
|
Node: Shell-like scripting-Footnotes76985
|
||||||
|
Ref: Shell-like scripting-Footnote-177070
|
||||||
|
Node: Multi-boot manual config77197
|
||||||
|
Node: Embedded configuration80806
|
||||||
|
Node: Theme file format83642
|
||||||
|
Ref: Pixmap-styled progress bar85101
|
||||||
|
Ref: Plain progress bar, drawn with solid color.85113
|
||||||
|
Ref: An example of the slices (in red) used for a terminal window. This drawing was created and sliced in Inkscape_, as the next section explains.88605
|
||||||
|
Node: Network109017
|
||||||
|
Node: Serial terminal113487
|
||||||
|
Node: Vendor power-on keys115855
|
||||||
|
Node: Images117790
|
||||||
|
Node: Core image size limitation122765
|
||||||
|
Node: Filesystem125329
|
||||||
|
Node: Device syntax126038
|
||||||
|
Node: File name syntax129103
|
||||||
|
Node: Block list syntax130149
|
||||||
|
Node: Interface131029
|
||||||
|
Node: Command-line interface131853
|
||||||
|
Node: Command-line interface-Footnotes133769
|
||||||
|
Ref: Command-line interface-Footnote-1133858
|
||||||
|
Node: Menu interface133953
|
||||||
|
Node: Menu entry editor135088
|
||||||
|
Node: Environment135826
|
||||||
|
Node: Special environment variables136528
|
||||||
|
Node: biosnum137688
|
||||||
|
Node: check_signatures138212
|
||||||
|
Node: chosen138499
|
||||||
|
Node: cmdpath138942
|
||||||
|
Node: color_highlight139369
|
||||||
|
Node: color_normal139781
|
||||||
|
Node: config_directory141444
|
||||||
|
Node: config_file141738
|
||||||
|
Node: debug142131
|
||||||
|
Node: default143080
|
||||||
|
Node: fallback144508
|
||||||
|
Node: gfxmode144841
|
||||||
|
Node: gfxpayload145639
|
||||||
|
Node: gfxterm_font146793
|
||||||
|
Node: grub_cpu147093
|
||||||
|
Node: grub_platform147381
|
||||||
|
Node: icondir147673
|
||||||
|
Node: lang147990
|
||||||
|
Node: locale_dir148459
|
||||||
|
Node: lockdown148956
|
||||||
|
Node: menu_color_highlight149198
|
||||||
|
Node: menu_color_normal149692
|
||||||
|
Node: net_<INTERFACE>_boot_file150193
|
||||||
|
Node: net_<INTERFACE>_clientid150428
|
||||||
|
Node: net_<INTERFACE>_clientuuid150670
|
||||||
|
Node: net_<INTERFACE>_dhcp_server_name150923
|
||||||
|
Node: net_<INTERFACE>_domain151186
|
||||||
|
Node: net_<INTERFACE>_extensionspath151433
|
||||||
|
Node: net_<INTERFACE>_hostname151688
|
||||||
|
Node: net_<INTERFACE>_ip151927
|
||||||
|
Node: net_<INTERFACE>_mac152143
|
||||||
|
Node: net_<INTERFACE>_next_server152364
|
||||||
|
Node: net_<INTERFACE>_rootpath152607
|
||||||
|
Node: net_default_interface152846
|
||||||
|
Node: net_default_ip153066
|
||||||
|
Node: net_default_mac153263
|
||||||
|
Node: net_default_server153459
|
||||||
|
Node: pager153652
|
||||||
|
Node: prefix153908
|
||||||
|
Node: pxe_blksize154357
|
||||||
|
Node: pxe_default_gateway154534
|
||||||
|
Node: pxe_default_server154739
|
||||||
|
Node: root154935
|
||||||
|
Node: shim_lock155475
|
||||||
|
Node: superusers155742
|
||||||
|
Node: theme155995
|
||||||
|
Node: timeout156316
|
||||||
|
Node: timeout_style156953
|
||||||
|
Node: tpm_fail_fatal157361
|
||||||
|
Node: Environment block158046
|
||||||
|
Node: Modules159478
|
||||||
|
Node: bli159759
|
||||||
|
Node: Commands160726
|
||||||
|
Node: Menu-specific commands161599
|
||||||
|
Node: menuentry162302
|
||||||
|
Node: submenu163853
|
||||||
|
Node: Loader commands164402
|
||||||
|
Node: chainloader166718
|
||||||
|
Node: initrd167405
|
||||||
|
Node: initrd16169549
|
||||||
|
Node: linux170147
|
||||||
|
Node: linux16171026
|
||||||
|
Node: xen_hypervisor171723
|
||||||
|
Node: xen_module172163
|
||||||
|
Node: General commands172664
|
||||||
|
Node: serial173114
|
||||||
|
Node: terminal_input175190
|
||||||
|
Node: terminal_output175856
|
||||||
|
Node: terminfo176523
|
||||||
|
Node: Command-line commands177754
|
||||||
|
Node: [182887
|
||||||
|
Node: acpi183058
|
||||||
|
Node: authenticate184356
|
||||||
|
Node: background_color184768
|
||||||
|
Node: background_image185426
|
||||||
|
Node: badram185961
|
||||||
|
Node: blocklist187331
|
||||||
|
Node: boot187550
|
||||||
|
Node: cat187857
|
||||||
|
Node: clear188820
|
||||||
|
Node: cmosclean188983
|
||||||
|
Node: cmosdump189272
|
||||||
|
Node: cmostest189552
|
||||||
|
Node: cmp189895
|
||||||
|
Node: configfile190640
|
||||||
|
Node: cpuid191050
|
||||||
|
Node: crc191606
|
||||||
|
Node: cryptomount191865
|
||||||
|
Node: cutmem194109
|
||||||
|
Node: date194973
|
||||||
|
Node: devicetree195502
|
||||||
|
Node: distrust196029
|
||||||
|
Node: drivemap196795
|
||||||
|
Node: echo197626
|
||||||
|
Node: efitextmode198561
|
||||||
|
Node: eval200783
|
||||||
|
Node: export201058
|
||||||
|
Node: false201354
|
||||||
|
Node: fwsetup201635
|
||||||
|
Node: gdbinfo201982
|
||||||
|
Node: gettext202521
|
||||||
|
Node: gptsync202955
|
||||||
|
Node: halt203885
|
||||||
|
Node: hashsum204259
|
||||||
|
Node: help205470
|
||||||
|
Node: hexdump205923
|
||||||
|
Node: insmod206516
|
||||||
|
Node: keystatus206722
|
||||||
|
Node: list_env207349
|
||||||
|
Node: list_trusted207702
|
||||||
|
Node: load_env208270
|
||||||
|
Node: loadfont209928
|
||||||
|
Node: loopback210284
|
||||||
|
Node: ls210872
|
||||||
|
Node: lsfonts211399
|
||||||
|
Node: lsmod211566
|
||||||
|
Node: md5sum211741
|
||||||
|
Node: module212005
|
||||||
|
Node: multiboot212302
|
||||||
|
Node: nativedisk213396
|
||||||
|
Node: normal213780
|
||||||
|
Node: normal_exit214532
|
||||||
|
Node: parttool214839
|
||||||
|
Node: password216330
|
||||||
|
Node: password_pbkdf2216597
|
||||||
|
Node: plainmount216996
|
||||||
|
Node: plainmount-Footnotes220691
|
||||||
|
Ref: plainmount-Footnote-1220756
|
||||||
|
Node: play220847
|
||||||
|
Node: probe221575
|
||||||
|
Node: rdmsr222062
|
||||||
|
Node: read222830
|
||||||
|
Node: reboot223269
|
||||||
|
Node: regexp223437
|
||||||
|
Node: rmmod223959
|
||||||
|
Node: save_env224137
|
||||||
|
Node: search225144
|
||||||
|
Node: sendkey226666
|
||||||
|
Node: set233158
|
||||||
|
Node: sha1sum233570
|
||||||
|
Node: sha256sum233840
|
||||||
|
Node: sha512sum234124
|
||||||
|
Node: sleep234406
|
||||||
|
Node: smbios234915
|
||||||
|
Node: source237943
|
||||||
|
Node: test238481
|
||||||
|
Node: true241235
|
||||||
|
Node: trust241506
|
||||||
|
Node: unset242283
|
||||||
|
Node: verify_detached242482
|
||||||
|
Node: videoinfo243512
|
||||||
|
Node: wrmsr243775
|
||||||
|
Node: Networking commands244551
|
||||||
|
Node: net_add_addr245624
|
||||||
|
Node: net_add_dns246144
|
||||||
|
Node: net_add_route246420
|
||||||
|
Node: net_bootp246950
|
||||||
|
Node: net_del_addr247315
|
||||||
|
Node: net_del_dns247555
|
||||||
|
Node: net_del_route247802
|
||||||
|
Node: net_dhcp248036
|
||||||
|
Node: net_get_dhcp_option250015
|
||||||
|
Node: net_ipv6_autoconf250496
|
||||||
|
Node: net_ls_addr250917
|
||||||
|
Node: net_ls_cards251165
|
||||||
|
Node: net_ls_dns251401
|
||||||
|
Node: net_ls_routes251632
|
||||||
|
Node: net_nslookup251839
|
||||||
|
Node: net_set_vlan252144
|
||||||
|
Node: Undocumented commands252595
|
||||||
|
Node: Internationalisation257803
|
||||||
|
Node: Security264635
|
||||||
|
Node: Authentication and authorisation265211
|
||||||
|
Node: Using digital signatures268327
|
||||||
|
Node: UEFI secure boot and shim271597
|
||||||
|
Node: Secure Boot Advanced Targeting272744
|
||||||
|
Node: Measured Boot273775
|
||||||
|
Node: Lockdown275765
|
||||||
|
Node: Platform limitations276258
|
||||||
|
Node: Platform-specific operations284267
|
||||||
|
Node: Supported kernels285332
|
||||||
|
Node: Troubleshooting292969
|
||||||
|
Node: GRUB only offers a rescue shell293238
|
||||||
|
Node: Firmware stalls instead of booting GRUB296247
|
||||||
|
Node: User-space utilities296878
|
||||||
|
Node: Invoking grub-install297609
|
||||||
|
Node: Invoking grub-mkconfig299776
|
||||||
|
Node: Invoking grub-mkpasswd-pbkdf2301590
|
||||||
|
Node: Invoking grub-mkrelpath302270
|
||||||
|
Node: Invoking grub-mkrescue303064
|
||||||
|
Node: Invoking grub-mount304834
|
||||||
|
Node: Invoking grub-probe307904
|
||||||
|
Node: Invoking grub-script-check310519
|
||||||
|
Node: Obtaining and Building GRUB311248
|
||||||
|
Node: Reporting bugs312485
|
||||||
|
Node: Future315301
|
||||||
|
Node: Copying This Manual315701
|
||||||
|
Node: GNU Free Documentation License315929
|
||||||
|
Node: Index338318
|
||||||
|
|
||||||
|
End Tag Table
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,985 @@
|
|||||||
|
This is grub.info, produced by makeinfo version 6.3 from grub.texi.
|
||||||
|
|
||||||
|
This manual is for GNU GRUB (version 2.12, 5 December 2023).
|
||||||
|
|
||||||
|
Copyright (C)
|
||||||
|
1999,2000,2001,2002,2004,2006,2008,2009,2010,2011,2012,2013 Free
|
||||||
|
Software Foundation, Inc.
|
||||||
|
|
||||||
|
Permission is granted to copy, distribute and/or modify this
|
||||||
|
document under the terms of the GNU Free Documentation License,
|
||||||
|
Version 1.2 or any later version published by the Free Software
|
||||||
|
Foundation; with no Invariant Sections.
|
||||||
|
INFO-DIR-SECTION Kernel
|
||||||
|
START-INFO-DIR-ENTRY
|
||||||
|
* GRUB: (grub). The GRand Unified Bootloader
|
||||||
|
* grub-install: (grub)Invoking grub-install. Install GRUB on your drive
|
||||||
|
* grub-mkconfig: (grub)Invoking grub-mkconfig. Generate GRUB configuration
|
||||||
|
* grub-mkpasswd-pbkdf2: (grub)Invoking grub-mkpasswd-pbkdf2.
|
||||||
|
* grub-mkrelpath: (grub)Invoking grub-mkrelpath.
|
||||||
|
* grub-mkrescue: (grub)Invoking grub-mkrescue. Make a GRUB rescue image
|
||||||
|
* grub-mount: (grub)Invoking grub-mount. Mount a file system using GRUB
|
||||||
|
* grub-probe: (grub)Invoking grub-probe. Probe device information
|
||||||
|
* grub-script-check: (grub)Invoking grub-script-check.
|
||||||
|
END-INFO-DIR-ENTRY
|
||||||
|
|
||||||
|
|
||||||
|
File: grub.info, Node: Invoking grub-mkpasswd-pbkdf2, Next: Invoking grub-mkrelpath, Prev: Invoking grub-mkconfig, Up: User-space utilities
|
||||||
|
|
||||||
|
24.3 Invoking grub-mkpasswd-pbkdf2
|
||||||
|
==================================
|
||||||
|
|
||||||
|
The program 'grub-mkpasswd-pbkdf2' generates password hashes for GRUB
|
||||||
|
(*note Security::).
|
||||||
|
|
||||||
|
grub-mkpasswd-pbkdf2
|
||||||
|
|
||||||
|
'grub-mkpasswd-pbkdf2' accepts the following options:
|
||||||
|
|
||||||
|
'-c NUMBER'
|
||||||
|
'--iteration-count=NUMBER'
|
||||||
|
Number of iterations of the underlying pseudo-random function.
|
||||||
|
Defaults to 10000.
|
||||||
|
|
||||||
|
'-l NUMBER'
|
||||||
|
'--buflen=NUMBER'
|
||||||
|
Length of the generated hash. Defaults to 64.
|
||||||
|
|
||||||
|
'-s NUMBER'
|
||||||
|
'--salt=NUMBER'
|
||||||
|
Length of the salt. Defaults to 64.
|
||||||
|
|
||||||
|
|
||||||
|
File: grub.info, Node: Invoking grub-mkrelpath, Next: Invoking grub-mkrescue, Prev: Invoking grub-mkpasswd-pbkdf2, Up: User-space utilities
|
||||||
|
|
||||||
|
24.4 Invoking grub-mkrelpath
|
||||||
|
============================
|
||||||
|
|
||||||
|
The program 'grub-mkrelpath' makes a file system path relative to the
|
||||||
|
root of its containing file system. For instance, if '/usr' is a mount
|
||||||
|
point, then:
|
||||||
|
|
||||||
|
$ grub-mkrelpath /usr/share/grub/unicode.pf2
|
||||||
|
'/share/grub/unicode.pf2'
|
||||||
|
|
||||||
|
This is mainly used internally by other GRUB utilities such as
|
||||||
|
'grub-mkconfig' (*note Invoking grub-mkconfig::), but may occasionally
|
||||||
|
also be useful for debugging.
|
||||||
|
|
||||||
|
'grub-mkrelpath' accepts the following options:
|
||||||
|
|
||||||
|
'--help'
|
||||||
|
Print a summary of the command-line options and exit.
|
||||||
|
|
||||||
|
'--version'
|
||||||
|
Print the version number of GRUB and exit.
|
||||||
|
|
||||||
|
|
||||||
|
File: grub.info, Node: Invoking grub-mkrescue, Next: Invoking grub-mount, Prev: Invoking grub-mkrelpath, Up: User-space utilities
|
||||||
|
|
||||||
|
24.5 Invoking grub-mkrescue
|
||||||
|
===========================
|
||||||
|
|
||||||
|
The program 'grub-mkrescue' generates a bootable GRUB rescue image
|
||||||
|
(*note Making a GRUB bootable CD-ROM::).
|
||||||
|
|
||||||
|
grub-mkrescue -o grub.iso
|
||||||
|
|
||||||
|
All arguments not explicitly listed as 'grub-mkrescue' options are
|
||||||
|
passed on directly to 'xorriso' in 'mkisofs' emulation mode. Options
|
||||||
|
passed to 'xorriso' will normally be interpreted as 'mkisofs' options;
|
||||||
|
if the option '--' is used, then anything after that will be interpreted
|
||||||
|
as native 'xorriso' options.
|
||||||
|
|
||||||
|
Non-option arguments specify additional source directories. This is
|
||||||
|
commonly used to add extra files to the image:
|
||||||
|
|
||||||
|
mkdir -p disk/boot/grub
|
||||||
|
(add extra files to 'disk/boot/grub')
|
||||||
|
grub-mkrescue -o grub.iso disk
|
||||||
|
|
||||||
|
'grub-mkrescue' accepts the following options:
|
||||||
|
|
||||||
|
'--help'
|
||||||
|
Print a summary of the command-line options and exit.
|
||||||
|
|
||||||
|
'--version'
|
||||||
|
Print the version number of GRUB and exit.
|
||||||
|
|
||||||
|
'-o FILE'
|
||||||
|
'--output=FILE'
|
||||||
|
Save output in FILE. This "option" is required.
|
||||||
|
|
||||||
|
'--modules=MODULES'
|
||||||
|
Pre-load the named GRUB modules in the image. Multiple entries in
|
||||||
|
MODULES should be separated by whitespace (so you will probably
|
||||||
|
need to quote this for your shell).
|
||||||
|
|
||||||
|
'--rom-directory=DIR'
|
||||||
|
If generating images for the QEMU or Coreboot platforms, copy the
|
||||||
|
resulting 'qemu.img' or 'coreboot.elf' files respectively to the
|
||||||
|
DIR directory as well as including them in the image.
|
||||||
|
|
||||||
|
'--xorriso=FILE'
|
||||||
|
Use FILE as the 'xorriso' program, rather than the built-in
|
||||||
|
default.
|
||||||
|
|
||||||
|
'--grub-mkimage=FILE'
|
||||||
|
Use FILE as the 'grub-mkimage' program, rather than the built-in
|
||||||
|
default.
|
||||||
|
|
||||||
|
|
||||||
|
File: grub.info, Node: Invoking grub-mount, Next: Invoking grub-probe, Prev: Invoking grub-mkrescue, Up: User-space utilities
|
||||||
|
|
||||||
|
24.6 Invoking grub-mount
|
||||||
|
========================
|
||||||
|
|
||||||
|
The program 'grub-mount' performs a read-only mount of any file system
|
||||||
|
or file system image that GRUB understands, using GRUB's file system
|
||||||
|
drivers via FUSE. (It is only available if FUSE development files were
|
||||||
|
present when GRUB was built.) This has a number of uses:
|
||||||
|
|
||||||
|
* It provides a convenient way to check how GRUB will view a file
|
||||||
|
system at boot time. You can use normal command-line tools to
|
||||||
|
compare that view with that of your operating system, making it
|
||||||
|
easy to find bugs.
|
||||||
|
|
||||||
|
* It offers true read-only mounts. Linux does not have these for
|
||||||
|
journalling file systems, because it will always attempt to replay
|
||||||
|
the journal at mount time; while you can temporarily mark the block
|
||||||
|
device read-only to avoid this, that causes the mount to fail.
|
||||||
|
Since GRUB intentionally contains no code for writing to file
|
||||||
|
systems, it can easily provide a guaranteed read-only mount
|
||||||
|
mechanism.
|
||||||
|
|
||||||
|
* It allows you to examine any file system that GRUB understands
|
||||||
|
without needing to load additional modules into your running
|
||||||
|
kernel, which may be useful in constrained environments such as
|
||||||
|
installers.
|
||||||
|
|
||||||
|
* Since it can examine file system images (contained in regular
|
||||||
|
files) just as easily as file systems on block devices, you can use
|
||||||
|
it to inspect any file system image that GRUB understands with only
|
||||||
|
enough privileges to use FUSE, even if nobody has yet written a
|
||||||
|
FUSE module specifically for that file system type.
|
||||||
|
|
||||||
|
Using 'grub-mount' is normally as simple as:
|
||||||
|
|
||||||
|
grub-mount /dev/sda1 /mnt
|
||||||
|
|
||||||
|
'grub-mount' must be given one or more images and a mount point as
|
||||||
|
non-option arguments (if it is given more than one image, it will treat
|
||||||
|
them as a RAID set), and also accepts the following options:
|
||||||
|
|
||||||
|
'--help'
|
||||||
|
Print a summary of the command-line options and exit.
|
||||||
|
|
||||||
|
'--version'
|
||||||
|
Print the version number of GRUB and exit.
|
||||||
|
|
||||||
|
'-C'
|
||||||
|
'--crypto'
|
||||||
|
Mount encrypted devices, prompting for a passphrase if necessary.
|
||||||
|
|
||||||
|
'-d STRING'
|
||||||
|
'--debug=STRING'
|
||||||
|
Show debugging output for conditions matching STRING.
|
||||||
|
|
||||||
|
'-K prompt|FILE'
|
||||||
|
'--zfs-key=prompt|FILE'
|
||||||
|
Load a ZFS encryption key. If you use 'prompt' as the argument,
|
||||||
|
'grub-mount' will read a passphrase from the terminal; otherwise,
|
||||||
|
it will read key material from the specified file.
|
||||||
|
|
||||||
|
'-r DEVICE'
|
||||||
|
'--root=DEVICE'
|
||||||
|
Set the GRUB root device to DEVICE. You do not normally need to
|
||||||
|
set this; 'grub-mount' will automatically set the root device to
|
||||||
|
the root of the supplied file system.
|
||||||
|
|
||||||
|
If DEVICE is just a number, then it will be treated as a partition
|
||||||
|
number within the supplied image. This means that, if you have an
|
||||||
|
image of an entire disk in 'disk.img', then you can use this
|
||||||
|
command to mount its second partition:
|
||||||
|
|
||||||
|
grub-mount -r 2 disk.img mount-point
|
||||||
|
|
||||||
|
'-v'
|
||||||
|
'--verbose'
|
||||||
|
Print verbose messages.
|
||||||
|
|
||||||
|
|
||||||
|
File: grub.info, Node: Invoking grub-probe, Next: Invoking grub-script-check, Prev: Invoking grub-mount, Up: User-space utilities
|
||||||
|
|
||||||
|
24.7 Invoking grub-probe
|
||||||
|
========================
|
||||||
|
|
||||||
|
The program 'grub-probe' probes device information for a given path or
|
||||||
|
device.
|
||||||
|
|
||||||
|
grub-probe --target=fs /boot/grub
|
||||||
|
grub-probe --target=drive --device /dev/sda1
|
||||||
|
|
||||||
|
'grub-probe' must be given a path or device as a non-option argument,
|
||||||
|
and also accepts the following options:
|
||||||
|
|
||||||
|
'--help'
|
||||||
|
Print a summary of the command-line options and exit.
|
||||||
|
|
||||||
|
'--version'
|
||||||
|
Print the version number of GRUB and exit.
|
||||||
|
|
||||||
|
'-d'
|
||||||
|
'--device'
|
||||||
|
If this option is given, then the non-option argument is a system
|
||||||
|
device name (such as '/dev/sda1'), and 'grub-probe' will print
|
||||||
|
information about that device. If it is not given, then the
|
||||||
|
non-option argument is a filesystem path (such as '/boot/grub'),
|
||||||
|
and 'grub-probe' will print information about the device containing
|
||||||
|
that part of the filesystem.
|
||||||
|
|
||||||
|
'-m FILE'
|
||||||
|
'--device-map=FILE'
|
||||||
|
Use FILE as the device map (*note Device map::) rather than the
|
||||||
|
default, usually '/boot/grub/device.map'.
|
||||||
|
|
||||||
|
'-t TARGET'
|
||||||
|
'--target=TARGET'
|
||||||
|
Print information about the given path or device as defined by
|
||||||
|
TARGET. The available targets and their meanings are:
|
||||||
|
|
||||||
|
'fs'
|
||||||
|
GRUB filesystem module.
|
||||||
|
'fs_uuid'
|
||||||
|
Filesystem Universally Unique Identifier (UUID).
|
||||||
|
'fs_label'
|
||||||
|
Filesystem label.
|
||||||
|
'drive'
|
||||||
|
GRUB device name.
|
||||||
|
'device'
|
||||||
|
System device name.
|
||||||
|
'partmap'
|
||||||
|
GRUB partition map module.
|
||||||
|
'abstraction'
|
||||||
|
GRUB abstraction module (e.g. 'lvm').
|
||||||
|
'cryptodisk_uuid'
|
||||||
|
Crypto device UUID.
|
||||||
|
'msdos_parttype'
|
||||||
|
MBR partition type code (two hexadecimal digits).
|
||||||
|
'hints_string'
|
||||||
|
A string of platform search hints suitable for passing to the
|
||||||
|
'search' command (*note search::).
|
||||||
|
'bios_hints'
|
||||||
|
Search hints for the PC BIOS platform.
|
||||||
|
'ieee1275_hints'
|
||||||
|
Search hints for the IEEE1275 platform.
|
||||||
|
'baremetal_hints'
|
||||||
|
Search hints for platforms where disks are addressed directly
|
||||||
|
rather than via firmware.
|
||||||
|
'efi_hints'
|
||||||
|
Search hints for the EFI platform.
|
||||||
|
'arc_hints'
|
||||||
|
Search hints for the ARC platform.
|
||||||
|
'compatibility_hint'
|
||||||
|
A guess at a reasonable GRUB drive name for this device, which
|
||||||
|
may be used as a fallback if the 'search' command fails.
|
||||||
|
'disk'
|
||||||
|
System device name for the whole disk.
|
||||||
|
|
||||||
|
'-v'
|
||||||
|
'--verbose'
|
||||||
|
Print verbose messages.
|
||||||
|
|
||||||
|
|
||||||
|
File: grub.info, Node: Invoking grub-script-check, Prev: Invoking grub-probe, Up: User-space utilities
|
||||||
|
|
||||||
|
24.8 Invoking grub-script-check
|
||||||
|
===============================
|
||||||
|
|
||||||
|
The program 'grub-script-check' takes a GRUB script file (*note
|
||||||
|
Shell-like scripting::) and checks it for syntax errors, similar to
|
||||||
|
commands such as 'sh -n'. It may take a PATH as a non-option argument;
|
||||||
|
if none is supplied, it will read from standard input.
|
||||||
|
|
||||||
|
grub-script-check /boot/grub/grub.cfg
|
||||||
|
|
||||||
|
'grub-script-check' accepts the following options:
|
||||||
|
|
||||||
|
'--help'
|
||||||
|
Print a summary of the command-line options and exit.
|
||||||
|
|
||||||
|
'--version'
|
||||||
|
Print the version number of GRUB and exit.
|
||||||
|
|
||||||
|
'-v'
|
||||||
|
'--verbose'
|
||||||
|
Print each line of input after reading it.
|
||||||
|
|
||||||
|
|
||||||
|
File: grub.info, Node: Obtaining and Building GRUB, Next: Reporting bugs, Prev: User-space utilities, Up: Top
|
||||||
|
|
||||||
|
Appendix A How to obtain and build GRUB
|
||||||
|
***************************************
|
||||||
|
|
||||||
|
*Caution:* GRUB requires binutils-2.9.1.0.23 or later because the
|
||||||
|
GNU assembler has been changed so that it can produce real 16bits
|
||||||
|
machine code between 2.9.1 and 2.9.1.0.x. See
|
||||||
|
<http://sources.redhat.com/binutils/>, to obtain information on how
|
||||||
|
to get the latest version.
|
||||||
|
|
||||||
|
GRUB is available from the GNU alpha archive site
|
||||||
|
<ftp://ftp.gnu.org/gnu/grub> or any of its mirrors. The file will be
|
||||||
|
named grub-version.tar.gz. The current version is 2.12, so the file you
|
||||||
|
should grab is:
|
||||||
|
|
||||||
|
<ftp://ftp.gnu.org/gnu/grub/grub-2.12.tar.gz>
|
||||||
|
|
||||||
|
To unbundle GRUB use the instruction:
|
||||||
|
|
||||||
|
zcat grub-2.12.tar.gz | tar xvf -
|
||||||
|
|
||||||
|
which will create a directory called 'grub-2.12' with all the
|
||||||
|
sources. You can look at the file 'INSTALL' for detailed instructions
|
||||||
|
on how to build and install GRUB, but you should be able to just do:
|
||||||
|
|
||||||
|
cd grub-2.12
|
||||||
|
./configure
|
||||||
|
make install
|
||||||
|
|
||||||
|
Also, the latest version is available using Git. See
|
||||||
|
<http://www.gnu.org/software/grub/grub-download.html> for more
|
||||||
|
information.
|
||||||
|
|
||||||
|
|
||||||
|
File: grub.info, Node: Reporting bugs, Next: Future, Prev: Obtaining and Building GRUB, Up: Top
|
||||||
|
|
||||||
|
Appendix B Reporting bugs
|
||||||
|
*************************
|
||||||
|
|
||||||
|
These are the guideline for how to report bugs. Take a look at this
|
||||||
|
list below before you submit bugs:
|
||||||
|
|
||||||
|
1. Before getting unsettled, read this manual through and through.
|
||||||
|
Also, see the GNU GRUB FAQ
|
||||||
|
(http://www.gnu.org/software/grub/grub-faq.html).
|
||||||
|
|
||||||
|
2. Always mention the information on your GRUB. The version number and
|
||||||
|
the configuration are quite important. If you build it yourself,
|
||||||
|
write the options specified to the configure script and your
|
||||||
|
operating system, including the versions of gcc and binutils.
|
||||||
|
|
||||||
|
3. If you have trouble with the installation, inform us of how you
|
||||||
|
installed GRUB. Don't omit error messages, if any. Just 'GRUB
|
||||||
|
hangs up when it boots' is not enough.
|
||||||
|
|
||||||
|
The information on your hardware is also essential. These are
|
||||||
|
especially important: the geometries and the partition tables of
|
||||||
|
your hard disk drives and your BIOS.
|
||||||
|
|
||||||
|
4. If GRUB cannot boot your operating system, write down _everything_
|
||||||
|
you see on the screen. Don't paraphrase them, like 'The foo OS
|
||||||
|
crashes with GRUB, even though it can boot with the bar boot loader
|
||||||
|
just fine'. Mention the commands you executed, the messages
|
||||||
|
printed by them, and information on your operating system including
|
||||||
|
the version number.
|
||||||
|
|
||||||
|
5. Explain what you wanted to do. It is very useful to know your
|
||||||
|
purpose and your wish, and how GRUB didn't satisfy you.
|
||||||
|
|
||||||
|
6. If you can investigate the problem yourself, please do. That will
|
||||||
|
give you and us much more information on the problem. Attaching a
|
||||||
|
patch is even better.
|
||||||
|
|
||||||
|
When you attach a patch, make the patch in unified diff format, and
|
||||||
|
write ChangeLog entries. But, even when you make a patch, don't
|
||||||
|
forget to explain the problem, so that we can understand what your
|
||||||
|
patch is for.
|
||||||
|
|
||||||
|
7. Write down anything that you think might be related. Please
|
||||||
|
understand that we often need to reproduce the same problem you
|
||||||
|
encountered in our environment. So your information should be
|
||||||
|
sufficient for us to do the same thing--Don't forget that we cannot
|
||||||
|
see your computer directly. If you are not sure whether to state a
|
||||||
|
fact or leave it out, state it! Reporting too many things is much
|
||||||
|
better than omitting something important.
|
||||||
|
|
||||||
|
If you follow the guideline above, submit a report to the Bug
|
||||||
|
Tracking System (http://savannah.gnu.org/bugs/?group=grub).
|
||||||
|
Alternatively, you can submit a report via electronic mail to
|
||||||
|
<bug-grub@gnu.org>, but we strongly recommend that you use the Bug
|
||||||
|
Tracking System, because e-mail can be passed over easily.
|
||||||
|
|
||||||
|
Once we get your report, we will try to fix the bugs.
|
||||||
|
|
||||||
|
|
||||||
|
File: grub.info, Node: Future, Next: Copying This Manual, Prev: Reporting bugs, Up: Top
|
||||||
|
|
||||||
|
Appendix C Where GRUB will go
|
||||||
|
*****************************
|
||||||
|
|
||||||
|
GRUB 2 is now quite stable and used in many production systems. We are
|
||||||
|
currently working towards a 2.0 release.
|
||||||
|
|
||||||
|
If you are interested in the development of GRUB 2, take a look at
|
||||||
|
the homepage (http://www.gnu.org/software/grub/grub.html).
|
||||||
|
|
||||||
|
|
||||||
|
File: grub.info, Node: Copying This Manual, Next: Index, Prev: Future, Up: Top
|
||||||
|
|
||||||
|
Appendix D Copying This Manual
|
||||||
|
******************************
|
||||||
|
|
||||||
|
* Menu:
|
||||||
|
|
||||||
|
* GNU Free Documentation License:: License for copying this manual.
|
||||||
|
|
||||||
|
|
||||||
|
File: grub.info, Node: GNU Free Documentation License, Up: Copying This Manual
|
||||||
|
|
||||||
|
D.1 GNU Free Documentation License
|
||||||
|
==================================
|
||||||
|
|
||||||
|
Version 1.2, November 2002
|
||||||
|
|
||||||
|
Copyright (C) 2000,2001,2002 Free Software Foundation, Inc.
|
||||||
|
51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||||
|
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
0. PREAMBLE
|
||||||
|
|
||||||
|
The purpose of this License is to make a manual, textbook, or other
|
||||||
|
functional and useful document "free" in the sense of freedom: to
|
||||||
|
assure everyone the effective freedom to copy and redistribute it,
|
||||||
|
with or without modifying it, either commercially or
|
||||||
|
noncommercially. Secondarily, this License preserves for the
|
||||||
|
author and publisher a way to get credit for their work, while not
|
||||||
|
being considered responsible for modifications made by others.
|
||||||
|
|
||||||
|
This License is a kind of "copyleft", which means that derivative
|
||||||
|
works of the document must themselves be free in the same sense.
|
||||||
|
It complements the GNU General Public License, which is a copyleft
|
||||||
|
license designed for free software.
|
||||||
|
|
||||||
|
We have designed this License in order to use it for manuals for
|
||||||
|
free software, because free software needs free documentation: a
|
||||||
|
free program should come with manuals providing the same freedoms
|
||||||
|
that the software does. But this License is not limited to
|
||||||
|
software manuals; it can be used for any textual work, regardless
|
||||||
|
of subject matter or whether it is published as a printed book. We
|
||||||
|
recommend this License principally for works whose purpose is
|
||||||
|
instruction or reference.
|
||||||
|
|
||||||
|
1. APPLICABILITY AND DEFINITIONS
|
||||||
|
|
||||||
|
This License applies to any manual or other work, in any medium,
|
||||||
|
that contains a notice placed by the copyright holder saying it can
|
||||||
|
be distributed under the terms of this License. Such a notice
|
||||||
|
grants a world-wide, royalty-free license, unlimited in duration,
|
||||||
|
to use that work under the conditions stated herein. The
|
||||||
|
"Document", below, refers to any such manual or work. Any member
|
||||||
|
of the public is a licensee, and is addressed as "you". You accept
|
||||||
|
the license if you copy, modify or distribute the work in a way
|
||||||
|
requiring permission under copyright law.
|
||||||
|
|
||||||
|
A "Modified Version" of the Document means any work containing the
|
||||||
|
Document or a portion of it, either copied verbatim, or with
|
||||||
|
modifications and/or translated into another language.
|
||||||
|
|
||||||
|
A "Secondary Section" is a named appendix or a front-matter section
|
||||||
|
of the Document that deals exclusively with the relationship of the
|
||||||
|
publishers or authors of the Document to the Document's overall
|
||||||
|
subject (or to related matters) and contains nothing that could
|
||||||
|
fall directly within that overall subject. (Thus, if the Document
|
||||||
|
is in part a textbook of mathematics, a Secondary Section may not
|
||||||
|
explain any mathematics.) The relationship could be a matter of
|
||||||
|
historical connection with the subject or with related matters, or
|
||||||
|
of legal, commercial, philosophical, ethical or political position
|
||||||
|
regarding them.
|
||||||
|
|
||||||
|
The "Invariant Sections" are certain Secondary Sections whose
|
||||||
|
titles are designated, as being those of Invariant Sections, in the
|
||||||
|
notice that says that the Document is released under this License.
|
||||||
|
If a section does not fit the above definition of Secondary then it
|
||||||
|
is not allowed to be designated as Invariant. The Document may
|
||||||
|
contain zero Invariant Sections. If the Document does not identify
|
||||||
|
any Invariant Sections then there are none.
|
||||||
|
|
||||||
|
The "Cover Texts" are certain short passages of text that are
|
||||||
|
listed, as Front-Cover Texts or Back-Cover Texts, in the notice
|
||||||
|
that says that the Document is released under this License. A
|
||||||
|
Front-Cover Text may be at most 5 words, and a Back-Cover Text may
|
||||||
|
be at most 25 words.
|
||||||
|
|
||||||
|
A "Transparent" copy of the Document means a machine-readable copy,
|
||||||
|
represented in a format whose specification is available to the
|
||||||
|
general public, that is suitable for revising the document
|
||||||
|
straightforwardly with generic text editors or (for images composed
|
||||||
|
of pixels) generic paint programs or (for drawings) some widely
|
||||||
|
available drawing editor, and that is suitable for input to text
|
||||||
|
formatters or for automatic translation to a variety of formats
|
||||||
|
suitable for input to text formatters. A copy made in an otherwise
|
||||||
|
Transparent file format whose markup, or absence of markup, has
|
||||||
|
been arranged to thwart or discourage subsequent modification by
|
||||||
|
readers is not Transparent. An image format is not Transparent if
|
||||||
|
used for any substantial amount of text. A copy that is not
|
||||||
|
"Transparent" is called "Opaque".
|
||||||
|
|
||||||
|
Examples of suitable formats for Transparent copies include plain
|
||||||
|
ASCII without markup, Texinfo input format, LaTeX input format,
|
||||||
|
SGML or XML using a publicly available DTD, and standard-conforming
|
||||||
|
simple HTML, PostScript or PDF designed for human modification.
|
||||||
|
Examples of transparent image formats include PNG, XCF and JPG.
|
||||||
|
Opaque formats include proprietary formats that can be read and
|
||||||
|
edited only by proprietary word processors, SGML or XML for which
|
||||||
|
the DTD and/or processing tools are not generally available, and
|
||||||
|
the machine-generated HTML, PostScript or PDF produced by some word
|
||||||
|
processors for output purposes only.
|
||||||
|
|
||||||
|
The "Title Page" means, for a printed book, the title page itself,
|
||||||
|
plus such following pages as are needed to hold, legibly, the
|
||||||
|
material this License requires to appear in the title page. For
|
||||||
|
works in formats which do not have any title page as such, "Title
|
||||||
|
Page" means the text near the most prominent appearance of the
|
||||||
|
work's title, preceding the beginning of the body of the text.
|
||||||
|
|
||||||
|
A section "Entitled XYZ" means a named subunit of the Document
|
||||||
|
whose title either is precisely XYZ or contains XYZ in parentheses
|
||||||
|
following text that translates XYZ in another language. (Here XYZ
|
||||||
|
stands for a specific section name mentioned below, such as
|
||||||
|
"Acknowledgements", "Dedications", "Endorsements", or "History".)
|
||||||
|
To "Preserve the Title" of such a section when you modify the
|
||||||
|
Document means that it remains a section "Entitled XYZ" according
|
||||||
|
to this definition.
|
||||||
|
|
||||||
|
The Document may include Warranty Disclaimers next to the notice
|
||||||
|
which states that this License applies to the Document. These
|
||||||
|
Warranty Disclaimers are considered to be included by reference in
|
||||||
|
this License, but only as regards disclaiming warranties: any other
|
||||||
|
implication that these Warranty Disclaimers may have is void and
|
||||||
|
has no effect on the meaning of this License.
|
||||||
|
|
||||||
|
2. VERBATIM COPYING
|
||||||
|
|
||||||
|
You may copy and distribute the Document in any medium, either
|
||||||
|
commercially or noncommercially, provided that this License, the
|
||||||
|
copyright notices, and the license notice saying this License
|
||||||
|
applies to the Document are reproduced in all copies, and that you
|
||||||
|
add no other conditions whatsoever to those of this License. You
|
||||||
|
may not use technical measures to obstruct or control the reading
|
||||||
|
or further copying of the copies you make or distribute. However,
|
||||||
|
you may accept compensation in exchange for copies. If you
|
||||||
|
distribute a large enough number of copies you must also follow the
|
||||||
|
conditions in section 3.
|
||||||
|
|
||||||
|
You may also lend copies, under the same conditions stated above,
|
||||||
|
and you may publicly display copies.
|
||||||
|
|
||||||
|
3. COPYING IN QUANTITY
|
||||||
|
|
||||||
|
If you publish printed copies (or copies in media that commonly
|
||||||
|
have printed covers) of the Document, numbering more than 100, and
|
||||||
|
the Document's license notice requires Cover Texts, you must
|
||||||
|
enclose the copies in covers that carry, clearly and legibly, all
|
||||||
|
these Cover Texts: Front-Cover Texts on the front cover, and
|
||||||
|
Back-Cover Texts on the back cover. Both covers must also clearly
|
||||||
|
and legibly identify you as the publisher of these copies. The
|
||||||
|
front cover must present the full title with all words of the title
|
||||||
|
equally prominent and visible. You may add other material on the
|
||||||
|
covers in addition. Copying with changes limited to the covers, as
|
||||||
|
long as they preserve the title of the Document and satisfy these
|
||||||
|
conditions, can be treated as verbatim copying in other respects.
|
||||||
|
|
||||||
|
If the required texts for either cover are too voluminous to fit
|
||||||
|
legibly, you should put the first ones listed (as many as fit
|
||||||
|
reasonably) on the actual cover, and continue the rest onto
|
||||||
|
adjacent pages.
|
||||||
|
|
||||||
|
If you publish or distribute Opaque copies of the Document
|
||||||
|
numbering more than 100, you must either include a machine-readable
|
||||||
|
Transparent copy along with each Opaque copy, or state in or with
|
||||||
|
each Opaque copy a computer-network location from which the general
|
||||||
|
network-using public has access to download using public-standard
|
||||||
|
network protocols a complete Transparent copy of the Document, free
|
||||||
|
of added material. If you use the latter option, you must take
|
||||||
|
reasonably prudent steps, when you begin distribution of Opaque
|
||||||
|
copies in quantity, to ensure that this Transparent copy will
|
||||||
|
remain thus accessible at the stated location until at least one
|
||||||
|
year after the last time you distribute an Opaque copy (directly or
|
||||||
|
through your agents or retailers) of that edition to the public.
|
||||||
|
|
||||||
|
It is requested, but not required, that you contact the authors of
|
||||||
|
the Document well before redistributing any large number of copies,
|
||||||
|
to give them a chance to provide you with an updated version of the
|
||||||
|
Document.
|
||||||
|
|
||||||
|
4. MODIFICATIONS
|
||||||
|
|
||||||
|
You may copy and distribute a Modified Version of the Document
|
||||||
|
under the conditions of sections 2 and 3 above, provided that you
|
||||||
|
release the Modified Version under precisely this License, with the
|
||||||
|
Modified Version filling the role of the Document, thus licensing
|
||||||
|
distribution and modification of the Modified Version to whoever
|
||||||
|
possesses a copy of it. In addition, you must do these things in
|
||||||
|
the Modified Version:
|
||||||
|
|
||||||
|
A. Use in the Title Page (and on the covers, if any) a title
|
||||||
|
distinct from that of the Document, and from those of previous
|
||||||
|
versions (which should, if there were any, be listed in the
|
||||||
|
History section of the Document). You may use the same title
|
||||||
|
as a previous version if the original publisher of that
|
||||||
|
version gives permission.
|
||||||
|
|
||||||
|
B. List on the Title Page, as authors, one or more persons or
|
||||||
|
entities responsible for authorship of the modifications in
|
||||||
|
the Modified Version, together with at least five of the
|
||||||
|
principal authors of the Document (all of its principal
|
||||||
|
authors, if it has fewer than five), unless they release you
|
||||||
|
from this requirement.
|
||||||
|
|
||||||
|
C. State on the Title page the name of the publisher of the
|
||||||
|
Modified Version, as the publisher.
|
||||||
|
|
||||||
|
D. Preserve all the copyright notices of the Document.
|
||||||
|
|
||||||
|
E. Add an appropriate copyright notice for your modifications
|
||||||
|
adjacent to the other copyright notices.
|
||||||
|
|
||||||
|
F. Include, immediately after the copyright notices, a license
|
||||||
|
notice giving the public permission to use the Modified
|
||||||
|
Version under the terms of this License, in the form shown in
|
||||||
|
the Addendum below.
|
||||||
|
|
||||||
|
G. Preserve in that license notice the full lists of Invariant
|
||||||
|
Sections and required Cover Texts given in the Document's
|
||||||
|
license notice.
|
||||||
|
|
||||||
|
H. Include an unaltered copy of this License.
|
||||||
|
|
||||||
|
I. Preserve the section Entitled "History", Preserve its Title,
|
||||||
|
and add to it an item stating at least the title, year, new
|
||||||
|
authors, and publisher of the Modified Version as given on the
|
||||||
|
Title Page. If there is no section Entitled "History" in the
|
||||||
|
Document, create one stating the title, year, authors, and
|
||||||
|
publisher of the Document as given on its Title Page, then add
|
||||||
|
an item describing the Modified Version as stated in the
|
||||||
|
previous sentence.
|
||||||
|
|
||||||
|
J. Preserve the network location, if any, given in the Document
|
||||||
|
for public access to a Transparent copy of the Document, and
|
||||||
|
likewise the network locations given in the Document for
|
||||||
|
previous versions it was based on. These may be placed in the
|
||||||
|
"History" section. You may omit a network location for a work
|
||||||
|
that was published at least four years before the Document
|
||||||
|
itself, or if the original publisher of the version it refers
|
||||||
|
to gives permission.
|
||||||
|
|
||||||
|
K. For any section Entitled "Acknowledgements" or "Dedications",
|
||||||
|
Preserve the Title of the section, and preserve in the section
|
||||||
|
all the substance and tone of each of the contributor
|
||||||
|
acknowledgements and/or dedications given therein.
|
||||||
|
|
||||||
|
L. Preserve all the Invariant Sections of the Document, unaltered
|
||||||
|
in their text and in their titles. Section numbers or the
|
||||||
|
equivalent are not considered part of the section titles.
|
||||||
|
|
||||||
|
M. Delete any section Entitled "Endorsements". Such a section
|
||||||
|
may not be included in the Modified Version.
|
||||||
|
|
||||||
|
N. Do not retitle any existing section to be Entitled
|
||||||
|
"Endorsements" or to conflict in title with any Invariant
|
||||||
|
Section.
|
||||||
|
|
||||||
|
O. Preserve any Warranty Disclaimers.
|
||||||
|
|
||||||
|
If the Modified Version includes new front-matter sections or
|
||||||
|
appendices that qualify as Secondary Sections and contain no
|
||||||
|
material copied from the Document, you may at your option designate
|
||||||
|
some or all of these sections as invariant. To do this, add their
|
||||||
|
titles to the list of Invariant Sections in the Modified Version's
|
||||||
|
license notice. These titles must be distinct from any other
|
||||||
|
section titles.
|
||||||
|
|
||||||
|
You may add a section Entitled "Endorsements", provided it contains
|
||||||
|
nothing but endorsements of your Modified Version by various
|
||||||
|
parties--for example, statements of peer review or that the text
|
||||||
|
has been approved by an organization as the authoritative
|
||||||
|
definition of a standard.
|
||||||
|
|
||||||
|
You may add a passage of up to five words as a Front-Cover Text,
|
||||||
|
and a passage of up to 25 words as a Back-Cover Text, to the end of
|
||||||
|
the list of Cover Texts in the Modified Version. Only one passage
|
||||||
|
of Front-Cover Text and one of Back-Cover Text may be added by (or
|
||||||
|
through arrangements made by) any one entity. If the Document
|
||||||
|
already includes a cover text for the same cover, previously added
|
||||||
|
by you or by arrangement made by the same entity you are acting on
|
||||||
|
behalf of, you may not add another; but you may replace the old
|
||||||
|
one, on explicit permission from the previous publisher that added
|
||||||
|
the old one.
|
||||||
|
|
||||||
|
The author(s) and publisher(s) of the Document do not by this
|
||||||
|
License give permission to use their names for publicity for or to
|
||||||
|
assert or imply endorsement of any Modified Version.
|
||||||
|
|
||||||
|
5. COMBINING DOCUMENTS
|
||||||
|
|
||||||
|
You may combine the Document with other documents released under
|
||||||
|
this License, under the terms defined in section 4 above for
|
||||||
|
modified versions, provided that you include in the combination all
|
||||||
|
of the Invariant Sections of all of the original documents,
|
||||||
|
unmodified, and list them all as Invariant Sections of your
|
||||||
|
combined work in its license notice, and that you preserve all
|
||||||
|
their Warranty Disclaimers.
|
||||||
|
|
||||||
|
The combined work need only contain one copy of this License, and
|
||||||
|
multiple identical Invariant Sections may be replaced with a single
|
||||||
|
copy. If there are multiple Invariant Sections with the same name
|
||||||
|
but different contents, make the title of each such section unique
|
||||||
|
by adding at the end of it, in parentheses, the name of the
|
||||||
|
original author or publisher of that section if known, or else a
|
||||||
|
unique number. Make the same adjustment to the section titles in
|
||||||
|
the list of Invariant Sections in the license notice of the
|
||||||
|
combined work.
|
||||||
|
|
||||||
|
In the combination, you must combine any sections Entitled
|
||||||
|
"History" in the various original documents, forming one section
|
||||||
|
Entitled "History"; likewise combine any sections Entitled
|
||||||
|
"Acknowledgements", and any sections Entitled "Dedications". You
|
||||||
|
must delete all sections Entitled "Endorsements."
|
||||||
|
|
||||||
|
6. COLLECTIONS OF DOCUMENTS
|
||||||
|
|
||||||
|
You may make a collection consisting of the Document and other
|
||||||
|
documents released under this License, and replace the individual
|
||||||
|
copies of this License in the various documents with a single copy
|
||||||
|
that is included in the collection, provided that you follow the
|
||||||
|
rules of this License for verbatim copying of each of the documents
|
||||||
|
in all other respects.
|
||||||
|
|
||||||
|
You may extract a single document from such a collection, and
|
||||||
|
distribute it individually under this License, provided you insert
|
||||||
|
a copy of this License into the extracted document, and follow this
|
||||||
|
License in all other respects regarding verbatim copying of that
|
||||||
|
document.
|
||||||
|
|
||||||
|
7. AGGREGATION WITH INDEPENDENT WORKS
|
||||||
|
|
||||||
|
A compilation of the Document or its derivatives with other
|
||||||
|
separate and independent documents or works, in or on a volume of a
|
||||||
|
storage or distribution medium, is called an "aggregate" if the
|
||||||
|
copyright resulting from the compilation is not used to limit the
|
||||||
|
legal rights of the compilation's users beyond what the individual
|
||||||
|
works permit. When the Document is included in an aggregate, this
|
||||||
|
License does not apply to the other works in the aggregate which
|
||||||
|
are not themselves derivative works of the Document.
|
||||||
|
|
||||||
|
If the Cover Text requirement of section 3 is applicable to these
|
||||||
|
copies of the Document, then if the Document is less than one half
|
||||||
|
of the entire aggregate, the Document's Cover Texts may be placed
|
||||||
|
on covers that bracket the Document within the aggregate, or the
|
||||||
|
electronic equivalent of covers if the Document is in electronic
|
||||||
|
form. Otherwise they must appear on printed covers that bracket
|
||||||
|
the whole aggregate.
|
||||||
|
|
||||||
|
8. TRANSLATION
|
||||||
|
|
||||||
|
Translation is considered a kind of modification, so you may
|
||||||
|
distribute translations of the Document under the terms of section
|
||||||
|
4. Replacing Invariant Sections with translations requires special
|
||||||
|
permission from their copyright holders, but you may include
|
||||||
|
translations of some or all Invariant Sections in addition to the
|
||||||
|
original versions of these Invariant Sections. You may include a
|
||||||
|
translation of this License, and all the license notices in the
|
||||||
|
Document, and any Warranty Disclaimers, provided that you also
|
||||||
|
include the original English version of this License and the
|
||||||
|
original versions of those notices and disclaimers. In case of a
|
||||||
|
disagreement between the translation and the original version of
|
||||||
|
this License or a notice or disclaimer, the original version will
|
||||||
|
prevail.
|
||||||
|
|
||||||
|
If a section in the Document is Entitled "Acknowledgements",
|
||||||
|
"Dedications", or "History", the requirement (section 4) to
|
||||||
|
Preserve its Title (section 1) will typically require changing the
|
||||||
|
actual title.
|
||||||
|
|
||||||
|
9. TERMINATION
|
||||||
|
|
||||||
|
You may not copy, modify, sublicense, or distribute the Document
|
||||||
|
except as expressly provided for under this License. Any other
|
||||||
|
attempt to copy, modify, sublicense or distribute the Document is
|
||||||
|
void, and will automatically terminate your rights under this
|
||||||
|
License. However, parties who have received copies, or rights,
|
||||||
|
from you under this License will not have their licenses terminated
|
||||||
|
so long as such parties remain in full compliance.
|
||||||
|
|
||||||
|
10. FUTURE REVISIONS OF THIS LICENSE
|
||||||
|
|
||||||
|
The Free Software Foundation may publish new, revised versions of
|
||||||
|
the GNU Free Documentation License from time to time. Such new
|
||||||
|
versions will be similar in spirit to the present version, but may
|
||||||
|
differ in detail to address new problems or concerns. See
|
||||||
|
<http://www.gnu.org/copyleft/>.
|
||||||
|
|
||||||
|
Each version of the License is given a distinguishing version
|
||||||
|
number. If the Document specifies that a particular numbered
|
||||||
|
version of this License "or any later version" applies to it, you
|
||||||
|
have the option of following the terms and conditions either of
|
||||||
|
that specified version or of any later version that has been
|
||||||
|
published (not as a draft) by the Free Software Foundation. If the
|
||||||
|
Document does not specify a version number of this License, you may
|
||||||
|
choose any version ever published (not as a draft) by the Free
|
||||||
|
Software Foundation.
|
||||||
|
|
||||||
|
D.1.1 ADDENDUM: How to use this License for your documents
|
||||||
|
----------------------------------------------------------
|
||||||
|
|
||||||
|
To use this License in a document you have written, include a copy of
|
||||||
|
the License in the document and put the following copyright and license
|
||||||
|
notices just after the title page:
|
||||||
|
|
||||||
|
Copyright (C) YEAR YOUR NAME.
|
||||||
|
Permission is granted to copy, distribute and/or modify this document
|
||||||
|
under the terms of the GNU Free Documentation License, Version 1.2
|
||||||
|
or any later version published by the Free Software Foundation;
|
||||||
|
with no Invariant Sections, no Front-Cover Texts, and no Back-Cover
|
||||||
|
Texts. A copy of the license is included in the section entitled ``GNU
|
||||||
|
Free Documentation License''.
|
||||||
|
|
||||||
|
If you have Invariant Sections, Front-Cover Texts and Back-Cover
|
||||||
|
Texts, replace the "with...Texts." line with this:
|
||||||
|
|
||||||
|
with the Invariant Sections being LIST THEIR TITLES, with
|
||||||
|
the Front-Cover Texts being LIST, and with the Back-Cover Texts
|
||||||
|
being LIST.
|
||||||
|
|
||||||
|
If you have Invariant Sections without Cover Texts, or some other
|
||||||
|
combination of the three, merge those two alternatives to suit the
|
||||||
|
situation.
|
||||||
|
|
||||||
|
If your document contains nontrivial examples of program code, we
|
||||||
|
recommend releasing these examples in parallel under your choice of free
|
||||||
|
software license, such as the GNU General Public License, to permit
|
||||||
|
their use in free software.
|
||||||
|
|
||||||
|
|
||||||
|
File: grub.info, Node: Index, Prev: Copying This Manual, Up: Top
|
||||||
|
|
||||||
|
Index
|
||||||
|
*****
|
||||||
|
|
||||||
|
| ||||||