From acdcbf024deffab9411480b1bd34cc92007fb8e8 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Sat, 31 Dec 2011 03:09:55 -0500 Subject: [PATCH] vgabios: Rename vbe.c to bochsvga.c. The code is specific to the Bochs "dispi" interface, not the vesa video bios extensions spec. Signed-off-by: Kevin O'Connor --- Makefile | 2 +- vgasrc/{vbe.c => bochsvga.c} | 2 +- vgasrc/{dispi.h => bochsvga.h} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename vgasrc/{vbe.c => bochsvga.c} (99%) rename vgasrc/{dispi.h => bochsvga.h} (100%) diff --git a/Makefile b/Makefile index da6999c..3d60b88 100644 --- a/Makefile +++ b/Makefile @@ -171,7 +171,7 @@ $(OUT)bios.bin.elf $(OUT)bios.bin: $(OUT)rom.o tools/checkrom.py # VGA src files SRCVGA=src/output.c src/util.c vgasrc/vga.c vgasrc/vgafb.c vgasrc/vgaio.c \ vgasrc/vgatables.c vgasrc/vgafonts.c \ - vgasrc/clext.c vgasrc/vbe.c vgasrc/geodelx.c + vgasrc/clext.c vgasrc/bochsvga.c vgasrc/geodelx.c CFLAGS16VGA = $(CFLAGS16INC) -g -Isrc diff --git a/vgasrc/vbe.c b/vgasrc/bochsvga.c similarity index 99% rename from vgasrc/vbe.c rename to vgasrc/bochsvga.c index 2a1e932..7ea1a1f 100644 --- a/vgasrc/vbe.c +++ b/vgasrc/bochsvga.c @@ -1,6 +1,6 @@ #include "vgatables.h" #include "vbe.h" -#include "dispi.h" +#include "bochsvga.h" #include "util.h" #include "config.h" // CONFIG_ #include "biosvar.h" // SET_BDA diff --git a/vgasrc/dispi.h b/vgasrc/bochsvga.h similarity index 100% rename from vgasrc/dispi.h rename to vgasrc/bochsvga.h -- 2.25.1