system: Rename operating-system-parameters-file to operating-system-boot-parameters-file.
* gnu/system.scm (operating-system-parameters-file): Rename to ... (operating-system-boot-parameters-file): ... this. (operating-system-directory-base-entries): Adapt call site.
This commit is contained in:
		
							parent
							
								
									af98d25a12
								
							
						
					
					
						commit
						71d0420202
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
					@ -278,7 +278,7 @@ value of the SYSTEM-SERVICE-TYPE service."
 | 
				
			||||||
        (mlet %store-monad
 | 
					        (mlet %store-monad
 | 
				
			||||||
            ((kernel  ->  (operating-system-kernel os))
 | 
					            ((kernel  ->  (operating-system-kernel os))
 | 
				
			||||||
             (initrd      (operating-system-initrd-file os))
 | 
					             (initrd      (operating-system-initrd-file os))
 | 
				
			||||||
             (params      (operating-system-parameters-file os)))
 | 
					             (params      (operating-system-boot-parameters-file os)))
 | 
				
			||||||
          (return `(("kernel" ,kernel)
 | 
					          (return `(("kernel" ,kernel)
 | 
				
			||||||
                    ("parameters" ,params)
 | 
					                    ("parameters" ,params)
 | 
				
			||||||
                    ("initrd" ,initrd)
 | 
					                    ("initrd" ,initrd)
 | 
				
			||||||
| 
						 | 
					@ -769,7 +769,7 @@ device in a <menu-entry>."
 | 
				
			||||||
    ((label) (file-system-device fs))
 | 
					    ((label) (file-system-device fs))
 | 
				
			||||||
    (else #f)))
 | 
					    (else #f)))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
(define (operating-system-parameters-file os)
 | 
					(define (operating-system-boot-parameters-file os)
 | 
				
			||||||
  "Return a file that describes the boot parameters of OS.  The primary use of
 | 
					  "Return a file that describes the boot parameters of OS.  The primary use of
 | 
				
			||||||
this file is the reconstruction of GRUB menu entries for old configurations."
 | 
					this file is the reconstruction of GRUB menu entries for old configurations."
 | 
				
			||||||
  (mlet %store-monad ((initrd   (operating-system-initrd-file os))
 | 
					  (mlet %store-monad ((initrd   (operating-system-initrd-file os))
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in a new issue