attempted to repack boot image with a new adbd executable and the following modified default.prop
now try to flash.....hangs and does not complete.....grrrrr
power button no workee....long press fails
hit control + c to stop fastboot fails
remove data cable and put it back in with various power button succeeds and check default.prop on normal bootup....no blinking change.....grrrrr
###################
now we concentrate on adb only
THERE MY FRIENDS IS THE ERROR!
su is a sym link to vold and that is not right
No sir
grrrrrr
now to see if I can brick it by pushing thru adb the apk and su executable
I am not sure so posting this first so you can have a laugh at my expense
we need a laugh
still no joy
Quote:#
# ADDITIONAL_DEFAULT_PROPERTIES
#
ro.secure=0
ro.adb.secure=0
persist.service.adb.enable=1
ro.debuggable=1
persist.sys.usb.config=adb,mass_storage
# above attempts insecure mode
ro.allow.mock.location=0
persist.mtk.aee.aed=on
persist.service.acm.enable=0
ro.mount.fs=UBIFS
ro.persist.partition.support=no
now try to flash.....hangs and does not complete.....grrrrr
Code:
adb devices
adb reboot bootloader (puts me in fastbooot)
fastboot devices
fastboot flash boot boot2.img
# hangs it is supposed to say succeeded
power button no workee....long press fails
hit control + c to stop fastboot fails
remove data cable and put it back in with various power button succeeds and check default.prop on normal bootup....no blinking change.....grrrrr
###################
now we concentrate on adb only
Code:
adb devices
adb remount
##########(result)remount succeeded.......WOO HOO
adb shell ls -al /system/xbin
-rwxr-xr-x root shell 17912 2014-07-05 15:44 BGW
-rw------- root root 1062992 2014-09-11 20:50 busybox
-rwxr-xr-x root root 113036 2014-09-11 22:36 daemonsu
-rwxr-xr-x root shell 59752 2014-07-05 15:43 dexdump
-rwxr-xr-x root shell 34572 2014-07-05 15:44 libmnlp_mt6571
-rwxr-xr-x root shell 30196 2014-07-05 15:44 mnld
-rwxr-xr-x root shell 9440 2014-07-05 15:44 showmap
lrwxrwxrwx root root 2014-09-12 18:52 su -> /system/bin/vold
-rwxr-xr-x root root 624204 2014-07-05 15:44 tcpdump
THERE MY FRIENDS IS THE ERROR!
su is a sym link to vold and that is not right
No sir
grrrrrr
now to see if I can brick it by pushing thru adb the apk and su executable
I am not sure so posting this first so you can have a laugh at my expense
we need a laugh
Code:
adb devices
adb remount
remount succeeded
adb shell rm /system/xbin/su
adb shell rm /system/xbin/busybox
adb push su /system/xbin/su
8773 KB/s (113036 bytes in 0.012s)
adb push Superuser.apk /system/app/Superuser.apk
9301 KB/s (2278361 bytes in 0.239s)
adb push busybox /system/xbin/busybox
9543 KB/s (1165484 bytes in 0.119s)
adb shell chmod 644 /system/app/Superuser.apk
adb shell chmod 755 /system/xbin/busybox
adb shell chown root.shell /system/xbin/busybox
adb shell chown root.shell /system/xbin/daemonsu
adb shell chown root.shell /system/xbin/su
adb shell chmod 6755 /system/xbin/su
adb shell ls -al /system/xbin
Quote:-rwxr-xr-x root shell 17912 2014-07-05 15:44 BGW
-rwxr-xr-x root shell 1165484 2014-06-13 09:08 busybox
-rwxr-xr-x root shell 113036 2014-09-11 22:36 daemonsu
-rwxr-xr-x root shell 59752 2014-07-05 15:43 dexdump
-rwxr-xr-x root shell 34572 2014-07-05 15:44 libmnlp_mt6571
-rwxr-xr-x root shell 30196 2014-07-05 15:44 mnld
-rwxr-xr-x root shell 9440 2014-07-05 15:44 showmap
-rwsr-sr-x root shell 113036 2008-02-29 04:33 su
-rwxr-xr-x root root 624204 2014-07-05 15:44 tcpdump
Code:
adb shell /system/xbin/su --install
adb reboot
still no joy