mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 06:06:32 +00:00
acpid: bump to version 2.0.22
Switch to upstream sourceforge page/download. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
78369e3a77
commit
d20fdb8b30
@ -6,3 +6,5 @@ config BR2_PACKAGE_ACPID
|
|||||||
|
|
||||||
Acpid is designed to notify user-space programs of ACPI events,
|
Acpid is designed to notify user-space programs of ACPI events,
|
||||||
and allows you to configure specific actions for specific events.
|
and allows you to configure specific actions for specific events.
|
||||||
|
|
||||||
|
http://sourceforge.net/projects/acpid2/
|
||||||
|
@ -4,12 +4,12 @@ case "$1" in
|
|||||||
start)
|
start)
|
||||||
echo -n "Starting acpid: "
|
echo -n "Starting acpid: "
|
||||||
start-stop-daemon -S -q -m -b -p /var/run/acpid.pid --exec /usr/sbin/acpid -- -n
|
start-stop-daemon -S -q -m -b -p /var/run/acpid.pid --exec /usr/sbin/acpid -- -n
|
||||||
echo "done"
|
[ $? == 0 ] && echo "OK" || echo "FAIL"
|
||||||
;;
|
;;
|
||||||
stop)
|
stop)
|
||||||
echo -n "Stopping acpid: "
|
echo -n "Stopping acpid: "
|
||||||
start-stop-daemon -K -q -p /var/run/acpid.pid
|
start-stop-daemon -K -q -p /var/run/acpid.pid
|
||||||
echo "done"
|
[ $? == 0 ] && echo "OK" || echo "FAIL"
|
||||||
;;
|
;;
|
||||||
restart)
|
restart)
|
||||||
"$0" stop
|
"$0" stop
|
||||||
|
20
package/acpid/acpid-01-dont-use-isfdtype.patch
Normal file
20
package/acpid/acpid-01-dont-use-isfdtype.patch
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
Partially roll back upstream commit 4711119089e1ad08dad206f4fded68f1972fdeed
|
||||||
|
since released versions of uClibc don't support isfdtype().
|
||||||
|
|
||||||
|
Signed-off-by: Gustavo Zaarias <gustavo@zacarias.com.ar>
|
||||||
|
|
||||||
|
diff -Nura acpid-2.0.22.orig/sock.c acpid-2.0.22/sock.c
|
||||||
|
--- acpid-2.0.22.orig/sock.c 2014-04-22 18:04:19.706841764 -0300
|
||||||
|
+++ acpid-2.0.22/sock.c 2014-04-22 18:05:08.285479625 -0300
|
||||||
|
@@ -53,7 +53,10 @@
|
||||||
|
int
|
||||||
|
is_socket(int fd)
|
||||||
|
{
|
||||||
|
- return (isfdtype(fd, S_IFSOCK) == 1);
|
||||||
|
+ int v;
|
||||||
|
+ socklen_t l = sizeof(int);
|
||||||
|
+
|
||||||
|
+ return (getsockopt(fd, SOL_SOCKET, SO_TYPE, (char *)&v, &l) == 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* accept a new client connection */
|
@ -4,24 +4,23 @@
|
|||||||
#
|
#
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
ACPID_VERSION = 2.0.11
|
ACPID_VERSION = 2.0.22
|
||||||
ACPID_SOURCE = acpid_$(ACPID_VERSION).orig.tar.gz
|
ACPID_SOURCE = acpid-$(ACPID_VERSION).tar.xz
|
||||||
ACPID_SITE = $(BR2_DEBIAN_MIRROR)/debian/pool/main/a/acpid
|
ACPID_SITE = http://downloads.sourceforge.net/project/acpid2
|
||||||
ACPID_LICENSE = GPLv2+
|
ACPID_LICENSE = GPLv2+
|
||||||
ACPID_LICENSE_FILES = COPYING
|
ACPID_LICENSE_FILES = COPYING
|
||||||
|
|
||||||
define ACPID_BUILD_CMDS
|
define ACPID_INSTALL_INIT_SYSV
|
||||||
$(MAKE) CC="$(TARGET_CC)" -C $(@D)
|
$(INSTALL) -D -m 0755 package/acpid/S02acpid \
|
||||||
|
$(TARGET_DIR)/etc/init.d/S02acpid
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define ACPID_INSTALL_TARGET_CMDS
|
define ACPID_SET_EVENTS
|
||||||
install -D -m 755 $(@D)/acpid $(TARGET_DIR)/usr/sbin/acpid
|
|
||||||
install -D -m 755 $(@D)/acpi_listen $(TARGET_DIR)/usr/bin/acpi_listen
|
|
||||||
install -D -m 644 $(@D)/acpid.8 $(TARGET_DIR)/usr/share/man/man8/acpid.8
|
|
||||||
install -D -m 644 $(@D)/acpi_listen.8 $(TARGET_DIR)/usr/share/man/man8/acpi_listen.8
|
|
||||||
mkdir -p $(TARGET_DIR)/etc/acpi/events
|
mkdir -p $(TARGET_DIR)/etc/acpi/events
|
||||||
/bin/echo -e "event=button[ /]power\naction=/sbin/poweroff" > $(TARGET_DIR)/etc/acpi/events/powerbtn
|
/bin/echo -e "event=button[ /]power\naction=/sbin/poweroff" \
|
||||||
$(INSTALL) -D -m 0755 package/acpid/S02acpid $(TARGET_DIR)/etc/init.d/S02acpid
|
>$(TARGET_DIR)/etc/acpi/events/powerbtn
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(generic-package))
|
ACPID_POST_INSTALL_TARGET_HOOKS += ACPID_SET_EVENTS
|
||||||
|
|
||||||
|
$(eval $(autotools-package))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user