[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/11: installer: Move the 'locale' step before the 'welcome' step.
From: |
guix-commits |
Subject: |
04/11: installer: Move the 'locale' step before the 'welcome' step. |
Date: |
Sun, 7 Apr 2019 12:06:13 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 850ddf94e86a1711328e39872c7830ad6d5020b4
Author: Ludovic Courtès <address@hidden>
Date: Sun Apr 7 16:16:14 2019 +0200
installer: Move the 'locale' step before the 'welcome' step.
* gnu/installer.scm (installer-steps): Move the 'locale step before
'welcome.
---
gnu/installer.scm | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/gnu/installer.scm b/gnu/installer.scm
index 584ca38..5694cef 100644
--- a/gnu/installer.scm
+++ b/gnu/installer.scm
@@ -174,14 +174,6 @@ selected keymap."
"/share/zoneinfo/zone.tab")))
#~(lambda (current-installer)
(list
- ;; Welcome the user and ask him to choose between manual
- ;; installation and graphical install.
- (installer-step
- (id 'welcome)
- (compute (lambda _
- ((installer-welcome-page current-installer)
- #$(local-file "installer/aux-files/logo.txt")))))
-
;; Ask the user to choose a locale among those supported by
;; the glibc. Install the selected locale right away, so that
;; the user may benefit from any available translation for the
@@ -193,6 +185,14 @@ selected keymap."
(#$locale-step current-installer)))
(configuration-formatter locale->configuration))
+ ;; Welcome the user and ask them to choose between manual
+ ;; installation and graphical install.
+ (installer-step
+ (id 'welcome)
+ (compute (lambda _
+ ((installer-welcome-page current-installer)
+ #$(local-file "installer/aux-files/logo.txt")))))
+
;; Ask the user to select a timezone under glibc format.
(installer-step
(id 'timezone)
- branch master updated (32c055f -> 71b4974), guix-commits, 2019/04/07
- 01/11: size: Optimize dependency size computation., guix-commits, 2019/04/07
- 03/11: installer: Simplify locale dialogs., guix-commits, 2019/04/07
- 07/11: installer: Remove SLiM-specific instructions., guix-commits, 2019/04/07
- 02/11: doc: Fix syntax of cross-manual references., guix-commits, 2019/04/07
- 05/11: installer: Use the normalized codeset in the 'locale' field., guix-commits, 2019/04/07
- 06/11: installer: Fix wording for "Internet access.", guix-commits, 2019/04/07
- 08/11: installer: Generalize desktop environments to system services., guix-commits, 2019/04/07
- 11/11: gnu: address@hidden: Move to ssh.scm., guix-commits, 2019/04/07
- 10/11: services: dropbear: Add default value., guix-commits, 2019/04/07
- 04/11: installer: Move the 'locale' step before the 'welcome' step.,
guix-commits <=
- 09/11: installer: Add dialog to select networking services., guix-commits, 2019/04/07