8e31ac9fc3
The dummy header files in include/bits/*.h are placeholders for architectures that do not need to define any architecture-specific functionality in these areas. Mark these trivial files as permitted for UEFI Secure Boot. Signed-off-by: Michael Brown <mcb30@ipxe.org>
17 lines
317 B
C
17 lines
317 B
C
#ifndef _BITS_HYPERV_H
|
|
#define _BITS_HYPERV_H
|
|
|
|
/** @file
|
|
*
|
|
* Dummy architecture-specific Hyper-V interface
|
|
*
|
|
* This file is included only if the architecture does not provide its
|
|
* own version of this file.
|
|
*
|
|
*/
|
|
|
|
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
|
|
FILE_SECBOOT ( PERMITTED );
|
|
|
|
#endif /* _BITS_HYPERV_H */
|