vm: Add missing module.
* gnu/build/vm.scm (define-module): Use module (guix build syscalls). It fixes the following warnings during guix build : gnu/build/vm.scm:233:3: warning: possibly unbound variable `mount' gnu/build/vm.scm:238:3: warning: possibly unbound variable `umount' gnu/build/vm.scm:268:8: warning: possibly unbound variable `mount' gnu/build/vm.scm:276:8: warning: possibly unbound variable `umount' gnu/build/vm.scm:315:4: warning: possibly unbound variable `mount' gnu/build/vm.scm:323:4: warning: possibly unbound variable `umount' This was not possible until the previous commit because we had to be sure that Guile core implementation of 'mount' and 'umount' was used in initrd context. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
		
							parent
							
								
									f91fcd9c42
								
							
						
					
					
						commit
						abf0880a67
					
				
					 1 changed files with 1 additions and 0 deletions
				
			
		| 
						 | 
					@ -21,6 +21,7 @@
 | 
				
			||||||
(define-module (gnu build vm)
 | 
					(define-module (gnu build vm)
 | 
				
			||||||
  #:use-module (guix build utils)
 | 
					  #:use-module (guix build utils)
 | 
				
			||||||
  #:use-module (guix build store-copy)
 | 
					  #:use-module (guix build store-copy)
 | 
				
			||||||
 | 
					  #:use-module (guix build syscalls)
 | 
				
			||||||
  #:use-module (gnu build linux-boot)
 | 
					  #:use-module (gnu build linux-boot)
 | 
				
			||||||
  #:use-module (gnu build install)
 | 
					  #:use-module (gnu build install)
 | 
				
			||||||
  #:use-module (guix records)
 | 
					  #:use-module (guix records)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in a new issue