diff options
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 |