mirror of
https://github.com/ventoy/Ventoy.git
synced 2025-12-23 20:06:22 +00:00
1. Optimization for WIMBOOT mode.
2. Add WIMBOOT for UEFI mode.
This commit is contained in:
19
wimboot/wimboot-2.7.3/src/efi/ProcessorBind.h
Normal file
19
wimboot/wimboot-2.7.3/src/efi/ProcessorBind.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#ifndef _WIMBOOT_EFI_PROCESSOR_BIND_H
|
||||
#define _WIMBOOT_EFI_PROCESSOR_BIND_H
|
||||
|
||||
/*
|
||||
* EFI header files rely on having the CPU architecture directory
|
||||
* present in the search path in order to pick up ProcessorBind.h. We
|
||||
* use this header file as a quick indirection layer.
|
||||
*
|
||||
*/
|
||||
|
||||
#if __i386__
|
||||
#include <efi/Ia32/ProcessorBind.h>
|
||||
#endif
|
||||
|
||||
#if __x86_64__
|
||||
#include <efi/X64/ProcessorBind.h>
|
||||
#endif
|
||||
|
||||
#endif /* _WIMBOOT_EFI_PROCESSOR_BIND_H */
|
||||
Reference in New Issue
Block a user