summaryrefslogtreecommitdiffstats
path: root/display/qingy/shutdown.patch
blob: 4122cbb2a4da7ffbb6f130d65900ad6d0bf76af3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
diff -Naur qingy-0.6.0.orig/src/DirectFB/directfb_mode.c qingy-0.6.0/src/DirectFB/directfb_mode.c
--- qingy-0.6.0.orig/src/DirectFB/directfb_mode.c	2005-06-11 09:45:28.087391184 -0700
+++ qingy-0.6.0/src/DirectFB/directfb_mode.c	2005-06-11 09:54:00.652469448 -0700
@@ -585,7 +585,7 @@
 			primary->DrawString (primary, "shutting down system...", -1, screen_width / 2, screen_height / 2, DSTF_CENTER);
 			primary->Flip (primary, NULL, 0);
 		}
-		execl ("/sbin/shutdown", "/sbin/shutdown", "-h", "now", (char*)NULL);
+		execl ("/sbin/shutdown", "/sbin/shutdown", "-q", "-h", "now", (char*)NULL);
 	}
   if (action == DO_REBOOT)
 	{
@@ -594,7 +594,7 @@
 			primary->DrawString (primary, "rebooting system...", -1, screen_width / 2, screen_height / 2, DSTF_CENTER);
 			primary->Flip (primary, NULL, 0);
 		}
-		execl ("/sbin/shutdown", "/sbin/shutdown", "-r", "now", (char*)NULL);
+		execl ("/sbin/shutdown", "/sbin/shutdown", "-q", "-r", "now", (char*)NULL);
 	}
   
   /* we should never get here unless call to /sbin/shutdown fails */
diff -Naur qingy-0.6.0.orig/src/main.c qingy-0.6.0/src/main.c
--- qingy-0.6.0.orig/src/main.c	2005-06-11 09:45:28.088391032 -0700
+++ qingy-0.6.0/src/main.c	2005-06-11 09:54:17.990833616 -0700
@@ -295,12 +295,12 @@
 		case EXIT_SHUTDOWN_R:
 			if (username) memset(username, '\0', sizeof(username));
       if (password) memset(password, '\0', sizeof(password));
-			execl ("/sbin/shutdown", "/sbin/shutdown", "-r", "now", (char*)NULL);
+			execl ("/sbin/shutdown", "/sbin/shutdown", "-q", "-r", "now", (char*)NULL);
 			break;
 		case EXIT_SHUTDOWN_H:
 			if (username) memset(username, '\0', sizeof(username));
       if (password) memset(password, '\0', sizeof(password));
-			execl ("/sbin/shutdown", "/sbin/shutdown", "-h", "now", (char*)NULL);
+			execl ("/sbin/shutdown", "/sbin/shutdown", "-q", "-h", "now", (char*)NULL);
 			break;
 		case EXIT_SLEEP:
 			if (username) memset(username, '\0', sizeof(username));