mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-06 23:16:13 -05:00
Setup (gnu tests install) for build test.
Change-Id: I0b6adc4b6adee6b2dc92deb34b6cbca74cf8b3da
This commit is contained in:
parent
3bb77e73e1
commit
e1be617efe
1 changed files with 9 additions and 1 deletions
|
@ -23,6 +23,7 @@
|
|||
|
||||
(define-module (gnu tests install)
|
||||
#:use-module (gnu)
|
||||
#:use-module (gnu bootloader grub)
|
||||
#:use-module (gnu bootloader extlinux)
|
||||
#:use-module (gnu image)
|
||||
#:use-module (gnu tests)
|
||||
|
@ -46,6 +47,7 @@ (define-module (gnu tests install)
|
|||
#:use-module (gnu packages openbox)
|
||||
#:use-module (gnu packages package-management)
|
||||
#:use-module (gnu packages ratpoison)
|
||||
#:use-module (gnu packages screen)
|
||||
#:use-module (gnu packages suckless)
|
||||
#:use-module (gnu packages virtualization)
|
||||
#:use-module (gnu packages wm)
|
||||
|
@ -94,7 +96,7 @@ (define-module (gnu tests install)
|
|||
|
||||
(define-os-with-source (%minimal-os %minimal-os-source)
|
||||
;; The OS we want to install.
|
||||
(use-modules (gnu) (gnu tests) (srfi srfi-1))
|
||||
(use-modules (gnu) (gnu system) (gnu tests) (gnu packages screen) (srfi srfi-1))
|
||||
|
||||
(operating-system
|
||||
(host-name "liberigilo")
|
||||
|
@ -102,11 +104,17 @@ (define-os-with-source (%minimal-os %minimal-os-source)
|
|||
(locale "en_US.UTF-8")
|
||||
|
||||
(bootloader (bootloader-configuration
|
||||
(theme (grub-theme (image #f)))
|
||||
(bootloader grub-bootloader)
|
||||
(targets (list (bootloader-target
|
||||
(type 'disk)
|
||||
(device "/dev/vdb"))))))
|
||||
(kernel-arguments '("console=ttyS0"))
|
||||
(packages (append (list screen)
|
||||
%base-packages-interactive
|
||||
%base-packages-linux
|
||||
%base-packages-networking
|
||||
%base-packages-utils))
|
||||
(file-systems (cons (file-system
|
||||
(device (file-system-label "my-root"))
|
||||
(mount-point "/")
|
||||
|
|
Loading…
Reference in a new issue