diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2003-11-21 18:53:51 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2003-11-21 18:53:51 +0000 |
commit | 7dbd61df3b2430bfec54672e4e7e48dfa0656c15 (patch) | |
tree | 5058ed0f281253808d8c9f901d51eba7e945b31e /move | |
parent | 463c2e89e422bebfaf22f63b70b81d773d32faa9 (diff) | |
download | drakx-7dbd61df3b2430bfec54672e4e7e48dfa0656c15.tar drakx-7dbd61df3b2430bfec54672e4e7e48dfa0656c15.tar.gz drakx-7dbd61df3b2430bfec54672e4e7e48dfa0656c15.tar.bz2 drakx-7dbd61df3b2430bfec54672e4e7e48dfa0656c15.tar.xz drakx-7dbd61df3b2430bfec54672e4e7e48dfa0656c15.zip |
allow formatting the virtual key with a commandline param, for easy mode-2 testing
Diffstat (limited to 'move')
-rw-r--r-- | move/move.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/move/move.pm b/move/move.pm index e432436fa..ac2142a8e 100644 --- a/move/move.pm +++ b/move/move.pm @@ -43,11 +43,12 @@ sub handle_etcfiles { } sub handle_virtual_key { - if (my ($device, $file) = cat_('/proc/cmdline') =~ /\bvirtual_key=(\S+),(\S+)/) { - log::l("using device=$device file=$file as a virtual key"); + if (my ($device, $file, $options) = cat_('/proc/cmdline') =~ /\bvirtual_key=([^,\s]+),([^,\s]+)(,\S+)?/) { + log::l("using device=$device file=$file as a virtual key with options $options"); my $dir = '/virtual_key_mount'; mkdir $dir; run_program::run('mount', $device, $dir); + $options =~ /format/ and run_program::run('mkdosfs', "$dir$file"); require devices; my $loop = devices::find_free_loop(); run_program::run('losetup', $loop, "$dir$file"); |