Gentoo Archives: gentoo-commits

From: "Joseph Jezak (josejx)" <josejx@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-src commit in xac/src: bioscall.h int10defs.h lrmi.h
Date: Wed, 30 Sep 2009 15:05:52
Message-Id: E1Mt0kY-0004BK-GC@stork.gentoo.org
1 josejx 09/09/30 15:05:50
2
3 Modified: bioscall.h lrmi.h
4 Added: int10defs.h
5 Log:
6 Fix BIOS call on x86.
7
8 Revision Changes Path
9 1.2 xac/src/bioscall.h
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-src/xac/src/bioscall.h?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-src/xac/src/bioscall.h?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-src/xac/src/bioscall.h?r1=1.1&r2=1.2
14
15 Index: bioscall.h
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-src/xac/src/bioscall.h,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- bioscall.h 25 Aug 2006 19:48:26 -0000 1.1
22 +++ bioscall.h 30 Sep 2009 15:05:49 -0000 1.2
23 @@ -1,6 +1,8 @@
24 #ifndef bioscall_h
25 #define bioscall_h
26
27 +#include "int10defs.h"
28 +
29 /* Print some of the interesting parts of a vm86_regs structure. */
30 void dump_regs(struct vm86_regs *regs);
31
32
33
34
35 1.2 xac/src/lrmi.h
36
37 file : http://sources.gentoo.org/viewcvs.py/gentoo-src/xac/src/lrmi.h?rev=1.2&view=markup
38 plain: http://sources.gentoo.org/viewcvs.py/gentoo-src/xac/src/lrmi.h?rev=1.2&content-type=text/plain
39 diff : http://sources.gentoo.org/viewcvs.py/gentoo-src/xac/src/lrmi.h?r1=1.1&r2=1.2
40
41 Index: lrmi.h
42 ===================================================================
43 RCS file: /var/cvsroot/gentoo-src/xac/src/lrmi.h,v
44 retrieving revision 1.1
45 retrieving revision 1.2
46 diff -u -r1.1 -r1.2
47 --- lrmi.h 25 Aug 2006 19:48:26 -0000 1.1
48 +++ lrmi.h 30 Sep 2009 15:05:49 -0000 1.2
49 @@ -26,6 +26,8 @@
50 #ifndef LRMI_H
51 #define LRMI_H
52
53 +#include "int10defs.h"
54 +
55 #if defined(__i386__) && (defined(__linux__) || defined(__NetBSD__) \
56 || defined(__FreeBSD__) || defined(__OpenBSD__))
57
58
59
60
61 1.1 xac/src/int10defs.h
62
63 file : http://sources.gentoo.org/viewcvs.py/gentoo-src/xac/src/int10defs.h?rev=1.1&view=markup
64 plain: http://sources.gentoo.org/viewcvs.py/gentoo-src/xac/src/int10defs.h?rev=1.1&content-type=text/plain
65
66 Index: int10defs.h
67 ===================================================================
68 /* Fix missing INT10 defines */
69 #ifndef IF_MASK
70 #define TF_MASK 0x00000100
71 #define IF_MASK 0x00000200
72 #define IOPL_MASK 0x00003000
73 #define NT_MASK 0x00004000
74 #define VM_MASK 0x00020000
75 #define AC_MASK 0x00040000
76 #define VIF_MASK 0x00080000 /* virtual interrupt flag */
77 #define VIP_MASK 0x00100000 /* virtual interrupt pending */
78 #define ID_MASK 0x00200000
79 #endif