From 72b5e45550e5dc439681cd90a9b6220ac20d0254 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Fri, 23 Dec 2011 23:01:48 -0500 Subject: [PATCH] vgabios: Place a signature at offset 0x1e of the rom. It appears some emulators look for a signature at offset 0x1e of the option rom. So, port the signature from the LGPL bios. Signed-off-by: Kevin O'Connor --- vgasrc/vgaentry.S | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vgasrc/vgaentry.S b/vgasrc/vgaentry.S index 2dc07c1..112857b 100644 --- a/vgasrc/vgaentry.S +++ b/vgasrc/vgaentry.S @@ -40,6 +40,10 @@ _rom_header_pcidata: #endif _rom_header_pnpdata: .word 0 +_rom_header_other2: + .word 0 +_rom_header_signature: + .asciz "IBM" /**************************************************************** -- 2.25.1