CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2009/04/25 14:56:39
Modified files:
distrib/miniroot: install.sub
Log message:
stdsize() used to round the sector count to a multiple of 10**3, and
then would multiply by 512 and print the result. This means that, when
printing a partition size, the installer would print sizes rounded to
multiples of 512MB for partitions shorter than a few GB, for example.
Change this to round up one less 10**3 unit, then multiply by 512, then
complete the rounding.
ok krw@ long ago.