summaryrefslogtreecommitdiff
path: root/tests/system.scm
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2021-08-07 15:07:47 -0400
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2021-08-29 01:05:26 -0400
commitda4e40948326387d5bcda58783914d5f9ce8b095 (patch)
tree5b40bfc74ea3e8715ee9dba5ab6d67dbf87952f5 /tests/system.scm
parent2ca982ff41270288913ad6b7d5d9e1cad87b06d9 (diff)
Migrate to the new 'targets' field of bootloader-configuration.
The old 'target' field is deprecated; adjust the sources to use the new 'targets' one instead. * doc/guix-cookbook.texi<target>: Replace by 'targets'. * gnu/bootloader/grub.scm: Likewise. * gnu/installer/parted.scm: Likewise. * gnu/machine/digital-ocean.scm: Likewise. * gnu/system/examples/asus-c201.tmpl: Likewise * gnu/system/examples/bare-bones.tmpl: Likewise * gnu/system/examples/bare-hurd.tmpl: Likewise * gnu/system/examples/beaglebone-black.tmpl: Likewise * gnu/system/examples/desktop.tmpl: Likewise * gnu/system/examples/docker-image.tmpl: Likewise * gnu/system/examples/lightweight-desktop.tmpl: Likewise * gnu/system/examples/vm-image.tmpl: Likewise * gnu/system/examples/yggdrasil.tmpl: Likewise * gnu/system/hurd.scm: Likewise * gnu/system/images/hurd.scm: Likewise * gnu/system/images/novena.scm: Likewise * gnu/system/images/pine64.scm: Likewise * gnu/system/images/pinebook-pro.scm: Likewise * gnu/system/images/rock64.scm: Likewise * gnu/system/install.scm: Likewise * gnu/system/vm.scm: Likewise * gnu/tests.scm: Likewise * gnu/tests/ganeti.scm: Likewise * gnu/tests/install.scm: Likewise * gnu/tests/nfs.scm: Likewise * gnu/tests/telephony.scm: Likewise * tests/boot-parameters.scm: Likewise * tests/system.scm: Likewise
Diffstat (limited to 'tests/system.scm')
-rw-r--r--tests/system.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/system.scm b/tests/system.scm
index 9416b950e6a..019c720e656 100644
--- a/tests/system.scm
+++ b/tests/system.scm
@@ -39,7 +39,7 @@
39 (locale "en_US.utf8") 39 (locale "en_US.utf8")
40 (bootloader (bootloader-configuration 40 (bootloader (bootloader-configuration
41 (bootloader grub-bootloader) 41 (bootloader grub-bootloader)
42 (target "/dev/sdX"))) 42 (targets '("/dev/sdX"))))
43 (file-systems (cons %root-fs %base-file-systems)) 43 (file-systems (cons %root-fs %base-file-systems))
44 44
45 (users %base-user-accounts))) 45 (users %base-user-accounts)))
@@ -56,7 +56,7 @@
56 (locale "en_US.utf8") 56 (locale "en_US.utf8")
57 (bootloader (bootloader-configuration 57 (bootloader (bootloader-configuration
58 (bootloader grub-bootloader) 58 (bootloader grub-bootloader)
59 (target "/dev/sdX"))) 59 (targets '("/dev/sdX"))))
60 (mapped-devices (list %luks-device)) 60 (mapped-devices (list %luks-device))
61 (file-systems (cons (file-system 61 (file-systems (cons (file-system
62 (inherit %root-fs) 62 (inherit %root-fs)