* [Buildroot] [PATCH] acpid: add init.d script
@ 2012-08-11 6:43 Jonathan Liu
0 siblings, 0 replies; 3+ messages in thread
From: Jonathan Liu @ 2012-08-11 6:43 UTC (permalink / raw)
To: buildroot
Signed-off-by: Jonathan Liu <net147@gmail.com>
---
package/acpid/S02acpid | 22 ++++++++++++++++++++++
package/acpid/acpid.mk | 1 +
2 files changed, 23 insertions(+)
create mode 100755 package/acpid/S02acpid
diff --git a/package/acpid/S02acpid b/package/acpid/S02acpid
new file mode 100755
index 0000000..1f74896
--- /dev/null
+++ b/package/acpid/S02acpid
@@ -0,0 +1,22 @@
+#!/bin/sh
+
+case "$1" in
+ start)
+ echo -n "Starting acpid: "
+ start-stop-daemon -S -q -m -b -p /var/run/acpid.pid --exec /usr/sbin/acpid -- -n
+ echo "done"
+ ;;
+ stop)
+ echo -n "Stopping acpid: "
+ start-stop-daemon -K -q -p /var/run/acpid.pid
+ echo "done"
+ ;;
+ restart)
+ "$0" stop
+ sleep 1
+ "$0" start
+ ;;
+ *)
+ echo "usage: $0 {start|stop|restart}"
+ ;;
+esac
diff --git a/package/acpid/acpid.mk b/package/acpid/acpid.mk
index cacfb27..45cd8cf 100644
--- a/package/acpid/acpid.mk
+++ b/package/acpid/acpid.mk
@@ -18,6 +18,7 @@ define ACPID_INSTALL_TARGET_CMDS
install -D -m 644 $(@D)/acpi_listen.8 $(TARGET_DIR)/usr/share/man/man8/acpi_listen.8
mkdir -p $(TARGET_DIR)/etc/acpi/events
/bin/echo -e "event=button[ /]power\naction=/sbin/poweroff" > $(TARGET_DIR)/etc/acpi/events/powerbtn
+ install -D -m 755 package/acpid/S02acpid $(TARGET_DIR)/etc/init.d/S02acpid
endef
define ACPID_UNINSTALL_TARGET_CMDS
--
1.7.11.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH v2] acpid: add init.d script
@ 2012-08-11 7:16 Jonathan Liu
2012-08-11 7:16 ` [Buildroot] [PATCH] " Jonathan Liu
0 siblings, 1 reply; 3+ messages in thread
From: Jonathan Liu @ 2012-08-11 7:16 UTC (permalink / raw)
To: buildroot
This just adds a minor capitalization fix to the usage help.
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH] acpid: add init.d script
2012-08-11 7:16 [Buildroot] [PATCH v2] acpid: add init.d script Jonathan Liu
@ 2012-08-11 7:16 ` Jonathan Liu
0 siblings, 0 replies; 3+ messages in thread
From: Jonathan Liu @ 2012-08-11 7:16 UTC (permalink / raw)
To: buildroot
Signed-off-by: Jonathan Liu <net147@gmail.com>
---
package/acpid/S02acpid | 22 ++++++++++++++++++++++
package/acpid/acpid.mk | 1 +
2 files changed, 23 insertions(+)
create mode 100755 package/acpid/S02acpid
diff --git a/package/acpid/S02acpid b/package/acpid/S02acpid
new file mode 100755
index 0000000..ec686d8
--- /dev/null
+++ b/package/acpid/S02acpid
@@ -0,0 +1,22 @@
+#!/bin/sh
+
+case "$1" in
+ start)
+ echo -n "Starting acpid: "
+ start-stop-daemon -S -q -m -b -p /var/run/acpid.pid --exec /usr/sbin/acpid -- -n
+ echo "done"
+ ;;
+ stop)
+ echo -n "Stopping acpid: "
+ start-stop-daemon -K -q -p /var/run/acpid.pid
+ echo "done"
+ ;;
+ restart)
+ "$0" stop
+ sleep 1
+ "$0" start
+ ;;
+ *)
+ echo "Usage: $0 {start|stop|restart}"
+ ;;
+esac
diff --git a/package/acpid/acpid.mk b/package/acpid/acpid.mk
index cacfb27..45cd8cf 100644
--- a/package/acpid/acpid.mk
+++ b/package/acpid/acpid.mk
@@ -18,6 +18,7 @@ define ACPID_INSTALL_TARGET_CMDS
install -D -m 644 $(@D)/acpi_listen.8 $(TARGET_DIR)/usr/share/man/man8/acpi_listen.8
mkdir -p $(TARGET_DIR)/etc/acpi/events
/bin/echo -e "event=button[ /]power\naction=/sbin/poweroff" > $(TARGET_DIR)/etc/acpi/events/powerbtn
+ install -D -m 755 package/acpid/S02acpid $(TARGET_DIR)/etc/init.d/S02acpid
endef
define ACPID_UNINSTALL_TARGET_CMDS
--
1.7.11.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-08-11 7:16 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-11 7:16 [Buildroot] [PATCH v2] acpid: add init.d script Jonathan Liu
2012-08-11 7:16 ` [Buildroot] [PATCH] " Jonathan Liu
-- strict thread matches above, loose matches on Subject: below --
2012-08-11 6:43 Jonathan Liu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox