installer: Reorder partitionment step.
* gnu/installer.scm (installer-steps): Run partitionment step after keymap step, so that the keyboard is correctly mapped when filling the mount-point entry in partitionment page.
This commit is contained in:
parent
54754efc91
commit
5bfdde503e
1 changed files with 9 additions and 9 deletions
|
@ -174,15 +174,6 @@ selected keymap."
|
||||||
((installer-welcome-page current-installer)
|
((installer-welcome-page current-installer)
|
||||||
#$(local-file "installer/aux-files/logo.txt")))))
|
#$(local-file "installer/aux-files/logo.txt")))))
|
||||||
|
|
||||||
;; Run a partitionment tool allowing the user to modify
|
|
||||||
;; partition tables, partitions and their mount points.
|
|
||||||
(installer-step
|
|
||||||
(id 'partition)
|
|
||||||
(description (G_ "Partitionment"))
|
|
||||||
(compute (lambda _
|
|
||||||
((installer-partition-page current-installer))))
|
|
||||||
(configuration-formatter user-partitions->configuration))
|
|
||||||
|
|
||||||
;; Ask the user to choose a locale among those supported by
|
;; Ask the user to choose a locale among those supported by
|
||||||
;; the glibc. Install the selected locale right away, so that
|
;; the glibc. Install the selected locale right away, so that
|
||||||
;; the user may benefit from any available translation for the
|
;; the user may benefit from any available translation for the
|
||||||
|
@ -217,6 +208,15 @@ selected keymap."
|
||||||
(compute (lambda _
|
(compute (lambda _
|
||||||
(#$keymap-step current-installer))))
|
(#$keymap-step current-installer))))
|
||||||
|
|
||||||
|
;; Run a partitionment tool allowing the user to modify
|
||||||
|
;; partition tables, partitions and their mount points.
|
||||||
|
(installer-step
|
||||||
|
(id 'partition)
|
||||||
|
(description (G_ "Partitionment"))
|
||||||
|
(compute (lambda _
|
||||||
|
((installer-partition-page current-installer))))
|
||||||
|
(configuration-formatter user-partitions->configuration))
|
||||||
|
|
||||||
;; Ask the user to input a hostname for the system.
|
;; Ask the user to input a hostname for the system.
|
||||||
(installer-step
|
(installer-step
|
||||||
(id 'hostname)
|
(id 'hostname)
|
||||||
|
|
Reference in a new issue