Here is Fast Superuser based on Chainfire’s latest (free) version of SuperSU (v1.25, March 2013):
Link (1MB): http://www.mediafire.com/?dg5hh68l5rg5559
Simply CWM-flash, reboot and enjoy an even faster SuperLite for your Atrix 4g!
Root apps like the popular ones shown below launch much faster than with SuperLite’s stock Superuser --- and they may be less prone to force close. Better security too, I think.
- ROM Manager
- Titanium Backup
- Root Explorer
- Terminal Emulator
- SManager (Script Manager)
- SetCPU
- ADB (Android Debug Bridge)
It is important to note here that the SuperSU app found on Google Play is actually a superuser
management app, in contrast to the “su” binary which is the
engine. Thus the latter is necessary to achieve superuser on a rooted device. My flashable zip includes both SuperSU and the su binary.
Also, my flashable zip is unique in that the script command code invokes regular expressions (pattern recognition) to find and remove any existing versions of Superuser and related files from the /system, /cache, /data and /preinstall partitions prior to flashing the new, more efficient Superuser.apk and su binaries:
Code:
#!/system/bin/sh
# Find and remove all instances of superuser in ROM
# sendust7 @ xda-developers
MOUNT_DEVICE=$1
MOUNT_POINT=$2
if [ -d "${MOUNT_POINT}" ]
then
echo "Directory: ${MOUNT_POINT} exists (OK)"
else
mkdir ${MOUNT_POINT}
fi
mount -t ext4 ${MOUNT_DEVICE} ${MOUNT_POINT}
/sbin/busybox find ${MOUNT_POINT} -name su -exec rm {} \;
/sbin/busybox find ${MOUNT_POINT} -name *[Ss][Uu]per[Ss][Uu]* -exec rm -r {} \;
/sbin/busybox find ${MOUNT_POINT} -name *[Ss][Uu]per[Uu][Ss]* -exec rm -r {} \;
umount ${MOUNT_POINT}
Fast Superuser is a good candidate for my next version of SuperLite.
And Chainfire offers a “no-nag” version of SuperSU which disables the “please upgrade” prompt. He simply requests that ROM developers include a minor advertisement in the ROM description, e.g. "Powered by SuperSU" or "Please support SuperSU"
Enjoy
Standard disclaimers apply.
Kudos to Chainfire.
http://www.chainfire.eu/