diff options
Diffstat (limited to 'sysdep/cf')
-rw-r--r-- | sysdep/cf/README | 10 | ||||
-rw-r--r-- | sysdep/cf/linux-20.h | 4 | ||||
-rw-r--r-- | sysdep/cf/linux-21.h | 11 | ||||
-rw-r--r-- | sysdep/cf/linux-22.h | 17 | ||||
-rw-r--r-- | sysdep/cf/linux-v6.h | 7 |
5 files changed, 37 insertions, 12 deletions
diff --git a/sysdep/cf/README b/sysdep/cf/README new file mode 100644 index 0000000..c35ffe5 --- /dev/null +++ b/sysdep/cf/README @@ -0,0 +1,10 @@ +Available configuration variables: +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +CONFIG_TOS Routing by TOS supported +CONFIG_AUTO_ROUTES Device routes are added automagically by the kernel +CONFIG_ALL_MULTICAST All devices support multicasting (i.e., ignore IFF_MULTICAST) + +CONFIG_UNIX_IFACE Use Unix interface scanner +CONFIG_UNIX_SET Use Unix route setting +CONFIG_LINUX_SCAN Use Linux /proc/net/route scanner diff --git a/sysdep/cf/linux-20.h b/sysdep/cf/linux-20.h index e514218..75f12ac 100644 --- a/sysdep/cf/linux-20.h +++ b/sysdep/cf/linux-20.h @@ -1,14 +1,12 @@ /* * Configuration for Linux 2.0 based systems * - * (c) 1998 Martin Mares <mj@ucw.cz> + * (c) 1998--1999 Martin Mares <mj@ucw.cz> * * Can be freely distributed and used under the terms of the GNU GPL. */ #undef CONFIG_TOS -#undef CONFIG_MULTIPATH -#undef CONFIG_NETLINK #undef CONFIG_AUTO_ROUTES #define CONFIG_ALL_MULTICAST diff --git a/sysdep/cf/linux-21.h b/sysdep/cf/linux-21.h index 7aeaab0..f5efe4d 100644 --- a/sysdep/cf/linux-21.h +++ b/sysdep/cf/linux-21.h @@ -1,19 +1,20 @@ /* - * Configuration for Linux 2.1 based systems + * Configuration for Linux 2.1/2.2 based systems without Netlink * * (c) 1998--1999 Martin Mares <mj@ucw.cz> * * Can be freely distributed and used under the terms of the GNU GPL. */ -#define CONFIG_TOS -#define CONFIG_MULTIPATH -#define CONFIG_NETLINK +#undef CONFIG_TOS #define CONFIG_AUTO_ROUTES #define CONFIG_ALL_MULTICAST +#define CONFIG_UNIX_IFACE +#define CONFIG_UNIX_SET +#define CONFIG_LINUX_SCAN + /* -Link: sysdep/linux/netlink Link: sysdep/linux Link: sysdep/unix */ diff --git a/sysdep/cf/linux-22.h b/sysdep/cf/linux-22.h new file mode 100644 index 0000000..966fb7c --- /dev/null +++ b/sysdep/cf/linux-22.h @@ -0,0 +1,17 @@ +/* + * Configuration for Linux 2.2 based systems + * + * (c) 1998--1999 Martin Mares <mj@ucw.cz> + * + * Can be freely distributed and used under the terms of the GNU GPL. + */ + +#define CONFIG_TOS +#define CONFIG_AUTO_ROUTES +#define CONFIG_ALL_MULTICAST + +/* +Link: sysdep/linux/netlink +Link: sysdep/linux +Link: sysdep/unix + */ diff --git a/sysdep/cf/linux-v6.h b/sysdep/cf/linux-v6.h index c381e38..69ab0f8 100644 --- a/sysdep/cf/linux-v6.h +++ b/sysdep/cf/linux-v6.h @@ -1,7 +1,7 @@ /* - * Configuration for Linux 2.1 based systems running IPv6 + * Configuration for Linux 2.2 based systems running IPv6 * - * (c) 1998 Martin Mares <mj@ucw.cz> + * (c) 1998--1999 Martin Mares <mj@ucw.cz> * * Can be freely distributed and used under the terms of the GNU GPL. */ @@ -9,12 +9,11 @@ #define IPV6 #define CONFIG_TOS -#define CONFIG_MULTIPATH -#define CONFIG_NETLINK #define CONFIG_AUTO_ROUTES #define CONFIG_ALL_MULTICAST /* +Link: sysdep/linux/netlink Link: sysdep/linux Link: sysdep/unix */ |