installer: Make LUKS2 the default format for encrypted devices
* gnu/installer/parted.scm (luks-format-and-open): Change it. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
		
							parent
							
								
									4c5f970e8a
								
							
						
					
					
						commit
						a82e9f45fd
					
				
					 1 changed files with 3 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -1169,8 +1169,9 @@ USER-PARTITION if it is encrypted, or the plain file-name otherwise."
 | 
			
		|||
     (lambda (key-file)
 | 
			
		||||
       (syslog "formatting and opening LUKS entry ~s at ~s~%"
 | 
			
		||||
               label file-name)
 | 
			
		||||
       (system* "cryptsetup" "-q" "luksFormat" file-name key-file)
 | 
			
		||||
       (system* "cryptsetup" "open" "--type" "luks"
 | 
			
		||||
       (system* "cryptsetup" "-q" "luksFormat" "--type" "luks2"
 | 
			
		||||
                "--pbkdf" "pbkdf2" file-name key-file)
 | 
			
		||||
       (system* "cryptsetup" "open"
 | 
			
		||||
                "--key-file" key-file file-name label)))))
 | 
			
		||||
 | 
			
		||||
(define (luks-close user-partition)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Reference in a new issue