From 353af6bf04ebc20f85c238cbfbc82acf132d762c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Thu, 23 Jul 2015 08:53:10 +0200 Subject: [PATCH] Installer: reboot after install, don't shutdown. --- src/apps/installer/InstallerApp.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apps/installer/InstallerApp.cpp b/src/apps/installer/InstallerApp.cpp index b71580579d..41581a0677 100644 --- a/src/apps/installer/InstallerApp.cpp +++ b/src/apps/installer/InstallerApp.cpp @@ -132,8 +132,8 @@ InstallerApp::Quit() Utility::EjectMedia("/boot"); } - // Quickly shutdown without possibly touching anything on disk + // Quickly reboot without possibly touching anything on disk // (which we might just have ejected) - _kern_shutdown(false); + _kern_shutdown(true); } }