打印

[智能電話] 其實都幾搞笑, 機內memory慢過張SD card

引用:
原帖由 BlackBird 於 2011-6-28 18:35 發表

唔洗讀得入
你而家只係係/cache入面加symlink
而個destination係果時讀唔讀到根本唔重要, 但你個sd-ext一定要有dalvik-cache 哩個destination folder
係咪每次flash完rom都要打過

TOP

黑雀用個rom 係唔係cm7 ?

TOP

引用:
原帖由 真.飛鳥 於 2011-6-28 18:39 發表

係咪每次flash完rom都要打過
無wipe cache的話應該唔洗
"All animals are equal, but some animals are more equal than others."

TOP

引用:
原帖由 刺青 於 2011-6-28 18:40 發表
黑雀用個rom 係唔係cm7 ?
CM7 YellowBird Edition
"All animals are equal, but some animals are more equal than others."

TOP

引用:
原帖由 BlackBird 於 2011-6-28 18:40 發表

無wipe cache的話應該唔洗
引用:
#!/system/bin/sh


insmod /system/lib/modules/jbd2.ko
insmod /system/lib/modules/ext2.ko
insmod /system/lib/modules/ext3.ko
insmod /system/lib/modules/ext4.ko

if [ ! -d /sd-ext ];
then
        busybox mount -o rw,remount /
        install -m 774 -o 1000 -g 1000 -d /sd-ext
        busybox mount -o ro,remount /
fi
mkdir /sd-ext
busybox chown 1000:1000 /sd-ext
busybox chmod 777 /sd-ext
/system/xbin/mount -t auto /dev/block/mmcblk0p2 /sd-ext

if [ -e /dev/block/mmcblk0p2 ]; then
        if [ -d /data/app ]; then
                mkdir /sd-ext/app
                chmod 777 /sd-ext/app
                cp -a /data/app/* /sd-ext/app/
                rm -r /data/app
                ln -s /sd-ext/app /data/app
        fi
        if [ -d /data/app-private ]; then
                mkdir /sd-ext/app-private
                chmod 777 /sd-ext/app-private
                cp -a /data/app-private/* /sd-ext/app-private/
                rm -r /data/app-private
                ln -s /sd-ext/app-private /data/app-private
        fi
fi
不如直接起段 code 到加番 , 變做 auto dav2ext

TOP

引用:
#!/system/bin/sh


insmod /system/lib/modules/jbd2.ko
insmod /system/lib/modules/ext2.ko
insmod /system/lib/modules/ext3.ko
insmod /system/lib/modules/ext4.ko

if [ ! -d /sd-ext ];
then
        busybox mount -o rw,remount /
        install -m 774 -o 1000 -g 1000 -d /sd-ext
        busybox mount -o ro,remount /
fi
mkdir /sd-ext
busybox chown 1000:1000 /sd-ext
busybox chmod 777 /sd-ext
/system/xbin/mount -t auto /dev/block/mmcblk0p2 /sd-ext

if [ -e /dev/block/mmcblk0p2 ]; then
        if [ -d /data/app ]; then
                mkdir /sd-ext/app
                chmod 777 /sd-ext/app
                cp -a /data/app/* /sd-ext/app/
                rm -r /data/app
                ln -s /sd-ext/app /data/app
        fi
        if [ -d /data/app-private ]; then
                mkdir /sd-ext/app-private
                chmod 777 /sd-ext/app-private
                cp -a /data/app-private/* /sd-ext/app-private/
                rm -r /data/app-private
                ln -s /sd-ext/app-private /data/app-private
        fi
        if [ -d /data/dalvik-cache ]; then
                mkdir /sd-ext/dalvik-cache
                chmod 777 /sd-ext/dalvik-cache
                cp -a /data/dalvik-cache/* /sd-ext/dalvik-cache/
                rm -r /data/dalvik-cache
                ln -s /sd-ext/dalvik-cache /data/dalvik-cache
        fi

fi
照計應該係咁既...

TOP

引用:
原帖由 真.飛鳥 於 2011-6-28 18:47 發表

照計應該係咁既...
我唔識丫嘛

不過唔係data/dalvik-cache
而係/cache/dalvik-cache

[ 本帖最後由 BlackBird 於 2011-6-28 19:00 編輯 ]
"All animals are equal, but some animals are more equal than others."

TOP

引用:
原帖由 BlackBird 於 2011-6-28 18:58 發表

我唔識丫嘛
咪一樣 ...

TOP

引用:
原帖由 真.飛鳥 於 2011-6-28 18:59 發表

咪一樣 ...
打錯source folder啦
"All animals are equal, but some animals are more equal than others."

TOP

引用:
原帖由 BlackBird 於 2011-6-28 19:00 發表

打錯source folder啦
我果個係起 data folder內

我based on MIUI rom 去寫
http://forum.xda-developers.com/showthread.php?t=1090899

TOP

引用:
原帖由 真.飛鳥 於 2011-6-28 19:03 發表

我果個係起 data folder內

我based on MIUI rom 去寫
http://forum.xda-developers.com/showthread.php?t=1090899
no

兩邊都會有dalvik-cache folder
/cache果個係for system apps
/data果個係普通app
"All animals are equal, but some animals are more equal than others."

TOP

引用:
原帖由 BlackBird 於 2011-6-28 19:06 發表

no

兩邊都會有dalvik-cache folder
/cache果個係for system apps
/data果個係普通app
cache 果度唔見有喎

TOP

引用:
原帖由 真.飛鳥 於 2011-6-28 19:08 發表

cache 果度唔見有喎

cache partition usage?
"All animals are equal, but some animals are more equal than others."

TOP

引用:
原帖由 BlackBird 於 2011-6-28 19:09 發表


cache partition usage?
1.57MB used, 104.43MB free

TOP

段code無效 , 頂

TOP