Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


Cleanup and sanity-checking of before/after null-check and copy+paste errors (Coverit...
[palacios.git] / palacios / src / palacios / vmm_binaries.S
index cca75ef..414f3da 100644 (file)
@@ -29,13 +29,13 @@ v3_vmxassist_start:
 v3_vmxassist_end:
 #endif
 
-#if V3_CONFIG_SEABIOS || V3_CONFIG_BOCHSBIOS
+#if defined(V3_CONFIG_SEABIOS) || defined(V3_CONFIG_BOCHSBIOS)
 .globl v3_vgabios_start
 v3_vgabios_start:
-#if V3_CONFIG_SEABIOS
+#ifdef V3_CONFIG_SEABIOS
 .incbin V3_CONFIG_SEABIOSVGA_PATH
 #endif
-#if V3_CONFIG_BOCHSBIOS
+#ifdef V3_CONFIG_BOCHSBIOS
 .incbin V3_CONFIG_BOCHSBIOSVGA_PATH
 #endif
 .global v3_vgabios_end
@@ -44,13 +44,13 @@ v3_vgabios_end:
 
 .globl v3_rombios_start
 v3_rombios_start:
-#if V3_CONFIG_SEABIOS
+#ifdef V3_CONFIG_SEABIOS
 .incbin V3_CONFIG_SEABIOS_PATH
 #endif
-#if V3_CONFIG_ROMBIOS
-.incbin V3_CONFIG_BOCHBIOS_PATH
+#ifdef V3_CONFIG_BOCHSBIOS
+.incbin V3_CONFIG_BOCHSBIOS_PATH
 #endif
-#if V3_CONFIG_OTHERBIOS
+#ifdef V3_CONFIG_OTHERBIOS
 .incbin V3_CONFIG_OTHERBIOS_PATH
 #endif
 .globl v3_rombios_end