update buildroot to 2017.02.11
This commit is contained in:
@@ -0,0 +1,66 @@
|
||||
From d3cfa80631a7e314fee9b2e0822e403fcf2a5c5c Mon Sep 17 00:00:00 2001
|
||||
From: Peter Korsgaard <peter@korsgaard.com>
|
||||
Date: Sun, 31 Jul 2016 10:28:43 +0200
|
||||
Subject: [PATCH] eventtable.h: use correct array sizes to fix building against
|
||||
4.7+ headers
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
During the 4.7 development cycle, commit 9a9b6aa6a8 (Input: add
|
||||
SW_PEN_INSERTED define) got added, which has the same numerical value as
|
||||
SW_MAX:
|
||||
|
||||
+#define SW_PEN_INSERTED 0x0f /* set = pen inserted */
|
||||
+#define SW_MAX 0x0f
|
||||
|
||||
This breaks the build as the SW_NAME array is sized using the SW_MAX macro:
|
||||
|
||||
In file included from eventtable.h:21:0,
|
||||
from eventnames.c:11:
|
||||
evtable_SW.inc:17:1: error: array index in initializer exceeds array bounds
|
||||
EV_MAP(SW_PEN_INSERTED),
|
||||
^
|
||||
evtable_SW.inc:17:1: error: (near initialization for ‘SW_NAME’)
|
||||
|
||||
The arrays should be sized using the <foo>_CNT (which is MAX+1) macros
|
||||
instead of <foo>_MAX. These got added during the 2.6.24 development cycle,
|
||||
so it should be safe to do so unconditially:
|
||||
|
||||
commit 7b19ada2ed3c1eccb9fe94d74b05e1428224663d
|
||||
Author: Jiri Slaby <jirislaby@gmail.com>
|
||||
Date: Thu Oct 18 23:40:32 2007 -0700
|
||||
|
||||
get rid of input BIT* duplicate defines
|
||||
|
||||
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
|
||||
---
|
||||
eventtable.h | 6 +++---
|
||||
1 file changed, 3 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/eventtable.h b/eventtable.h
|
||||
index 349d9d7..7cd99aa 100644
|
||||
--- a/eventtable.h
|
||||
+++ b/eventtable.h
|
||||
@@ -8,15 +8,15 @@
|
||||
|
||||
#define EV_MAP( N ) [ N ] = #N
|
||||
|
||||
-static const char *EV_NAME[EV_MAX] = {
|
||||
+static const char *EV_NAME[EV_CNT] = {
|
||||
#include "evtable_EV.inc"
|
||||
};
|
||||
|
||||
-static const char *KEY_NAME[KEY_MAX] = {
|
||||
+static const char *KEY_NAME[KEY_CNT] = {
|
||||
#include "evtable_KEY.inc"
|
||||
#include "evtable_BTN.inc"
|
||||
};
|
||||
|
||||
-static const char *SW_NAME[SW_MAX] = {
|
||||
+static const char *SW_NAME[SW_CNT] = {
|
||||
#include "evtable_SW.inc"
|
||||
};
|
||||
--
|
||||
2.8.1
|
||||
|
||||
11
bsp/buildroot-2017.02.11/package/triggerhappy/Config.in
Normal file
11
bsp/buildroot-2017.02.11/package/triggerhappy/Config.in
Normal file
@@ -0,0 +1,11 @@
|
||||
config BR2_PACKAGE_TRIGGERHAPPY
|
||||
bool "triggerhappy"
|
||||
depends on BR2_USE_MMU # fork()
|
||||
help
|
||||
Triggerhappy is a hotkey daemon developed with small and
|
||||
embedded systems in mind, e.g. linux based routers. It
|
||||
attaches to the input device files and interprets the event
|
||||
data received and executes scripts configured in its
|
||||
configuration.
|
||||
|
||||
https://github.com/wertarbyte/triggerhappy
|
||||
40
bsp/buildroot-2017.02.11/package/triggerhappy/S10triggerhappy
Executable file
40
bsp/buildroot-2017.02.11/package/triggerhappy/S10triggerhappy
Executable file
@@ -0,0 +1,40 @@
|
||||
#!/bin/sh
|
||||
|
||||
NAME=thd
|
||||
DAEMON=/usr/sbin/$NAME
|
||||
PIDFILE=/var/run/$NAME.pid
|
||||
DAEMON_ARGS="--daemon --triggers /etc/triggerhappy/triggers.d --socket /var/run/thd.socket --pidfile $PIDFILE --user nobody /dev/input/event*"
|
||||
|
||||
# Sanity checks
|
||||
test -x $DAEMON || exit 0
|
||||
|
||||
[ -r /etc/default/triggerhappy ] && . /etc/default/triggerhappy
|
||||
|
||||
start() {
|
||||
printf "Starting $NAME: "
|
||||
start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON -- $DAEMON_ARGS \
|
||||
&& echo "OK" || echo "FAIL"
|
||||
}
|
||||
|
||||
stop() {
|
||||
printf "Stopping $NAME: "
|
||||
start-stop-daemon --stop --quiet --pidfile $PIDFILE \
|
||||
&& echo "OK" || echo "FAIL"
|
||||
}
|
||||
|
||||
case "$1" in
|
||||
start)
|
||||
start
|
||||
;;
|
||||
stop)
|
||||
stop
|
||||
;;
|
||||
restart)
|
||||
stop
|
||||
sleep 1
|
||||
start
|
||||
;;
|
||||
*)
|
||||
echo "Usage: $0 {start|stop|restart}"
|
||||
exit 1
|
||||
esac
|
||||
@@ -0,0 +1,2 @@
|
||||
# Locally calculated
|
||||
sha256 6b01497377e522c368818c5f6c726362f42530e3dc24a01c6d77b1b4d6068308 triggerhappy-7e5abc69f215678e93a6b999524981c8b40bdcd9.tar.gz
|
||||
@@ -0,0 +1,43 @@
|
||||
################################################################################
|
||||
#
|
||||
# triggerhappy
|
||||
#
|
||||
################################################################################
|
||||
|
||||
TRIGGERHAPPY_VERSION = 7e5abc69f215678e93a6b999524981c8b40bdcd9
|
||||
TRIGGERHAPPY_SITE = $(call github,wertarbyte,triggerhappy,$(TRIGGERHAPPY_VERSION))
|
||||
TRIGGERHAPPY_LICENSE = GPLv3+
|
||||
TRIGGERHAPPY_LICENSE_FILES = COPYING
|
||||
|
||||
define TRIGGERHAPPY_BUILD_CMDS
|
||||
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) thd th-cmd
|
||||
endef
|
||||
|
||||
ifeq ($(BR2_PACKAGE_HAS_UDEV),y)
|
||||
define TRIGGERHAPPY_INSTALL_UDEV_RULE
|
||||
$(INSTALL) -D -m 0644 $(@D)/udev/triggerhappy-udev.rules \
|
||||
$(TARGET_DIR)/lib/udev/rules.d/triggerhappy.rules
|
||||
endef
|
||||
endif
|
||||
|
||||
define TRIGGERHAPPY_INSTALL_TARGET_CMDS
|
||||
$(INSTALL) -d $(TARGET_DIR)/etc/triggerhappy/triggers.d
|
||||
$(INSTALL) -D -m 0755 $(@D)/thd $(TARGET_DIR)/usr/sbin/thd
|
||||
$(INSTALL) -D -m 0755 $(@D)/th-cmd $(TARGET_DIR)/usr/sbin/th-cmd
|
||||
$(TRIGGERHAPPY_INSTALL_UDEV_RULE)
|
||||
endef
|
||||
|
||||
define TRIGGERHAPPY_INSTALL_INIT_SYSV
|
||||
$(INSTALL) -m 0755 -D package/triggerhappy/S10triggerhappy \
|
||||
$(TARGET_DIR)/etc/init.d/S10triggerhappy
|
||||
endef
|
||||
|
||||
define TRIGGERHAPPY_INSTALL_INIT_SYSTEMD
|
||||
$(INSTALL) -D -m 644 package/triggerhappy/triggerhappy.service \
|
||||
$(TARGET_DIR)/usr/lib/systemd/system/triggerhappy.service
|
||||
mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants
|
||||
ln -sf ../../../../usr/lib/systemd/system/triggerhappy.service \
|
||||
$(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/triggerhappy.service
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
@@ -0,0 +1,9 @@
|
||||
[Unit]
|
||||
Description=Triggerhappy daemon
|
||||
|
||||
[Service]
|
||||
ExecStart=/usr/sbin/thd --triggers /etc/triggerhappy/triggers.d --socket /var/run/thd.socket --user nobody /dev/input/event*
|
||||
Restart=always
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
Reference in New Issue
Block a user