summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
Diffstat (limited to 'gnu')
-rw-r--r--gnu/system.scm10
1 files changed, 8 insertions, 2 deletions
diff --git a/gnu/system.scm b/gnu/system.scm
index 9025a879dbe..058bd72920a 100644
--- a/gnu/system.scm
+++ b/gnu/system.scm
@@ -10,7 +10,7 @@
10;;; Copyright © 2020, 2021 Brice Waegeneire <brice@waegenei.re> 10;;; Copyright © 2020, 2021 Brice Waegeneire <brice@waegenei.re>
11;;; Copyright © 2020 Florian Pelz <pelzflorian@pelzflorian.de> 11;;; Copyright © 2020 Florian Pelz <pelzflorian@pelzflorian.de>
12;;; Copyright © 2020, 2022, 2025 Maxim Cournoyer <maxim@guixotic.coop> 12;;; Copyright © 2020, 2022, 2025 Maxim Cournoyer <maxim@guixotic.coop>
13;;; Copyright © 2020, 2023 Janneke Nieuwenhuizen <jannek@gnu.org> 13;;; Copyright © 2020, 2023, 2026 Janneke Nieuwenhuizen <jannek@gnu.org>
14;;; Copyright © 2020, 2022, 2025 Efraim Flashner <efraim@flashner.co.il> 14;;; Copyright © 2020, 2022, 2025 Efraim Flashner <efraim@flashner.co.il>
15;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be> 15;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be>
16;;; Copyright © 2021 raid5atemyhomework <raid5atemyhomework@protonmail.com> 16;;; Copyright © 2021 raid5atemyhomework <raid5atemyhomework@protonmail.com>
@@ -1537,9 +1537,14 @@ a list of <menu-entry>, to populate the \"old entries\" menu."
1537 "pci-arbiter" 1537 "pci-arbiter"
1538 "--host-priv-port='${host-port}'" 1538 "--host-priv-port='${host-port}'"
1539 "--device-master-port='${device-port}'" 1539 "--device-master-port='${device-port}'"
1540 "--next-task='${disk-task}'" 1540 "--next-task='${acpi-task}'"
1541 "'$(pci-task=task-create)'" 1541 "'$(pci-task=task-create)'"
1542 "'$(task-resume)'")) 1542 "'$(task-resume)'"))
1543 (acpi-command
1544 (list (file-append hurd "/hurd/acpi.static")
1545 "acpi"
1546 "--next-task='${disk-task}'"
1547 "'$(acpi-task=task-create)'"))
1543 (rumpdisk-command 1548 (rumpdisk-command
1544 (list (file-append hurd "/hurd/rumpdisk.static") 1549 (list (file-append hurd "/hurd/rumpdisk.static")
1545 "rumpdisk" 1550 "rumpdisk"
@@ -1570,6 +1575,7 @@ a list of <menu-entry>, to populate the \"old entries\" menu."
1570 (list (file-append hurd "/hurd/exec.static") "exec" 1575 (list (file-append hurd "/hurd/exec.static") "exec"
1571 "'$(exec-task=task-create)'"))) 1576 "'$(exec-task=task-create)'")))
1572 (list pci-arbiter-command 1577 (list pci-arbiter-command
1578 acpi-command
1573 rumpdisk-command 1579 rumpdisk-command
1574 root-file-system-command 1580 root-file-system-command
1575 exec-server-command))) 1581 exec-server-command)))