summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOlivier Blin <oblin@mandriva.org>2005-12-16 19:03:44 +0000
committerOlivier Blin <oblin@mandriva.org>2005-12-16 19:03:44 +0000
commit2f5498998d4f2ba52dbb50616b9c0e6a1f23fd22 (patch)
tree9fadf93d25feeadc7ba141f9cea9da294716d5a8
parent0628ddcb720b24b307b8e5fb26a1a31131c40b24 (diff)
downloaddrakx-2f5498998d4f2ba52dbb50616b9c0e6a1f23fd22.tar
drakx-2f5498998d4f2ba52dbb50616b9c0e6a1f23fd22.tar.gz
drakx-2f5498998d4f2ba52dbb50616b9c0e6a1f23fd22.tar.bz2
drakx-2f5498998d4f2ba52dbb50616b9c0e6a1f23fd22.tar.xz
drakx-2f5498998d4f2ba52dbb50616b9c0e6a1f23fd22.zip
allow to format the recorded media
-rwxr-xr-xtools/draklive24
1 files changed, 21 insertions, 3 deletions
diff --git a/tools/draklive b/tools/draklive
index 5555b2f5b..a3d9065cc 100755
--- a/tools/draklive
+++ b/tools/draklive
@@ -226,6 +226,7 @@ my %storage = (
read_only => 1,
modules => 'disk/cdrom|hardware_raid|sata|scsi bus/usb disk/raw',
create => \&create_cdrom_master,
+ format => \&format_cdrom_device,
record => \&record_cdrom_master,
},
usb => {
@@ -503,6 +504,21 @@ sub create_master {
}
}
+sub format_cdrom_device {
+ my ($live) = @_;
+ $live->{media}{device} or die "no device defined in media configuration";
+ run_('cdrecord', '-v', 'dev=' . $live->{media}{device}, "blank=fast");
+}
+
+sub format_device {
+ my ($live) = @_;
+ if (my $format = $storage{$live->{media}{storage}}{format}) {
+ $format->($live, $o_refresh_boot_only);
+ } else {
+ warn "not implemented yet";
+ }
+}
+
sub record_cdrom_master {
my ($live, $o_refresh_boot_only) = @_;
$o_refresh_boot_only and die "record boot isn't possible for cdrom master";
@@ -577,6 +593,7 @@ my @actions = (
{ name => 'boot', do => \&prepare_bootloader },
{ name => 'loop', do => \&create_loopback_files },
{ name => 'master', do => \&create_master },
+ { name => 'format', do => \&format_device },
{ name => 'record', do => \&record_master },
{ name => 'record_boot', do => \&record_boot },
);
@@ -632,12 +649,13 @@ draklive [options]
--all run all steps, from installation to mastering
--clean clean installation chroot and work directory
+
+ --device <dev> use this device for live recording (not needed
+ if the device already has the required label)
+ --format format selected device
--record install live on selected media
--record_boot install bootloader only on selected media
- --device <dev> use this device for live recording, formatting
- it preliminary (not needed if the device
- already has the required label)
--config <file> use this configuration file as live description
Examples: