U
u.k-f
Gast
- Themenstarter
- #41
Can you please do a check on the bootet tablet:
please list the result of the following statements (either from adb or from terminal inside the Tab) (su is not needed from adb):
regards Uwe
Der ursprüngliche Beitrag von 00:35 Uhr wurde um 00:49 Uhr ergänzt:
Can you also please post the updater-script you are using and the location where your CWM recovery is from?
In the updater-script I found in Acer Stock ROM, I find the following lines:
By description of Edify-Language this should result in formatting and mounting device '/dev/block/platform/sdhci-tegra.3/by-name/APP' of Partition Type EMMC and FS-Type ext4 b to mount-point /system, but not to mountpoint /emmc (as specified in the log).
Did you you change the update-binary?
Kind regards Uwe
Der ursprüngliche Beitrag von 00:49 Uhr wurde um 00:52 Uhr ergänzt:
BTW: You should not try to find solutions posted for other kinds of tablets than the A210/A211, and apply them to your device, this will probably make the situation worse.
Kind regards Uwe
Der ursprüngliche Beitrag von 00:52 Uhr wurde um 01:01 Uhr ergänzt:
An other point is the format-command used in the script.
In any reference of edify language, there are only three parameters in the format-command, not five as in the script from acer. I guess, acer is using a very especial update-binary.
Maybe it might be senceful, remove the last both parameters from the format command:
You can try changing
to
kind regards Uwe
please list the result of the following statements (either from adb or from terminal inside the Tab) (su is not needed from adb):
Code:
su
ls -l /dev/block/platform/sdhci-tegra.3/by-name/
Code:
su
mount
regards Uwe
Der ursprüngliche Beitrag von 00:35 Uhr wurde um 00:49 Uhr ergänzt:
Can you also please post the updater-script you are using and the location where your CWM recovery is from?
In the updater-script I found in Acer Stock ROM, I find the following lines:
Code:
format("ext4", "EMMC", "/dev/block/platform/sdhci-tegra.3/by-name/APP", "0", "/system");
mount("ext4", "EMMC", "/dev/block/platform/sdhci-tegra.3/by-name/APP", "/system");
By description of Edify-Language this should result in formatting and mounting device '/dev/block/platform/sdhci-tegra.3/by-name/APP' of Partition Type EMMC and FS-Type ext4 b to mount-point /system, but not to mountpoint /emmc (as specified in the log).
Did you you change the update-binary?
Kind regards Uwe
Der ursprüngliche Beitrag von 00:49 Uhr wurde um 00:52 Uhr ergänzt:
BTW: You should not try to find solutions posted for other kinds of tablets than the A210/A211, and apply them to your device, this will probably make the situation worse.
Kind regards Uwe
Der ursprüngliche Beitrag von 00:52 Uhr wurde um 01:01 Uhr ergänzt:
An other point is the format-command used in the script.
In any reference of edify language, there are only three parameters in the format-command, not five as in the script from acer. I guess, acer is using a very especial update-binary.
Maybe it might be senceful, remove the last both parameters from the format command:
You can try changing
Code:
format("ext4", "EMMC", "/dev/block/platform/sdhci-tegra.3/by-name/APP", "0", "/system");
Code:
format("ext4", "EMMC", "/dev/block/platform/sdhci-tegra.3/by-name/APP");