diff options
author | damien <damien@mandriva.com> | 2001-02-26 16:51:03 +0000 |
---|---|---|
committer | damien <damien@mandriva.com> | 2001-02-26 16:51:03 +0000 |
commit | 19bb4ad507e8e3bd9bcd3f4868f7221ba77e97bd (patch) | |
tree | 1cf27efa1c9c052be51e6aba50ef4bf2c0a6bcba | |
parent | 0dd916879f12e2c9ea9bf6e2ececf717007a170f (diff) | |
download | drakx-19bb4ad507e8e3bd9bcd3f4868f7221ba77e97bd.tar drakx-19bb4ad507e8e3bd9bcd3f4868f7221ba77e97bd.tar.gz drakx-19bb4ad507e8e3bd9bcd3f4868f7221ba77e97bd.tar.bz2 drakx-19bb4ad507e8e3bd9bcd3f4868f7221ba77e97bd.tar.xz drakx-19bb4ad507e8e3bd9bcd3f4868f7221ba77e97bd.zip |
short-circuit to bootlook for the moment.
-rwxr-xr-x | perl-install/standalone/drakboot | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/perl-install/standalone/drakboot b/perl-install/standalone/drakboot index 277688a58..7e73f5092 100755 --- a/perl-install/standalone/drakboot +++ b/perl-install/standalone/drakboot @@ -2,15 +2,17 @@ use lib qw(/usr/lib/libDrakX); -use common qw(:common :file :functional); -use interactive; -use standalone; -use any; -use bootloader; -use detect_devices; -use fsedit; -use fs; -use c; +require bootlook; + +#-use common qw(:common :file :functional); +#-use interactive; +#-use standalone; +#-use any; +#-use bootloader; +#-use detect_devices; +#-use fsedit; +#-use fs; +#-use c; $::isEmbedded = ($::XID, $::CCPID) = "@ARGV" =~ /--embedded (\w+) (\w+)/; local $_ = join '', @ARGV; |