upgraded to etherboot-4.4.3, rewrite a part of the document, print a message in check_BSD_parts if the label is invalid.

This commit is contained in:
okuji 2000-02-21 08:56:10 +00:00
parent b0574dee64
commit c62dcb6fa0
18 changed files with 359 additions and 194 deletions

View file

@ -215,9 +215,35 @@ for more information.
When you encounter any problem or bug, please submit it to
@email{bug-grub@@gnu.org} with information about your computer and what
you did @emph{as much as possible}. For example, your operating system,
the geometries of your drives and the version of GRUB are very
important.
you did @emph{as much as possible}. Take a look at this list before you
send e-mail to the address:
@itemize @bullet
@item
Write what you did and what messages were printed on the screen in
detail. Don't paraphrase them. Please describe them as they were.
@item
Explain what you wanted to do. It is very useful to know your purpose
and your wish, and how GRUB didn't satisfy you.
@item
Inform us of the information about your GRUB. What version were you
using? Which were you using the grub shell or the boot images? If using
the grub shell, tell us what operating system was used to run it. And,
if you ran @command{configure} with some options when building GRUB, it
would be a good thing to let us know how to build it.
@item
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.
@item
Write down anything that you think might be related. If you are not sure
whether to state a fact or leave it out, state it! Reporting too many
things is quite better than omitting an important thing.
@end itemize
@node Index

View file

@ -780,6 +780,24 @@ correct signature or not. This is required when you want to load a
defective boot loader, such as SCO Unixware 7.1.
@end deffn
@deffn Command cmp file1 file2
Compare the file @var{file1} with the file @var{file2}. If they differ
in size, print the sizes like this:
@example
Differ in size: 0x1234 [foo], 0x4321 [bar]
@end example
If the sizes are equal but the bytes at an offset differ, then print the
bytes like this:
@example
Differ at the offset 777: 0xbe [foo], 0xef [bar]
@end example
If they are complete identical, nothing will be printed.
@end deffn
@deffn Command configfile @var{file}
Load @var{file} as the configuration file.
@end deffn