| 1 |
#ifndef _CONFIG_RH_I586_H_
|
| 2 |
/*
|
| 3 |
* Copyright (C) 2002 Michael Richardson <mcr@freeswan.org>
|
| 4 |
*
|
| 5 |
* This kernel module is free software; you can redistribute it and/or modify it
|
| 6 |
* under the terms of the GNU General Public License as published by
|
| 7 |
* the Free Software Foundation; either version 2 of the License, or (at your
|
| 8 |
* option) any later version. See <http://www.fsf.org/copyleft/lgpl.txt>.
|
| 9 |
*
|
| 10 |
* This kernel module is distributed in the hope that it will be useful, but
|
| 11 |
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
| 12 |
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
|
| 13 |
* License for more details.
|
| 14 |
*
|
| 15 |
* RCSID $Id: config-i586-up.h,v 1.5.6.3 2006/03/22 03:43:53 paul Exp $
|
| 16 |
*/
|
| 17 |
#define _CONFIG_RH_I586_H_ /* seen it, no need to see it again */
|
| 18 |
|
| 19 |
#define CONFIG_KLIPS 1
|
| 20 |
|
| 21 |
#ifndef CONFIG_KLIPS_AH
|
| 22 |
#define CONFIG_KLIPS_AH 1
|
| 23 |
#endif
|
| 24 |
|
| 25 |
#ifndef CONFIG_KLIPS_DEBUG
|
| 26 |
#define CONFIG_KLIPS_DEBUG 1
|
| 27 |
#endif
|
| 28 |
|
| 29 |
#ifndef CONFIG_KLIPS_ESP
|
| 30 |
#define CONFIG_KLIPS_ESP 1
|
| 31 |
#endif
|
| 32 |
|
| 33 |
#ifndef CONFIG_KLIPS_IPCOMP
|
| 34 |
#define CONFIG_KLIPS_IPCOMP 1
|
| 35 |
#endif
|
| 36 |
|
| 37 |
#ifndef CONFIG_KLIPS_IPIP
|
| 38 |
#define CONFIG_KLIPS_IPIP 1
|
| 39 |
#endif
|
| 40 |
|
| 41 |
#ifndef CONFIG_KLIPS_AUTH_HMAC_MD5
|
| 42 |
#define CONFIG_KLIPS_AUTH_HMAC_MD5 1
|
| 43 |
#endif
|
| 44 |
|
| 45 |
#ifndef CONFIG_KLIPS_AUTH_HMAC_SHA1
|
| 46 |
#define CONFIG_KLIPS_AUTH_HMAC_SHA1 1
|
| 47 |
#endif
|
| 48 |
|
| 49 |
#ifndef CONFIG_KLIPS_DYNDEV
|
| 50 |
#define CONFIG_KLIPS_DYNDEV 1
|
| 51 |
#endif
|
| 52 |
|
| 53 |
#ifndef CONFIG_KLIPS_ENC_3DES
|
| 54 |
#define CONFIG_KLIPS_ENC_3DES 1
|
| 55 |
#endif
|
| 56 |
|
| 57 |
#ifndef CONFIG_KLIPS_ENC_AES
|
| 58 |
#define CONFIG_KLIPS_ENC_AES 1
|
| 59 |
#endif
|
| 60 |
|
| 61 |
#ifndef CONFIG_KLIPS_NAT_TRAVERSAL
|
| 62 |
#define CONFIG_KLIPS_NAT_TRAVERSAL 0
|
| 63 |
#endif
|
| 64 |
|
| 65 |
#ifndef CONFIG_IPSEC_NAT_TRAVERSAL
|
| 66 |
#define CONFIG_IPSEC_NAT_TRAVERSAL 0
|
| 67 |
#endif
|
| 68 |
|
| 69 |
/* off by default for now */
|
| 70 |
#ifndef CONFIG_KLIPS_ENC_CRYPTOAPI
|
| 71 |
#define CONFIG_KLIPS_ENC_CRYPTOAPI 0
|
| 72 |
#endif
|
| 73 |
|
| 74 |
#define CONFIG_KLIPS_ALG_CRYPTOAPI #error
|
| 75 |
#define CONFIG_IPSEC_ALG_AES #error
|
| 76 |
|
| 77 |
#ifndef CONFIG_IPSEC_ALG_AES_MAC
|
| 78 |
#define CONFIG_IPSEC_ALG_AES_MAC 1
|
| 79 |
#endif
|
| 80 |
|
| 81 |
#ifndef CONFIG_KLIPS_REGRESS
|
| 82 |
#define CONFIG_KLIPS_REGRESS 0
|
| 83 |
#endif
|
| 84 |
|
| 85 |
/* ALGO: */
|
| 86 |
#if 0
|
| 87 |
/* goal: cleanup KLIPS code from hardcoded algos :} */
|
| 88 |
#undef CONFIG_KLIPS_AUTH_HMAC_MD5
|
| 89 |
#undef CONFIG_KLIPS_AUTH_HMAC_SHA1
|
| 90 |
#undef CONFIG_KLIPS_ENC_3DES
|
| 91 |
#endif
|
| 92 |
|
| 93 |
#ifndef CONFIG_KLIPS_ALG
|
| 94 |
#define CONFIG_KLIPS_ALG 1
|
| 95 |
#endif
|
| 96 |
|
| 97 |
/* keep rhconfig.h from doing anything */
|
| 98 |
#define __rh_config_h__
|
| 99 |
|
| 100 |
/* pick which arch we are supposed to be */
|
| 101 |
#undef __module__smp
|
| 102 |
#define __module__up
|
| 103 |
#define __module__i586
|
| 104 |
#define __module__i586_up
|
| 105 |
|
| 106 |
#if defined(__module__smp) || defined(__module__BOOTsmp) || defined(__module__enterprise) || defined(__module__bigmem)
|
| 107 |
#define _ver_str(x) smp_ ## x
|
| 108 |
#else
|
| 109 |
#define _ver_str(x) x
|
| 110 |
#endif
|
| 111 |
|
| 112 |
#define RED_HAT_LINUX_KERNEL 1
|
| 113 |
|
| 114 |
#endif /* _CONFIG_RH_I586_H_ */
|
| 115 |
|