1 | menu "Configuration" |
2 | depends on PACKAGE_kmod-compcache |
3 | |
4 | config COMPCACHE_ENABLE |
5 | bool "enabled on boot" |
6 | default n |
7 | help |
8 | Enables compressed ram swap devices. |
9 | |
10 | config COMPCACHE_RAM_REPORTED |
11 | string "swap space reported to kernel in kb" |
12 | default "2048" |
13 | help |
14 | This is the amount of memory that will be reported |
15 | to the kernel as swap. The real ram in use will differ, |
16 | because of lzo compression. |
17 | Example: |
18 | 16 MB = 2048 KB |
19 | 32 MB = 4098 KB |
20 | |
21 | config COMPCACHE_BACKUP_DEV |
22 | string "Backup device for compcache" |
23 | default "" |
24 | help |
25 | Compcache will use this as a backup device for swap. |
26 | Example: |
27 | /dev/sda5 |
28 | |
29 | endmenu |
30 | |