Changeset 1802 in vbox
- Timestamp:
- Mar 29, 2007 2:04:07 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 19982
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/BIOS/rombios.c
r1737 r1802 3749 3749 goto undecoded; 3750 3750 /* GRUB calls int15 with ax=0x00c0 to get the ROM configuration table, 3751 * which we don't support, but logging that event is annoying. */ 3751 * which we don't support, but logging that event is annoying. In fact 3752 * it is likely that they just misread some specs, because there is a 3753 * int15 BIOS function AH=0xc0 which sounds quite similar to what GRUB 3754 * wants to achieve. */ 3752 3755 SET_CF(); 3753 3756 regs.u.r8.ah = UNSUPPORTED_FUNCTION; … … 4039 4042 4040 4043 #ifdef VBOX 4044 /* Make the BIOS warning for pretty much every Linux kernel start 4045 * disappear - it calls with ax=0xe980 to figure out SMI info. */ 4046 case 0xe9: /* SMI functions (SpeedStep and similar things) */ 4047 SET_CF(); 4048 regs.u.r8.ah = UNSUPPORTED_FUNCTION; 4049 break; 4041 4050 undecoded: 4042 4051 #endif /* VBOX */
Note:
See TracChangeset
for help on using the changeset viewer.