OLD | NEW |
(Empty) | |
| 1 /* Software-based Trusted Platform Module (TPM) Emulator |
| 2 * Copyright (C) 2004-2010 Mario Strasser <mast@gmx.net> |
| 3 * |
| 4 * This module is free software; you can redistribute it and/or modify |
| 5 * it under the terms of the GNU General Public License as published |
| 6 * by the Free Software Foundation; either version 2 of the License, |
| 7 * or (at your option) any later version. |
| 8 * |
| 9 * This module is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 * GNU General Public License for more details. |
| 13 * |
| 14 * $Id: config.h.in 426 2010-02-22 17:11:58Z mast $ |
| 15 */ |
| 16 |
| 17 #ifndef _CONFIG_H_ |
| 18 #define _CONFIG_H_ |
| 19 |
| 20 /* project and build version */ |
| 21 #define VERSION_MAJOR 0 |
| 22 #define VERSION_MINOR 7 |
| 23 #define VERSION_BUILD 424 |
| 24 |
| 25 /* TDDL and LKM configuration */ |
| 26 #define TPM_SOCKET_NAME "/var/run/tpm/tpmd_socket:0" |
| 27 #define TPM_STORAGE_NAME "/var/lib/tpm/tpm_emulator-1_2_0_7" |
| 28 #define TPM_DEVICE_NAME "/dev/tpm" |
| 29 #define TPM_LOG_FILE "" |
| 30 #define TPM_CMD_BUF_SIZE 4096 |
| 31 |
| 32 #endif /* _CONFIG_H_ */ |
OLD | NEW |