Change the limit size of stage 1.5

This commit is contained in:
okuji 1999-06-06 23:30:44 +00:00
parent 0d6c15713b
commit d2b9bc0db8
6 changed files with 22 additions and 10 deletions

View file

@ -1,3 +1,8 @@
1999-06-07 OKUJI Yoshinori <okuji@kuicr.kyoto-u.ac.jp>
* e2fs_stage1_5/Makefile.am (IMPORTANT_SIZE_LIMIT): Set to 31744.
* fat_stage1_5/Makefile.am (IMPORTANT_SIZE_LIMIT): Likewise.
1999-06-06 OKUJI Yoshinori <okuji@kuicr.kyoto-u.ac.jp> 1999-06-06 OKUJI Yoshinori <okuji@kuicr.kyoto-u.ac.jp>
The debug version of Stage 2 is removed. The debug version of Stage 2 is removed.
@ -119,7 +124,7 @@
1999-05-17 OKUJI Yoshinori <okuji@kuicr.kyoto-u.ac.jp> 1999-05-17 OKUJI Yoshinori <okuji@kuicr.kyoto-u.ac.jp>
* acinclude.m4 (grub_ASM_EXT_C): Do not overrun the comman * acinclude.m4 (grub_ASM_EXT_C): Do not overrun the command
shift. Reported by Pavel Roskin <pabel_roskin@geocities.com>. shift. Reported by Pavel Roskin <pabel_roskin@geocities.com>.
1999-05-14 OKUJI Yoshinori <okuji@kuicr.kyoto-u.ac.jp> 1999-05-14 OKUJI Yoshinori <okuji@kuicr.kyoto-u.ac.jp>

4
NEWS
View file

@ -1,13 +1,15 @@
NEWS - list of user-visible changes between releases of GRUB NEWS - list of user-visible changes between releases of GRUB
New: New:
* Bug fixes (i.e. Stage 1.5 can work fine again).
* The /sbin/grub stage2 simulator now works at least on GNU/Linux, and * The /sbin/grub stage2 simulator now works at least on GNU/Linux, and
uses the Linux HDIO_GETGEO ioctl to determine hard disk geometry. uses the Linux HDIO_GETGEO ioctl to determine hard disk geometry.
* TAB not only lists filenames, but also completes a filename when the * TAB not only lists filenames, but also completes a filename when the
filename is unique. filename is unique.
* Many bug fixes (i.e. Stage 1.5 can work fine again).
* Password is not echoed back, put an asterisk for each of input * Password is not echoed back, put an asterisk for each of input
characters. characters.
* stage2_debug is removed, and the debugging features are added into
stage2.
New in 0.5.91 - 1999-03-14, Gordon Matzigkeit: New in 0.5.91 - 1999-03-14, Gordon Matzigkeit:
* LBA and preliminary AWARD BIOS disk extension support. * LBA and preliminary AWARD BIOS disk extension support.

View file

@ -1,6 +1,6 @@
# On ext2fs, we can install into EXT2_BOOT_LOADER_INO, which gives us: # Stage 1.5 can be installed into the first cylinder after MBR, so the
# MAX-STAGE1-BLOCK-LIST * MIN-EXT2-BLOCK-SIZE = 80 * 1024 = 81920 # limit is (63 - 1) * 512 = 31744.
IMPORTANT_SIZE_LIMIT = 81920 IMPORTANT_SIZE_LIMIT = 31744
pkgdatadir = $(datadir)/$(PACKAGE)/$(host_cpu)-$(host_vendor) pkgdatadir = $(datadir)/$(PACKAGE)/$(host_cpu)-$(host_vendor)
pkgdata_DATA = e2fs_stage1_5 pkgdata_DATA = e2fs_stage1_5

View file

@ -69,11 +69,11 @@ host_cpu = @host_cpu@
host_vendor = @host_vendor@ host_vendor = @host_vendor@
sbingrub = @sbingrub@ sbingrub = @sbingrub@
# On ext2fs, we can install into EXT2_BOOT_LOADER_INO, which gives us: # Stage 1.5 can be installed into the first cylinder after MBR, so the
# MAX-STAGE1-BLOCK-LIST * MIN-EXT2-BLOCK-SIZE = 80 * 1024 = 81920 # limit is (63 - 1) * 512 = 31744.
IMPORTANT_SIZE_LIMIT = 81920 IMPORTANT_SIZE_LIMIT = 31744
pkgdatadir = $(datadir)/$(PACKAGE)/$(host_cpu)-$(host_vendor) pkgdatadir = $(datadir)/$(PACKAGE)/$(host_cpu)-$(host_vendor)
pkgdata_DATA = e2fs_stage1_5 pkgdata_DATA = e2fs_stage1_5

View file

@ -1,4 +1,6 @@
IMPORTANT_SIZE_LIMIT = 81920 # Stage 1.5 can be installed into the first cylinder after MBR, so the
# limit is (63 - 1) * 512 = 31744.
IMPORTANT_SIZE_LIMIT = 31744
pkgdatadir = $(datadir)/$(PACKAGE)/$(host_cpu)-$(host_vendor) pkgdatadir = $(datadir)/$(PACKAGE)/$(host_cpu)-$(host_vendor)
pkgdata_DATA = fat_stage1_5 pkgdata_DATA = fat_stage1_5

View file

@ -69,8 +69,11 @@ host_cpu = @host_cpu@
host_vendor = @host_vendor@ host_vendor = @host_vendor@
sbingrub = @sbingrub@ sbingrub = @sbingrub@
# Stage 1.5 can be installed into the first cylinder after MBR, so the
# limit is (63 - 1) * 512 = 31744.
IMPORTANT_SIZE_LIMIT = 81920
IMPORTANT_SIZE_LIMIT = 31744
pkgdatadir = $(datadir)/$(PACKAGE)/$(host_cpu)-$(host_vendor) pkgdatadir = $(datadir)/$(PACKAGE)/$(host_cpu)-$(host_vendor)
pkgdata_DATA = fat_stage1_5 pkgdata_DATA = fat_stage1_5