Handle ext3 inode sizes other than 128 (from Bean in grub4dos).
[grub-extras.git] / g2hdr.S
blob1c2a22b8eb4e078f43c3b59a04baddadcf4d4349
1 /*
2  *  GRUB Utilities --  Utilities for GRUB Legacy, GRUB2 and GRUB for DOS
3  *  Copyright (C) 2007 Bean (bean123@126.com)
4  *
5  *  This program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 2 of the License, or
8  *  (at your option) any later version.
9  *
10  *  This program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with this program; if not, write to the Free Software
17  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */
20 #include <grub/machine/kernel.h>
22         .file   "g2hdr.S"
24         .text
26         .code16
28         .globl  start, _start
30 start:
31 _start:
33         // We are at 0x2000:0
34         // Move itself to 0x800:0
35         // Don't modify dx
37         cld
38         movw    %cs, %ax
39         movw    %ax, %ds
40         movw    $0x800, %ax
41         movw    %ax, %es
42         xorw    %si, %si
43         movw    %si, %di
44         movw    $0x80, %cx
46         rep
47         movsl
49         ljmp    $0, $(jump_start-start+0x8000)
51 jump_start:
52         // Move data from 0x2040:0 to 0x820:0
54         movw    $0x2040, %ax
55         movw    %ax, %ds
56         movw    $0x820, %ax
57         movw    %ax, %es
58         xorl    %eax, %eax
59         movb    %dh, %al
60         movl    %eax, GRUB_KERNEL_MACHINE_INSTALL_DOS_PART
61         movl    GRUB_KERNEL_MACHINE_COMPRESSED_SIZE, %eax
62         addl    $GRUB_KERNEL_MACHINE_RAW_SIZE, %eax
63         xorl    %ecx, %ecx
66         xorw    %si, %si
67         movw    %si, %di
69         movw    $0x8000, %cx
70         cmpl    %ecx, %eax
71         jae     2f
72         movw    %ax, %cx
75         pushw   %cx
76         addw    $3, %cx
77         shrw    $2, %cx
79         rep
80         movsl
82         popw    %cx
84         movw    %ds, %si
85         addw    $0x800, %si
86         movw    %si, %ds
88         movw    %es, %si
89         addw    $0x800, %si
90         movw    %si, %es
92         subl    %ecx, %eax
93         jnz     1b
95         ljmp    $0, $(0x8000 + 0x200)
97         . = _start + 0x200 - 2
99         .word 0xAA55