diff options
author | H. Peter Anvin <hpa@zytor.com> | 2007-02-10 13:22:40 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2007-02-10 13:22:40 -0800 |
commit | 14df2f8046001f2dc24e1f65bb17c6e31dfbbd09 (patch) | |
tree | e1aa9c709cd2e3ff208d2160157bac9f3acff61c /extlinux.asm | |
parent | 1970446f95df5ac0a0d3b2b0e90b72e0dd353699 (diff) | |
parent | d48bb2b249d996587cfe6e39e810a9805d013abe (diff) | |
download | syslinux-3.40-pre5.tar.gz |
Merge with git+ssh://master.kernel.org/pub/scm/boot/syslinux/syslinux.git#syslinux-3.3xsyslinux-3.40-pre5
Diffstat (limited to 'extlinux.asm')
-rw-r--r-- | extlinux.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extlinux.asm b/extlinux.asm index ddc0cc6b..e4628478 100644 --- a/extlinux.asm +++ b/extlinux.asm @@ -5,7 +5,7 @@ ; ; A program to boot Linux kernels off an ext2/ext3 filesystem. ; -; Copyright (C) 1994-2006 H. Peter Anvin +; Copyright (C) 1994-2007 H. Peter Anvin ; ; This program is free software; you can redistribute it and/or modify ; it under the terms of the GNU General Public License as published by @@ -112,7 +112,7 @@ trackbuf resb trackbufsize ; Track buffer goes here getcbuf resb trackbufsize ; ends at 4800h - section .latebss + section .bss SuperBlock resb 1024 ; ext2 superblock SuperInfo resq 16 ; DOS superblock expanded ClustSize resd 1 ; Bytes/cluster ("block") @@ -1024,7 +1024,7 @@ open_inode: pop di ret - section .latebss + section .bss alignb 4 ThisInode resb EXT2_GOOD_OLD_INODE_SIZE ; The most recently opened inode |