diff options
-rw-r--r-- | NEWS | 1 | ||||
-rwxr-xr-x | draklive-install | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,3 +1,4 @@ +- avoid copying inactive mount points - increase window size when display size is > 800x600 (mga#23435) - revert to rebooting after completing install from boot menu - locate live medium from /run/mgalive/basedev instead of from disk label diff --git a/draklive-install b/draklive-install index 4f1231b..c830d5b 100755 --- a/draklive-install +++ b/draklive-install @@ -234,7 +234,7 @@ sub prepare_root { sub build_copy_command { my ($source, $dest) = @_; join(' ', - 'tar', 'c', '--one-file-system', '-C', $source, '.', + 'tar', 'c', '--one-file-system', '--exclude=./media', '--exclude=./mnt', '-C', $source, '.', '|', 'tar', 'xvv', '-C', $dest, ); |