2003-01-16 Yoshinori K. Okuji <okuji@enbug.org>
From H.J. Lu <hjl@gnu.org>: * stage2/disk_io.c (part_start): Use unsigned long to support large disks. (part_length): Likewise. * stage2/shared.h (part_start): Likewise. (part_length): Likewise.
This commit is contained in:
parent
f91040a45f
commit
47bd75581e
3 changed files with 13 additions and 4 deletions
|
@ -1,3 +1,12 @@
|
|||
2003-01-16 Yoshinori K. Okuji <okuji@enbug.org>
|
||||
|
||||
From H.J. Lu <hjl@gnu.org>:
|
||||
* stage2/disk_io.c (part_start): Use unsigned long to support
|
||||
large disks.
|
||||
(part_length): Likewise.
|
||||
* stage2/shared.h (part_start): Likewise.
|
||||
(part_length): Likewise.
|
||||
|
||||
2003-01-05 Yoshinori K. Okuji <okuji@enbug.org>
|
||||
|
||||
* configure.in (CFLAGS): When the default CFLAGS is used,
|
||||
|
|
|
@ -107,8 +107,8 @@ static int block_file = 0;
|
|||
#endif /* NO_BLOCK_FILES */
|
||||
|
||||
/* these are the translated numbers for the open partition */
|
||||
long part_start;
|
||||
long part_length;
|
||||
unsigned long part_start;
|
||||
unsigned long part_length;
|
||||
|
||||
int current_slice;
|
||||
|
||||
|
|
|
@ -637,8 +637,8 @@ struct geometry
|
|||
unsigned long flags;
|
||||
};
|
||||
|
||||
extern long part_start;
|
||||
extern long part_length;
|
||||
extern unsigned long part_start;
|
||||
extern unsigned long part_length;
|
||||
|
||||
extern int current_slice;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue