--- a-compcache 2013-07-22 12:19:17.000000000 +0200 +++ b-compcache 2013-07-22 12:19:17.000000000 +0200 @@ -119,9 +119,10 @@ # find total amount of available ram TOTAL_RAM=\$( grep MemTotal /proc/meminfo |tr -d ': [A-Z][a-z]') -# Do not use compcache on the liveCD if we have more than 512M +# Do not use compcache on the liveCD if we have more than 2048M + if [ "\${BOOT}" = "casper" ]; then - if [ "\${TOTAL_RAM}" -gt 524288 ]; then + if [ "\${TOTAL_RAM}" -gt 2097152 ]; then exit 0 fi fi