Skip to content

Commit d3d0f61

Browse files
authored
Merge pull request #617 from ddiss/lkl_fix_progs_build
lkl: fix default build target to include progs
2 parents e183e40 + 101d4a4 commit d3d0f61

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

tools/lkl/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export CFLAGS += -I$(OUTPUT)/include -Iinclude -Wall -g -O2 -Wextra \
5353
include Targets
5454

5555
TARGETS := $(progs-y:%=$(OUTPUT)%$(EXESUF))
56-
TARGETS := $(tests-y:%=$(OUTPUT)%$(EXESUF))
56+
TARGETS += $(tests-y:%=$(OUTPUT)%$(EXESUF))
5757
TARGETS += $(libs-y:%=$(OUTPUT)%$(SOSUF))
5858
all: $(TARGETS)
5959

tools/lkl/systemd/61-lklfuse.rules

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
SUBSYSTEM!="block", SUBSYSTEMS!="usb", GOTO="lklfuse_end"
1+
SUBSYSTEM!="block", GOTO="lklfuse_end"
2+
ENV{ID_BUS}!="usb", GOTO="lklfuse_end"
23
#TAG+="lklfuse-dbg-block-filter"
34
# XXX remove should be handled by systemd service ConditionPathExists for %k
45
# device node, but it doesn't appear to work, so manually stop.

0 commit comments

Comments
 (0)