diff options
author | damien <damien@mandriva.com> | 2001-02-08 04:51:56 +0000 |
---|---|---|
committer | damien <damien@mandriva.com> | 2001-02-08 04:51:56 +0000 |
commit | 1a9cbfe884bdcec7af5424466c11d7b0c4f075de (patch) | |
tree | 40e5bd68aa479639be59be89c033e226054c5201 /perl-install/standalone | |
parent | ddc5094f51a22e8da9e093ae32c95233fb0ee080 (diff) | |
download | drakx-backup-do-not-use-1a9cbfe884bdcec7af5424466c11d7b0c4f075de.tar drakx-backup-do-not-use-1a9cbfe884bdcec7af5424466c11d7b0c4f075de.tar.gz drakx-backup-do-not-use-1a9cbfe884bdcec7af5424466c11d7b0c4f075de.tar.bz2 drakx-backup-do-not-use-1a9cbfe884bdcec7af5424466c11d7b0c4f075de.tar.xz drakx-backup-do-not-use-1a9cbfe884bdcec7af5424466c11d7b0c4f075de.zip |
updated embedded mode. Should work, not tested in real world
Diffstat (limited to 'perl-install/standalone')
-rwxr-xr-x | perl-install/standalone/drakboot | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/perl-install/standalone/drakboot b/perl-install/standalone/drakboot index 4368ec60a..3b8862552 100755 --- a/perl-install/standalone/drakboot +++ b/perl-install/standalone/drakboot @@ -54,7 +54,6 @@ fs::get_mntpoints_from_fstab($fstab); ask: any::setupBootloader($in, $bootloader, $hds, $fstab, $ENV{SECURE_LEVEL}) or $in->exit(0); - eval { bootloader::install('', $bootloader, $fstab, $hds) }; if ($@) { @@ -65,4 +64,6 @@ if ($@) { goto ask; } -$in->exit(0); +!$::isEmbedded and $in->exit(0); +kill(USR1, $::CCPID); +goto ask; |