Create busybox symlinks during compile
diff --git a/recovery.cpp b/recovery.cpp
index ea085d1..2459650 100644
--- a/recovery.cpp
+++ b/recovery.cpp
@@ -810,10 +810,8 @@
 	DataManager_LoadDefaults();
 	printf("Starting the UI...");
 	gui_init();
-	printf("=> Installing busybox into /sbin\n");
-	system("/sbin/bbinstall.sh"); // Let's install busybox
 	printf("=> Linking mtab\n");
-	system("ln -s /proc/mounts /etc/mtab"); // And link mtab for mke2fs
+	system("ln -s /proc/mounts /etc/mtab"); // Link mtab for mke2fs
 	printf("=> Processing recovery.fstab\n");
 	if (!PartitionManager.Process_Fstab("/etc/recovery.fstab", 1)) {
 		LOGE("Failing out of recovery due to problem with recovery.fstab.\n");