summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2009-05-01 11:10:45 -0700
committerH. Peter Anvin <hpa@zytor.com>2009-05-01 11:10:45 -0700
commit9bf2e30530b04c14e91a37f964a9bcfcaccd6c84 (patch)
tree0b85e7627ad151df127d79d5af9dcb591d693c4a
parent7404932c9e83facae12c40a7f46249cfb0094504 (diff)
downloadsyslinux-9bf2e30530b04c14e91a37f964a9bcfcaccd6c84.tar.gz
gfxboot: increase bss alignment to 4Ksyslinux-3.80-pre6
Increase the bss alignment (and therefore the alignment of buffers) to 4K rather than 512 bytes -- this in anticipation of future hard disks with 4K sectors. This only changes the actual bss location by 1.5K. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
-rw-r--r--modules/gfxboot.asm2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gfxboot.asm b/modules/gfxboot.asm
index af1c6b57..c9fdd1b6 100644
--- a/modules/gfxboot.asm
+++ b/modules/gfxboot.asm
@@ -931,7 +931,7 @@ gfx_mem0_start dd 0 ; 44: low free memory start
gfx_mem0_end dd 0 ; 48: low free memory end
gfx_sysconfig_end equ $
- section .bss align=512
+ section .bss align=4096
trackbufsize equ 16384
trackbuf resb trackbufsize
configbuf resb trackbufsize