Coby Kyros MID1042 Problem

shell@android:/ $ busybox df -h
busybox df -h
Filesystem Size Used Available Use% Mounted on
tmpfs 407.1M 44.0K 407.1M 0% /dev
tmpfs 407.1M 0 407.1M 0% /mnt/asec
tmpfs 407.1M 0 407.1M 0% /mnt/obb
/dev/block/nandd 252.0M 251.9M 24.0K 100% /system
/dev/block/nande 2.0G 425.9M 1.6G 21% /data
/dev/block/nandh 503.9M 8.4M 495.6M 2% /cache
/dev/block/nandi 988.0K 4.0K 984.0K 0% /mnt/private
/dev/block/vold/179:1
29.8G 3.0M 29.8G 0% /mnt/extsd
/dev/block/vold/93:81
4.3G 349.1M 4.0G 8% /mnt/sdcard
df: /mnt/secure/asec: Permission denied
/dev/block/dm-0 2.0M 340.0K 1.7M 16% /mnt/asec/com.gau.go.lau
ncherex.theme.gowidget.steampunkcalendar-1
1|shell@android:/ $
 
Ok I have made you another one, this one frees up enough space to allow root to work.

root_allwinner_signed.zip

as you can see from your output, your system is 100%

/dev/block/nandd 252.0M 251.9M 24.0K 100% /system

So I had to free up space for su binary. you should be rooted this time with room to spare.
 
Didn't work.

Here's the results.


shell@android:/ $ su
su
/system/bin/sh: su: not found
127|shell@android:/ $ busybox df -h
busybox df -h
Filesystem Size Used Available Use% Mounted on
tmpfs 407.1M 44.0K 407.1M 0% /dev
tmpfs 407.1M 0 407.1M 0% /mnt/asec
tmpfs 407.1M 0 407.1M 0% /mnt/obb
/dev/block/nandd 252.0M 251.9M 24.0K 100% /system
/dev/block/nande 2.0G 380.0M 1.6G 19% /data
/dev/block/nandh 503.9M 8.4M 495.6M 2% /cache
/dev/block/nandi 988.0K 4.0K 984.0K 0% /mnt/private
/dev/block/vold/179:1
29.8G 3.0M 29.8G 0% /mnt/extsd
/dev/block/vold/93:81
4.3G 417.1M 3.9G 9% /mnt/sdcard
df: /mnt/secure/asec: Permission denied
/dev/block/dm-0 7.1M 5.3M 1.8M 75% /mnt/asec/com.pinterest-
1
/dev/block/dm-1 2.0M 340.0K 1.7M 16% /mnt/asec/com.gau.go.lau
ncherex.theme.gowidget.steampunkcalendar-1
/dev/block/dm-2 4.1M 2.2M 1.9M 54% /mnt/asec/me.onemobile.a
ndroid-1
/dev/block/dm-3 13.2M 11.4M 1.8M 87% /mnt/asec/com.gau.go.lau
ncherex.theme.steampunk-1
/dev/block/dm-4 43.6M 30.8M 12.8M 71% /mnt/asec/com.opera.brow
ser-1
1|shell@android:/ $
 
In /system/preinstall there is a file named Adobe_Flash_Player_11.1.115.6.apk that I think can be safely removed.
 
I've made a backup of the file. So I can always reinstall afterward. I just need a script to knock it out of there.
 
Damnit...no joy....same results.

I checked the preinstall and the file is still there.
 
Is there any way we can force an output file for the commands to show us any errors it's getting?
 
Also wondering here....is it possible to put the delete commands before the package extraction? I'm just wondering if the package extraction is erroring and causing the rest to fall flat.
 
make sure update script looks like this, cause I think mediafire is misfiring.

ui_print("Root and Gapps");
show_progress(0.200000, 0);
ui_print("[ ] Mounting SYSTEM");
mount("ext4", "EMMC", "/dev/block/nandd", "/system");



delete("/system/xbin/su");
delete("/system/bin/su");
delete("/system/app/Superuser.apk");
delete("/system/vendor/modules/8192cu.ko");
delete("/system/vendor/modules/ar6003.ko");
delete("/system/vendor/modules/bcm40183_dhd.ko");
delete("/system/preinstall/Adobe_Flash_Player_11.1.115.6.apk");

show_progress(0.300000, 0);
ui_print("[ ] Copying files to SYSTEM");
package_extract_dir("system", "/system");
show_progress(0.200000, 10);



ui_print("[ ] Setting permissions to SYSTEM");
set_perm_recursive(0, 0, 0755, 0644, "/system/app");
set_perm(0, 0, 06755, "/system/app/Superuser.apk");
set_perm(0, 0, 06755, "/system/xbin/su");
#set_perm(0, 0, 755, "/system/bin/busybox");
symlink("/system/xbin/su", "/system/bin/su");
show_progress(0.100000, 0);

ui_print("[ ] Unmounting SYSTEM");
unmount("/system");

ui_print("");
ui_print("[*] Completed!");
ui_print("");
 
Back
Top