Yeah I know... I did the logcat just after boot, while the phone was asking for my PIN.
And I have a lot of apps...
And I have a lot of apps...
cat /etc/init.d/05mountsd
#!/system/bin/sh
#
# mount ext partition from sd card
BB="logwrapper busybox";
if [ "$SD_EXT_DIRECTORY" = "" ];
then
SD_EXT_DIRECTORY=/sd-ext;
fi;
# find SD Card
for MMC_NUM in `seq 0 9`;
do
MMC_TYPE=`cat /sys/block/mmcblk$MMC_NUM/device/type`
if [ "$MMC_TYPE" = "SD" ];
then
# 2nd partition of sdcard should be the sd-ext if exist
SD_EXT_PART=/dev/block/mmcblk${MMC_NUM}p2
break
fi
done
if [ -b "$SD_EXT_PART" ];
then
log -p i -t mountsd "Checking filesystems..";
# fsck the sdcard filesystem first
if [ -x `which e2fsck` ];
then
e2fsck -y $SD_EXT_PART
e2fsk_exitcode=$?
else
echo "executable e2fsck not found, assuming no filesystem errors"
e2fsk_exitcode=0
fi
# set property with exit code in case an error occurs
setprop cm.e2fsck.errors $e2fsk_exitcode;
if [ "$e2fsk_exitcode" -lt 2 ];
then
# mount and set perms
$BB mount -o noatime,nodiratime,barrier=1 -t ext3 $SD_EXT_PART $SD_EXT_DIRECTORY;
if [ "$?" = 0 ];
then
$BB chown 1000:1000 $SD_EXT_DIRECTORY;
$BB chmod 771 $SD_EXT_DIRECTORY;
log -p i -t mountsd "$SD_EXT_DIRECTORY successfully mounted";
else
log -p e -t mountsd "Unable to mount filesystem for $SD_EXT_DIRECTORY!";
fi
else
log -p e -t mountsd "Unable to repair filesystem, disabling apps2sd";
fi
fi
Anybody? I'm really lost here...Having trouble getting data2ext to work... Links2SD works just fine...
http://pastebin.com/qEbG1G0e
Can anyone help me out with my pastebin posted above?
Looks like to me like a syntax error in the script you're using. Did you edit it?Anybody? I'm really lost here...
Thank you for the reply! The only thing I tried to edit was the 'data$' part that was described on pg 40. I will download the file again and try fresh and post another logcat if issues arise.Looks like to me like a syntax error in the script you're using. Did you edit it?
Sent from my Legend using XDA App
What phone, what rom?This now:
http://pastebin.com/jvxaqPCX
After fresh wipe and following the instructions on first page using the zip included on the most recent response to my question. Please help![]()
LG optimus s. Reborn ROM. Xionia Kernel (which supports ext2, ext3, and ext4)What phone, what rom?
Sent from my Legend using XDA App
e2fsck isn't included in the rom, contact the developer.LG optimus s. Reborn ROM. Xionia Kernel (which supports ext2, ext3, and ext4)
Thank you. Is there a way for me to add it without having to bother them? Something I can flash?e2fsck isn't included in the rom, contact the developer.
Sent from my Legend using XDA App
Call e2fsck while the phone is running, what happens?Thank you. Is there a way for me to add it without having to bother them? Something I can flash?
Maybe helpful, maybe not:
When I'm typing the adb commands it doesn't return any errors.... I'm talking of the commands listed on the first page. I can remember the tune commands return a version number. I can't remember exactly what the e2 command returned.
lol. e2fsck: not foundCall e2fsck while the phone is running, what happens?
Sent from my Legend using XDA App
Find busybox installer on the market. Use it.lol. e2fsck: not found
something i can install on my own? i can pack a flashable zip, and am doing a quick search on google but would like to hear from you what you think![]()
Hmm... I have an exam tomorrow, I'm gonna sleep. I'll have a think tomorrow.My results when typing commands from first page in recovery mode:
http://pastebin.com/Hsb1WS7P
When phone is booted, e2fsck returns nothing though...