summaryrefslogtreecommitdiffstats
path: root/recovery.cpp
diff options
context:
space:
mode:
authorDees_Troy <dees_troy@teamw.in>2012-09-27 21:00:27 +0200
committerDees_Troy <dees_troy@teamw.in>2012-09-27 21:00:27 +0200
commit22ad2cc9f7d92f9a8b20f33e4082c3d6af4dcb00 (patch)
tree05e71ad60192dc4d61a299562f6d189c4d8c360d /recovery.cpp
parentUpdate sdcard partitioning to C++ (diff)
downloadandroid_bootable_recovery-22ad2cc9f7d92f9a8b20f33e4082c3d6af4dcb00.tar
android_bootable_recovery-22ad2cc9f7d92f9a8b20f33e4082c3d6af4dcb00.tar.gz
android_bootable_recovery-22ad2cc9f7d92f9a8b20f33e4082c3d6af4dcb00.tar.bz2
android_bootable_recovery-22ad2cc9f7d92f9a8b20f33e4082c3d6af4dcb00.tar.lz
android_bootable_recovery-22ad2cc9f7d92f9a8b20f33e4082c3d6af4dcb00.tar.xz
android_bootable_recovery-22ad2cc9f7d92f9a8b20f33e4082c3d6af4dcb00.tar.zst
android_bootable_recovery-22ad2cc9f7d92f9a8b20f33e4082c3d6af4dcb00.zip
Diffstat (limited to '')
-rw-r--r--recovery.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/recovery.cpp b/recovery.cpp
index 1e1d9a952..3c4447274 100644
--- a/recovery.cpp
+++ b/recovery.cpp
@@ -809,8 +809,11 @@ main(int argc, char **argv) {
DataManager_LoadDefaults();
printf("Starting the UI...");
gui_init();
- printf("=> Installing busybox into /sbin\n");
- system("/sbin/bbinstall.sh"); // Let's install busybox
+ //printf("=> Installing busybox into /sbin\n");
+ //system("/sbin/bbinstall.sh"); // Let's install busybox
+ printf("Symlinking gzip to pigz\n");
+ system("ln -sf /sbin/pigz /sbin/gzip");
+ system("ln -sf /sbin/unpigz /sbin/gunzip");
printf("=> Linking mtab\n");
system("ln -s /proc/mounts /etc/mtab"); // And link mtab for mke2fs
printf("=> Processing recovery.fstab\n");