diff options
Diffstat (limited to '')
-rw-r--r-- | recovery.cpp | 7 |
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"); |