Add labels for the default blocklist.
This commit is contained in:
parent
50016e0e32
commit
9bfb72e5d8
3 changed files with 71 additions and 49 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
||||||
|
1999-09-14 Gordon Matzigkeit <gord@fig.org>
|
||||||
|
|
||||||
|
* stage1/stage1.S (blocklist_default_start): New label for default
|
||||||
|
blocklist start sector.
|
||||||
|
(blocklist_default_len): New label for default blocklist length.
|
||||||
|
(blocklist_default_seg): New label for default blocklist segment.
|
||||||
|
* stage1/stage1_lba.S (blocklist_default_start): Likewise.
|
||||||
|
(blocklist_default_len): Likewise.
|
||||||
|
(blocklist_default_seg): Likewise.
|
||||||
|
|
||||||
1999-09-23 OKUJI Yoshinori <okuji@kuicr.kyoto-u.ac.jp>
|
1999-09-23 OKUJI Yoshinori <okuji@kuicr.kyoto-u.ac.jp>
|
||||||
|
|
||||||
* acinclude.m4 (grub_ASM_ADDR32): First, create a template
|
* acinclude.m4 (grub_ASM_ADDR32): First, create a template
|
||||||
|
|
|
@ -391,16 +391,22 @@ lastlist:
|
||||||
|
|
||||||
/* fill the first data listing with the default */
|
/* fill the first data listing with the default */
|
||||||
#ifdef FFS_STAGE1_5
|
#ifdef FFS_STAGE1_5
|
||||||
|
blocklist_default_start:
|
||||||
.long 2 /* this is the sector start parameter, in logical
|
.long 2 /* this is the sector start parameter, in logical
|
||||||
sectors from the start of the disk, sector 0 */
|
sectors from the start of the disk, sector 0 */
|
||||||
|
blocklist_default_len:
|
||||||
.word 14 /* this is the number of sectors to read */
|
.word 14 /* this is the number of sectors to read */
|
||||||
|
blocklist_default_seg:
|
||||||
.word 0x0200 /* this is the segment of the starting address
|
.word 0x0200 /* this is the segment of the starting address
|
||||||
to load the data into */
|
to load the data into */
|
||||||
#else
|
#else
|
||||||
|
blocklist_default_start:
|
||||||
.long 1 /* this is the sector start parameter, in logical
|
.long 1 /* this is the sector start parameter, in logical
|
||||||
sectors from the start of the disk, sector 0 */
|
sectors from the start of the disk, sector 0 */
|
||||||
|
blocklist_default_len:
|
||||||
/* this is the number of sectors to read */
|
/* this is the number of sectors to read */
|
||||||
.word (STAGE2_SIZE + 511) / 512
|
.word (STAGE2_SIZE + 511) / 512
|
||||||
|
blocklist_default_seg:
|
||||||
.word 0x0800 /* this is the segment of the starting address
|
.word 0x0800 /* this is the segment of the starting address
|
||||||
to load the data into */
|
to load the data into */
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -338,16 +338,22 @@ lastlist:
|
||||||
|
|
||||||
/* fill the first data listing with the default */
|
/* fill the first data listing with the default */
|
||||||
#ifdef FFS_STAGE1_5
|
#ifdef FFS_STAGE1_5
|
||||||
|
blocklist_default_start:
|
||||||
.long 2 /* this is the sector start parameter, in logical
|
.long 2 /* this is the sector start parameter, in logical
|
||||||
sectors from the start of the disk, sector 0 */
|
sectors from the start of the disk, sector 0 */
|
||||||
|
blocklist_default_len:
|
||||||
.word 14 /* this is the number of sectors to read */
|
.word 14 /* this is the number of sectors to read */
|
||||||
|
blocklist_default_seg:
|
||||||
.word 0x0200 /* this is the segment of the starting address
|
.word 0x0200 /* this is the segment of the starting address
|
||||||
to load the data into */
|
to load the data into */
|
||||||
#else
|
#else
|
||||||
|
blocklist_default_start:
|
||||||
.long 1 /* this is the sector start parameter, in logical
|
.long 1 /* this is the sector start parameter, in logical
|
||||||
sectors from the start of the disk, sector 0 */
|
sectors from the start of the disk, sector 0 */
|
||||||
|
blocklist_default_len:
|
||||||
/* this is the number of sectors to read */
|
/* this is the number of sectors to read */
|
||||||
.word (STAGE2_SIZE + 511) / 512
|
.word (STAGE2_SIZE + 511) / 512
|
||||||
|
blocklist_default_seg:
|
||||||
.word 0x0800 /* this is the segment of the starting address
|
.word 0x0800 /* this is the segment of the starting address
|
||||||
to load the data into */
|
to load the data into */
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue