Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(440)

Side by Side Diff: config.h.in

Issue 660204: Upgrade to tpm-emulator version 0.7. (Closed)
Patch Set: Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « build.sh ('k') | crypto/CMakeLists.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Software-Based Trusted Platform Module (TPM) Emulator for Linux 1 /* Software-based Trusted Platform Module (TPM) Emulator
2 * Copyright (C) 2004 Mario Strasser <mast@gmx.net>, 2 * Copyright (C) 2004-2010 Mario Strasser <mast@gmx.net>
3 * 3 *
4 * This module is free software; you can redistribute it and/or modify 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 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, 6 * by the Free Software Foundation; either version 2 of the License,
7 * or (at your option) any later version. 7 * or (at your option) any later version.
8 * 8 *
9 * This module is distributed in the hope that it will be useful, 9 * This module is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details. 12 * GNU General Public License for more details.
13 * 13 *
14 * $Id$ 14 * $Id: config.h.in 426 2010-02-22 17:11:58Z mast $
15 */ 15 */
16 16
17 #ifndef _CONFIG_H_ 17 #ifndef _CONFIG_H_
18 #define _CONFIG_H_ 18 #define _CONFIG_H_
19 19
20 /* project and build version */ 20 /* project and build version */
21 #define VERSION_MAJOR 0 21 #define VERSION_MAJOR ${TPM_Emulator_VERSION_MAJOR}
22 #define VERSION_MINOR 7 22 #define VERSION_MINOR ${TPM_Emulator_VERSION_MINOR}
23 #define VERSION_BUILD 144 23 #define VERSION_BUILD ${TPM_Emulator_VERSION_BUILD}
24
25 /* TPM emulator configuration */
26 /* #undef TPM_STRONG_PERSISTENCE */
27 /* #undef TPM_GENERATE_EK */
28 /* #undef TPM_GENERATE_SEED_DAA */
29 /* #undef TPM_USE_INTERNAL_PRNG */
30 /* #undef TPM_ENABLE_PRNG_STATE_SETTING */
31 24
32 /* TDDL and LKM configuration */ 25 /* TDDL and LKM configuration */
33 #define TPM_SOCKET_NAME "/var/run/tpm/tpmd_socket:0" 26 #define TPM_SOCKET_NAME "${TPM_SOCKET_NAME}"
34 #define TPM_STORAGE_NAME "/var/lib/tpm/tpm_emulator-1.2.0.7" 27 #define TPM_STORAGE_NAME "${TPM_STORAGE_NAME}"
35 #define TPM_DEVICE_NAME "/dev/tpm" 28 #define TPM_DEVICE_NAME "${TPM_DEVICE_NAME}"
29 #define TPM_LOG_FILE "${TPM_LOG_FILE}"
30 #define TPM_CMD_BUF_SIZE 4096
36 31
37 #endif /* _CONFIG_H_ */ 32 #endif /* _CONFIG_H_ */
38 33
OLDNEW
« no previous file with comments | « build.sh ('k') | crypto/CMakeLists.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698