Browse Source
installer: Redirect to TTY3 root shell for unguided install.
* gnu/installer/newt/welcome.scm (run-welcome-page): Switch to TTY3 for
unguided shell based install.
install-doc-overhaul
Mathieu Othacehe
4 years ago
committed by
Ludovic Courtès
No known key found for this signature in database
GPG Key ID: 90B11993D9AEBB5
1 changed files with
8 additions and
8 deletions
-
gnu/installer/newt/welcome.scm
|
|
@ -96,18 +96,18 @@ installation and reboot." |
|
|
|
(G_ "Welcome to GNU GuixSD installer! |
|
|
|
|
|
|
|
Please note that the present graphical installer is still under heavy \ |
|
|
|
development, so you might want to fallback to the classical installer by \ |
|
|
|
pressing CTRL-ALT-F3.") |
|
|
|
development, so you might want to prefer using the shell based process. \ |
|
|
|
The documentation is accessible at any time by pressing CTRL-ALT-F2.") |
|
|
|
logo |
|
|
|
#:listbox-items |
|
|
|
`((,(G_ "Install using the unguided shell based process") |
|
|
|
`((,(G_ "Install using the shell based process") |
|
|
|
. |
|
|
|
,(lambda () |
|
|
|
(clear-screen) |
|
|
|
(newt-suspend) |
|
|
|
(system* "bash" "-l") |
|
|
|
(newt-resume))) |
|
|
|
(,(G_ "Graphical install using a guided terminal based interface") |
|
|
|
;; Switch to TTY3, where a root shell is available for shell based |
|
|
|
;; install. The other root TTY's would have been ok too. |
|
|
|
(system* "chvt" "3") |
|
|
|
(run-welcome-page logo))) |
|
|
|
(,(G_ "Graphical install using a terminal based interface") |
|
|
|
. |
|
|
|
,(const #t)) |
|
|
|
(,(G_ "Reboot") |
|
|
|