Config.in 639 B

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