diff options
author | Antoine Ginies <aginies@mandriva.com> | 2010-02-04 12:43:21 +0000 |
---|---|---|
committer | Antoine Ginies <aginies@mandriva.com> | 2010-02-04 12:43:21 +0000 |
commit | 22d00c987416645ea1220b8b4c3950150ca30d68 (patch) | |
tree | be2c9fa711c4e0b4549678d45838ea875dd87c88 /mdk-stage1 | |
parent | c879f03f93a6c906e59e8999edadf3f3fb3958e4 (diff) | |
download | drakx-22d00c987416645ea1220b8b4c3950150ca30d68.tar drakx-22d00c987416645ea1220b8b4c3950150ca30d68.tar.gz drakx-22d00c987416645ea1220b8b4c3950150ca30d68.tar.bz2 drakx-22d00c987416645ea1220b8b4c3950150ca30d68.tar.xz drakx-22d00c987416645ea1220b8b4c3950150ca30d68.zip |
fix options used by tar in ka method (it's a busybox tar), don't close stderr
Diffstat (limited to 'mdk-stage1')
-rw-r--r-- | mdk-stage1/ka.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/mdk-stage1/ka.c b/mdk-stage1/ka.c index 59fc93e24..8d43ae9a7 100644 --- a/mdk-stage1/ka.c +++ b/mdk-stage1/ka.c @@ -44,14 +44,16 @@ static void my_pause(void) { static enum return_type ka_wait_for_stage2(int count) { char * ramdisk = "/dev/ram3"; /* warning, verify that this file exists in the initrd*/ - char * ka_launch[] = { "/ka/ka-d-client", "-w","-s","getstage2","-e","(cd /tmp/stage2; tar --extract --read-full-records --same-permissions --numeric-owner --sparse --file - )", NULL }; /* The command line for ka_launch */ + char * ka_launch[] = { "/ka/ka-d-client", "-w","-s","getstage2","-e","(cd /tmp/stage2; tar -x -f - )", NULL }; /* The command line for ka_launch */ char * mkfs_launch[] = { "/sbin/mke2fs", ramdisk, NULL}; /* The mkfs command for formating the ramdisk */ log_message("KA: Preparing to receive stage 2...."); + wait_message("Preparing to receive stage 2"); + int pida, wait_status; if (!(pida = fork())) { /* Forking current process for running mkfs */ - close(1); + //close(1); close(2); execv(mkfs_launch[0], mkfs_launch); /* Formating the ramdisk */ printf("KA: Can't execute %s\n<press Enter>\n", mkfs_launch[0]); @@ -59,10 +61,13 @@ static enum return_type ka_wait_for_stage2(int count) return KAERR_CANTFORK; } while (wait4(-1, &wait_status, 0, NULL) != pida) {}; /* Waiting the end of mkfs */ + remove_wait_message(); + wait_message("Mounting /dev/ram3 at %s", STAGE2_LOCATION); if (my_mount(ramdisk, STAGE2_LOCATION, "ext2", 1)) {/* Trying to mount the ramdisk */ return RETURN_ERROR; } + remove_wait_message(); log_message("KA: Waiting for stage 2...."); wait_message("Waiting for rescue from KA server (Try %d/%d)", count, KA_MAX_RETRY); |