diff options
author | Mathieu Othacehe <m.othacehe@gmail.com> | 2018-12-06 11:42:45 +0900 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-01-17 14:04:26 +0100 |
commit | ee4004b392c90fc9e25f03c16205615590ea27e6 (patch) | |
tree | 1476d4c09992b1733ab3b7fa71692f11806ebe3b /gnu/installer | |
parent | 133c401f774d803f92933e9cadb6791641913beb (diff) | |
download | guix-ee4004b392c90fc9e25f03c16205615590ea27e6.tar guix-ee4004b392c90fc9e25f03c16205615590ea27e6.tar.gz |
installer: partition: Precise when using Manual/Guided partionment.
* gnu/installer/newt/partition.scm (run-disk-page)[guided?]: New argument.
Use guided? to determine if we are proceeding to a guided or a manuel
partitioning and precise it the title and info-text.
Diffstat (limited to 'gnu/installer')
-rw-r--r-- | gnu/installer/newt/partition.scm | 31 |
1 files changed, 21 insertions, 10 deletions
diff --git a/gnu/installer/newt/partition.scm b/gnu/installer/newt/partition.scm index a3d48eef21..0e1d7b4961 100644 --- a/gnu/installer/newt/partition.scm +++ b/gnu/installer/newt/partition.scm @@ -393,7 +393,8 @@ partition. Leave this field empty if you don't want to set a mounting point.") (else result)))) (define* (run-disk-page disks - #:optional (user-partitions '())) + #:optional (user-partitions '()) + #:key (guided? #f)) "Run a page allowing to edit the partition tables of the given DISKS. If specified, USER-PARTITIONS is a list of <user-partition> records associated to the partitions on DISKS." @@ -597,17 +598,24 @@ edit it." (else default-result)))))))) - (let ((result - (run-listbox-selection-page - - #:info-text (G_ "You can change a disk's partition table by \ + (let* ((info-text (G_ "You can change a disk's partition table by \ selecting it and pressing ENTER. You can also edit a partition by selecting it \ and pressing ENTER, or remove it by pressing DELETE. To create a new \ partition, select a free space area and press ENTER. -At least one partition must have its mounting point set to '/'.") +At least one partition must have its mounting point set to '/'.")) + (guided-info-text (format (G_ "This is the proposed partitionment. It \ +is still possible to edit it or to go back to install menu by pressing the \ +Exit button.~%~%"))) + (result + (run-listbox-selection-page + #:info-text (if guided? + (string-append guided-info-text info-text) + info-text) - #:title (G_ "Manual partitioning") + #:title (if guided? + (G_ "Guided partitioning") + (G_ "Manual partitioning")) #:info-textbox-width 70 #:listbox-items (disk-items) #:listbox-item->text cdr @@ -633,7 +641,8 @@ At least one partition must have its mounting point set to '/'.") (begin (for-each (cut disk-destroy <>) disks) user-partitions) - (run-disk-page disks user-partitions))) + (run-disk-page disks user-partitions + #:guided? guided?))) (let* ((result-disks (assoc-ref result 'disks)) (result-user-partitions (assoc-ref result 'user-partitions)) @@ -651,7 +660,8 @@ At least one partition must have its mounting point set to '/'.") (update-user-partitions result-user-partitions new-user-partition) result-user-partitions))) - (run-disk-page result-disks new-user-partitions))))) + (run-disk-page result-disks new-user-partitions + #:guided? guided?))))) (define (run-partioning-page) "Run a page asking the user for a partitioning method." @@ -684,7 +694,8 @@ At least one partition must have its mounting point set to '/'.") (auto-partition disk #:scheme scheme) (create-special-user-partitions (disk-partitions disk))))) - (run-disk-page (list disk) user-partitions))) + (run-disk-page (list disk) user-partitions + #:guided? #t))) ((manual) (let* ((disks (map disk-new devices)) (user-partitions (append-map |