Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 1 | FOLLOW THESE SIMPLE GUIDELINES: |
| 2 | ------------------------------- |
| 3 | |
| 4 | If /usr/src/linux contains the patched kernel for ebtables: |
| 5 | %make install |
| 6 | Otherwise: |
| 7 | %make KERNEL_DIR=<<where-the-patched-kernel-is>> install |
| 8 | |
| 9 | optional: |
| 10 | If your /usr/include/linux directory is a symbolic link, use the SYMLINK=y |
| 11 | option. When unsure, don't use this. If the cp program produces errors |
| 12 | when executing make install, use this option. |
| 13 | |
| 14 | WHAT GETS INSTALLED? |
| 15 | -------------------- |
| 16 | |
| 17 | - The needed kernel headers are placed in /usr/include/linux/netfilter_bridge/ |
| 18 | That's why it needs the KERNEL_DIR. If the SYMLINK=y option is supplied, |
| 19 | /usr/include/linux will be a symbolic link. |
| 20 | - The ebtables manual gets installed in /usr/local/man/man8 |
| 21 | To put the manual somewhere else, include MANDIR=<<man-path/man>> as |
| 22 | option on the command line. |
| 23 | The Makefile will append /man8/ebtables.8. |
| 24 | - ethertypes is placed in /etc/ |
Bart De Schuymer | 3289054 | 2002-07-10 20:09:56 +0000 | [diff] [blame] | 25 | - the userspace program ebtables is compiled and the executable is copied |
Bart De Schuymer | f57f50f | 2002-08-29 16:52:36 +0000 | [diff] [blame] | 26 | to /sbin/ebtables. |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 27 | |
| 28 | That's all |