Revert "guix system: Remove unused 'read-operating-system' procedure."

This reverts commit d11a432adf.

The 'read-operating-system' is used in Emacs-Guix.
This commit is contained in:
Ludovic Courtès 2022-10-11 13:56:02 +02:00
parent 602527ab97
commit 22b9734b67
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5
2 changed files with 7 additions and 0 deletions

View file

@ -38,6 +38,7 @@ (define-module (gnu ci)
#:use-module ((guix licenses)
#:select (gpl3+ license? license-name))
#:use-module ((guix utils) #:select (%current-system))
#:use-module ((guix scripts system) #:select (read-operating-system))
#:use-module ((guix scripts pack)
#:select (self-contained-tarball))
#:use-module (gnu bootloader)

View file

@ -92,6 +92,7 @@ (define-module (guix scripts system)
#:use-module (ice-9 match)
#:use-module (rnrs bytevectors)
#:export (guix-system
read-operating-system
service-node-type
shepherd-service-node-type))
@ -107,6 +108,11 @@ (define %user-module
(gnu services)
(gnu system shadow))))
;; Note: The procedure below is used in external projects such as Emacs-Guix.
(define (read-operating-system file)
"Read the operating-system declaration from FILE and return it."
(load* file %user-module))
;;;
;;; Installation.