]> git.sur5r.net Git - u-boot/blob - include/asm-generic/pe.h
d1683f238afe0f2f794650d1980edf485bcb4cc1
[u-boot] / include / asm-generic / pe.h
1 /*
2  *  Portable Executable and Common Object Constants
3  *
4  *  Copyright (c) 2018 Heinrich Schuchardt
5  *
6  *  based on the "Microsoft Portable Executable and Common Object File Format
7  *  Specification", revision 11, 2017-01-23
8  *
9  *  SPDX-License-Identifier:     GPL-2.0+
10  */
11
12 #ifndef _ASM_PE_H
13 #define _ASM_PE_H
14
15 /* Subsystem type */
16 #define IMAGE_SUBSYSTEM_EFI_APPLICATION         10
17 #define IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER 11
18 #define IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER      12
19 #define IMAGE_SUBSYSTEM_EFI_ROM                 13
20
21 #endif /* _ASM_PE_H */