Compare commits

..

No commits in common. "e66e26287321671805b7cad62f758a8bf8ff1b15" and "4b693586043f1b27bb450db86b8430309f5413d4" have entirely different histories.

2 changed files with 6 additions and 10 deletions

View file

@ -1,13 +1,9 @@
ARCH = arm
VERSION = 1.29.0
ENABLE_UDEV ?= t
CCPREFIX = arm-linux-gnueabihf-
ARCH=arm
VERSION=1.29.0
CCPREFIX=arm-linux-gnueabihf-
SRC := src/usr/local/syncthing/start.sh src/usr/local/syncthing/stop.sh
ifeq ($(ENABLE_UDEV),t)
SRC += src/etc/udev/rules.d/99-syncthing.rules
endif
SRC_REL := $(subst src/,./,$(SRC))
SRC := $(shell find src -type f | tail -n+2)
SRC_REL := $(shell cd src && find ./ -type f)
TARCONTENT :=
all: KoboRoot.tgz

View file

@ -1,2 +1,2 @@
KERNEL=="eth*", ACTION=="add", RUN+="/usr/local/syncthing/start.sh"
KERNEL=="wlan*", ACTION=="add", RUN+="/usr/local/syncthing/start.sh"
KERNEL=="wlan*", ACTION=="remove", RUN+="/usr/local/syncthing/stop.sh"