I've previously covered some to the modifications required to improve Meego on the Acer Aspire One. Having just reinstalled Meego 1.1 (note, the the no easy upgrade form 1.0, the recommended approach is a fresh install), here is a summary of the Meego AA1 tweeks.
Enable right hand side SDHC Card Reader
Add the following line to /etc/rc.local
Reduce SSD disk IO use tmpfs
Enable right hand side SDHC Card Reader
Add the following line to /etc/rc.local
/sbin/modprobe pciehp pciehp_force=1 > /dev/null 2>&1
Fix suspend issue when SDHC cards are mounted
At the following line to beginning of /usr/sbin/pm-suspend
umount /dev/mmcblk*p*
Changes bfrfs settings for SSD usage
Increase battery life
Add the lines suggested in the "Increase Battery Life" section at https://help.ubuntu.com/community/AA1/Using to the end of /etc/rc.local
At the following line to beginning of /usr/sbin/pm-suspend
umount /dev/mmcblk*p*
Changes bfrfs settings for SSD usage
Modify /etc/fstab to change realatime to noatime and add the btrfs option ssd_spread
/dev/sda2 / btrfs defaults,noatime,nodatasum,ssd_spread 1 1
Reduce SSD disk IO use tmpfs
To reduce the disk IO use tmpfs for directories /tmp /var/tmp and /var/logs
Add the following lines to /etc/fstab
tmpfs /var/log tmpfs defaults 0 0
tmpfs /tmp tmpfs defaults 0 0
tmpfs /var/tmp tmpfs defaults 0 0
Put the browser cache in tmpfs
You can also put the Google Chrome or Chromium browser cache in tmpfs to prevent SSD IO that can slow down the AA1. Add the following line to /etc/fstab replacing the username with your login id
tmpfs /home/username/.cache/google-chrome/Cache tmpfs defaults 0 0
Note: the directory location will be different for the Chromium version of Meego
You will want to clear out the existing cache data before rebooting
cd /home/username/.cache/google-chrome/Cache
rm -Rf *
Comments