diff --git a/ChangeLog b/ChangeLog index 8e186e096..2dc5fdb14 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +1999-06-28 OKUJI Yoshinori + + * grub/main.c (main): The third argument for strtoul is changed + to 0 in the case where an option is OPT_INSTALL_PARTIION. + Reported by Pavel Roskin . + 1999-06-27 OKUJI Yoshinori * stage2/shared.h (STAGE2_STAGE2_ID): New macro. diff --git a/NEWS b/NEWS index 261a7e6c3..ab6d419f9 100644 --- a/NEWS +++ b/NEWS @@ -13,6 +13,7 @@ New: * Color menu support. * New command "quit". * The man page for /sbin/grub. +* All documents become Texinfo. New in 0.5.91 - 1999-03-14, Gordon Matzigkeit: * LBA and preliminary AWARD BIOS disk extension support. diff --git a/README b/README index f8faa9de6..2c79da5c9 100644 --- a/README +++ b/README @@ -49,8 +49,8 @@ http://sourceware.cygnus.com/automake for more information. See the file INSTALL for instructions on how to build and install the -GRUB data and program files. See `docs/install.html' for details -about using GRUB as your bootloader. +GRUB data and program files. See the GRUB manual for details about +using GRUB as your bootloader. If you have any suggestions or bug reports, please send electronic mail to the GRUB mailing list . diff --git a/docs/grub.texi b/docs/grub.texi index a22bbccdd..d9dce0a77 100644 --- a/docs/grub.texi +++ b/docs/grub.texi @@ -1226,7 +1226,7 @@ an integer (decimal, octal or hexadecimal). @item --install-partition=@var{par} Set the stage2 @var{install_partition} to @var{par}. This argument -should be an hexadecimal number. +should be an integer (decimal, octal or hexadecimal). @item --no-config-file Do not use the configuration file even if it can be read. diff --git a/grub/main.c b/grub/main.c index ef3d329b6..702d46ea6 100644 --- a/grub/main.c +++ b/grub/main.c @@ -150,7 +150,7 @@ main (int argc, char **argv) break; case OPT_INSTALL_PARTITION: - install_partition = strtoul (optarg, 0, 16); + install_partition = strtoul (optarg, 0, 0); if (install_partition == ULONG_MAX) { perror ("strtoul");