Congratulations to Cicadaman & co. for getting Froyo running on the Nook Color! Visit the nook Color portal!
See Rooting new hardware FIRST if you have a nook original with a 1003* serial# or above.
NookColor Installing Busybox
From nookDevs
Part of the NookColor portal
|
BusyBox is a single multicall binary that packages the functionality of most widely used standard Unix tools. Follow the simple steps below to install BusyBox on rooted Android device.
BusyBox combines tiny versions of many common UNIX utilities into a single small executable. It provides replacements for most of the utilities you usually find in GNU fileutils, shellutils, etc. BusyBox provides a fairly complete environment for any small or embedded system.
How to Install BusyBox on rooted NookColor
Note: You must have already installed su for this to work.
|
- Download BusyBox for arm61 from here: Binary from busybox.net.
- Reboot your android device normally and plug in to your PC.
- Open the command prompt/console and cd to the SDK/tools dir. At the prompt:
- adb shell
- su
- mount -o remount,rw /dev/block/mmcblk0p5 /system
- exit
- exit
- (we have to exit twice because we were in su.)
- Now, you're out of the adb shell, back to your command prompt, we're going to adb to push our busybox binary onto the nook.
- adb push busybox /data/local
- And now, back to the shell to finish the install.
- adb shell
- su
- mount -o remount,rw /dev/block/mmcblk0p5 /system
- cd /system
- mkdir /system/xbin
- Now, we use busybox to copy itself into /system/xbin because the adb shell lacks a cp command.
- cd /data/local
- chmod 755 busybox
- /data/local/busybox cp /data/local/busybox /system/xbin/busybox
- Now, we use busybox to install itself, and make the symlinks to the systems commands.
- cd /system/xbin
- chmod 755 busybox
- ./busybox --install -s /system/xbin
- Now, we don't need to copy we pushed into /data/local any more...
- rm /data/local/busybox
- Then exit and reboot:
- reboot