~ubuntu-branches/ubuntu/trusty/grub2/trusty-updates

« back to all changes in this revision

Viewing changes to grub-core/tests/boot/linux.init-i386.S

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2011-02-08 11:39:26 UTC
  • mfrom: (17.6.26 experimental)
  • mto: (17.6.27 experimental)
  • mto: This revision was merged to the branch mainline in revision 104.
  • Revision ID: james.westby@ubuntu.com-20110208113926-clfs90haboyk9zip
Tags: 1.99~rc1-2
* Merge 1.98+20100804-13 and 1.98+20100804-14, updating translations:
  - Kazakh (Baurzhan Muftakhidinov / Timur Birsh).
* mkconfig_skip_dmcrypt.patch: Refer to GRUB_PRELOAD_MODULES rather than
  suggesting people write a /etc/grub.d/01_modules script (thanks, Jordan
  Uggla).
* Handle empty dir passed to grub_find_root_device_from_mountinfo; fixes
  grub-mkrelpath on btrfs subvolumes (LP: #712029).
* Add rootflags=subvol=<name> if / is on a btrfs subvolume (LP: #712029).
* Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  GRUB  --  GRand Unified Bootloader
 
3
 *  Copyright (C) 2010  Free Software Foundation, Inc.
 
4
 *
 
5
 *  GRUB 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 3 of the License, or
 
8
 *  (at your option) any later version.
 
9
 *
 
10
 *  GRUB 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 GRUB.  If not, see <http://www.gnu.org/licenses/>.
 
17
 */
 
18
 
 
19
#define SYSCALL_WRITE 4
 
20
#define SYSCALL_RESET 88
 
21
#define SYSCALL_IOPL 110
 
22
#define SYSCALL_EXIT 1
 
23
#define SYSCALL_INT 0x80
 
24
 
 
25
#define STDOUT 1
 
26
#define SHUTDOWN_MAGIC1 0xfee1dead
 
27
#define SHUTDOWN_MAGIC2 0x28121969
 
28
#define SHUTDOWN_MAGIC3 0x4321fedc
 
29
 
 
30
#define SHUTDOWN_PORT 0x8900
 
31
 
 
32
        .text
 
33
        .global start, _start
 
34
_start:
 
35
start:
 
36
        /* write.  */
 
37
        movl $SYSCALL_WRITE, %eax
 
38
        movl $STDOUT, %ebx
 
39
        leal message, %ecx
 
40
        movl $(messageend-message), %edx
 
41
        int $SYSCALL_INT
 
42
 
 
43
        movl $SYSCALL_IOPL, %eax
 
44
        movl $3, %ebx
 
45
        int $SYSCALL_INT
 
46
 
 
47
        movw $SHUTDOWN_PORT, %dx
 
48
        movb $'S', %al
 
49
        outb %al, %dx
 
50
        movb $'h', %al
 
51
        outb %al, %dx
 
52
        movb $'u', %al
 
53
        outb %al, %dx
 
54
        movb $'t', %al
 
55
        outb %al, %dx
 
56
        movb $'d', %al
 
57
        outb %al, %dx
 
58
        movb $'o', %al
 
59
        outb %al, %dx
 
60
        movb $'w', %al
 
61
        outb %al, %dx
 
62
        movb $'n', %al
 
63
        outb %al, %dx
 
64
        
 
65
        /* shutdown.  */
 
66
        movl $SYSCALL_RESET, %eax
 
67
        movl $SHUTDOWN_MAGIC1, %ebx
 
68
        movl $SHUTDOWN_MAGIC2, %ecx
 
69
        movl $SHUTDOWN_MAGIC3, %edx
 
70
        int $SYSCALL_INT
 
71
 
 
72
        /* exit (1). Shouldn't be reached.  */
 
73
        movl $SYSCALL_EXIT, %eax
 
74
        movl $1, %ebx
 
75
        int $SYSCALL_INT
 
76
        .data
 
77
message:
 
78
        .ascii "Boot Test Passed Successfully\n" SUCCESSFUL_BOOT_STRING "\n"
 
79
messageend: