diff options
| author | H. Peter Anvin <hpa@zytor.com> | 2007-10-11 16:03:30 -0700 |
|---|---|---|
| committer | H. Peter Anvin <hpa@zytor.com> | 2007-12-13 13:55:54 -0800 |
| commit | 8d8ec4ae593354aacb796308b4e6c4d6bd466242 (patch) | |
| tree | 99a81b0d6bc305a2035ff75b87dabf3551513e8c /extlinux.asm | |
| parent | 47b318940041cb713958d469a88b1859e14808b0 (diff) | |
| download | syslinux-8d8ec4ae593354aacb796308b4e6c4d6bd466242.tar.gz | |
Initial support for auxilliary data vector
Initial support for the auxillary data vector, a storage mechanism
intended to support boot-once and similar features.
Diffstat (limited to 'extlinux.asm')
| -rw-r--r-- | extlinux.asm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/extlinux.asm b/extlinux.asm index 6666f794..5e662d9b 100644 --- a/extlinux.asm +++ b/extlinux.asm @@ -112,7 +112,7 @@ trackbuf resb trackbufsize ; Track buffer goes here getcbuf resb trackbufsize ; ends at 4800h - section .bss + section .bss1 SuperBlock resb 1024 ; ext2 superblock SuperInfo resq 16 ; DOS superblock expanded ClustSize resd 1 ; Bytes/cluster ("block") @@ -1528,7 +1528,8 @@ getfssec: %include "highmem.inc" ; High memory sizing %include "strcpy.inc" ; strcpy() %include "strecpy.inc" ; strcpy with end pointer check -%include "cache.inc" +%include "cache.inc" ; Metadata disk cache +%include "adv.inc" ; Auxillary Data Vector ; ----------------------------------------------------------------------------- ; Begin data section |
