hv/mod-irq: use arch specific header files

Requires explicit arch path name in the include directive.

The config scripts was also updated to reflect this change.

Tracked-On: #5825
Signed-off-by: Peter Fang <peter.fang@intel.com>
Reviewed-by: Jason Chen CJ <jason.cj.chen@intel.com>
This commit is contained in:
Liang Yi
2021-03-04 17:31:05 +08:00
committed by wenlingz
parent df36da1b80
commit 33ef656462
139 changed files with 608 additions and 612 deletions

View File

@@ -123,12 +123,12 @@ def generate_file(vm_info, config):
print("{}".format(scenario_cfg_lib.HEADER_LICENSE), file=config)
print("", file=config)
print("#include <vm_config.h>", file=config)
print("#include <x86/vm_config.h>", file=config)
print("#include <pci_devices.h>", file=config)
print("#include <vpci.h>", file=config)
print("#include <vbar_base.h>", file=config)
print("#include <mmu.h>", file=config)
print("#include <page.h>", file=config)
print("#include <x86/mmu.h>", file=config)
print("#include <x86/page.h>", file=config)
if pci_vuart_enabled:
print("#include <vmcs9900.h>", file=config)
# Insert header for share memory
@@ -306,4 +306,4 @@ def generate_file(vm_info, config):
print("\t},", file=config)
# Insert the end bracket of the pci_dev.c file
print("};", file=config)
print("};", file=config)