summaryrefslogtreecommitdiff
path: root/user/consolekit2/0001-busybox-reboot-and-poweroff-support.patch
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2018-07-13 02:30:03 -0500
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2018-07-13 02:30:03 -0500
commit077e0feee979492662f5e9a226fdf0b986c51fed (patch)
treec53a87a92186fabdf8c6cc11834afe35918c2c9e /user/consolekit2/0001-busybox-reboot-and-poweroff-support.patch
parentc04a7c0e4812b4d1e815fb11293c7181684c2b35 (diff)
downloadpackages-077e0feee979492662f5e9a226fdf0b986c51fed.tar.gz
packages-077e0feee979492662f5e9a226fdf0b986c51fed.tar.bz2
packages-077e0feee979492662f5e9a226fdf0b986c51fed.tar.xz
packages-077e0feee979492662f5e9a226fdf0b986c51fed.zip
user/consolekit2: bump, take, remove lots of old patches
Diffstat (limited to 'user/consolekit2/0001-busybox-reboot-and-poweroff-support.patch')
-rw-r--r--user/consolekit2/0001-busybox-reboot-and-poweroff-support.patch40
1 files changed, 0 insertions, 40 deletions
diff --git a/user/consolekit2/0001-busybox-reboot-and-poweroff-support.patch b/user/consolekit2/0001-busybox-reboot-and-poweroff-support.patch
deleted file mode 100644
index 2db9f032b..000000000
--- a/user/consolekit2/0001-busybox-reboot-and-poweroff-support.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-From 5e557dd212657f7e75a0c4bd70d11ca06ccb3f84 Mon Sep 17 00:00:00 2001
-From: Natanael Copa <ncopa@alpinelinux.org>
-Date: Mon, 4 Apr 2011 18:46:25 +0000
-Subject: [PATCH] busybox reboot and poweroff support
-
----
- tools/linux/ck-system-restart | 3 +++
- tools/linux/ck-system-stop | 3 +++
- 2 files changed, 6 insertions(+), 0 deletions(-)
-
-diff --git a/tools/linux/ck-system-restart b/tools/linux/ck-system-restart
-index 8e0664e..5cabb3d 100755
---- a/tools/linux/ck-system-restart
-+++ b/tools/linux/ck-system-restart
-@@ -7,6 +7,9 @@ if [ -x "/sbin/shutdown" ] ; then
- elif [ -x "/usr/sbin/shutdown" ] ; then
- /usr/sbin/shutdown -r now
- exit $?
-+elif [ -x "/sbin/reboot" ]; then
-+ /sbin/reboot
-+ exit $?
- else
- exit 1
- fi
-diff --git a/tools/linux/ck-system-stop b/tools/linux/ck-system-stop
-index e26bca3..a0be3ac 100755
---- a/tools/linux/ck-system-stop
-+++ b/tools/linux/ck-system-stop
-@@ -7,6 +7,9 @@ if [ -x "/sbin/shutdown" ] ; then
- elif [ -x "/usr/sbin/shutdown" ] ; then
- /usr/sbin/shutdown -h now
- exit $?
-+elif [ -x "/sbin/poweroff" ] ; then
-+ /sbin/poweroff
-+ exit $?
- else
- exit 1
- fi
---
-1.7.4.2