Revision 1108,
1.0 KB
checked in by daisuke, 13 years ago
(diff) |
import initscripts-8.90.6 from internal cvs repository
|
Line | |
---|
1 | # Kernel sysctl configuration file for Vine Linux/ppc |
---|
2 | # |
---|
3 | # For binary values, 0 is disabled, 1 is enabled. See sysctl(8) for |
---|
4 | # more details. |
---|
5 | |
---|
6 | # Controls IP packet forwarding |
---|
7 | net.ipv4.ip_forward = 0 |
---|
8 | |
---|
9 | # Controls source route verification |
---|
10 | net.ipv4.conf.default.rp_filter = 1 |
---|
11 | |
---|
12 | # Do not accept source routing |
---|
13 | net.ipv4.conf.default.accept_source_route = 0 |
---|
14 | |
---|
15 | # Controls the System Request debugging functionality of the kernel |
---|
16 | kernel.sysrq = 0 |
---|
17 | |
---|
18 | # SYN flood protection (not enabled by default) |
---|
19 | net.ipv4.tcp_syncookies = 1 |
---|
20 | |
---|
21 | # Controls whether core dumps will append the PID to the core filename. |
---|
22 | # Useful for debugging multi-threaded applications. |
---|
23 | kernel.core_uses_pid = 1 |
---|
24 | |
---|
25 | # Controls mouse-key emulation feature |
---|
26 | # (most pmacs have one-button mouse by default) |
---|
27 | dev.mac_hid.mouse_button_emulation = 1 |
---|
28 | |
---|
29 | # Set the middle/right button emulation keycode |
---|
30 | # Below we set F11 and F12 for middle and right mouse buttons respectively |
---|
31 | # (note that you have to use values as seen in <linux/input.h>) |
---|
32 | dev.mac_hid.mouse_button2_keycode = 87 |
---|
33 | dev.mac_hid.mouse_button3_keycode = 88 |
---|
Note: See
TracBrowser
for help on using the repository browser.