File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed
features/add-udev-rules/bin Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -193,7 +193,7 @@ UNITTEST_DIRS = $(sort \
193193 $(wildcard $(1 ) /tests $(1 ) /* /tests) ) )
194194
195195check-unit : $(UNITTEST_DIRS )
196- @testing/tests/run $?
196+ @env PATH= " $( CURDIR ) /tools: $$ PATH " testing/tests/run $?
197197
198198check-services :
199199 @rc=0; \
Original file line number Diff line number Diff line change 33
44. shell-error
55. shell-quote
6+ . sh-functions
67
78UDEV_BUILTINS=()
89readarray -t UDEV_BUILTINS <<< " $(
Original file line number Diff line number Diff line change @@ -15,6 +15,11 @@ export outfile="$workdir/initrd.img"
1515
1616: ${KERNEL:? kernel version required}
1717
18+ message () { msg-timestamp " $PROG : $* " >&2 ; }
19+ verbose1 () { [ -z " ${verbose1-} " ] || message " $@ " ; }
20+ verbose2 () { [ -z " ${verbose2-} " ] || message " $@ " ; }
21+ verbose3 () { [ -z " ${verbose3-} " ] || message " $@ " ; }
22+
1823kernel_major=" ${KERNEL%% .* } "
1924
2025kernel_minor=" ${KERNEL#* .} "
3742[ -d " $KERNEL_MODULES_DIR " ] ||
3843 fatal " Directory \" $KERNEL_MODULES_DIR \" doesn't exist or not accessible."
3944
40- verbose1 () { [ -z " ${verbose1-} " ] || message " $@ " ; }
41- verbose2 () { [ -z " ${verbose2-} " ] || message " $@ " ; }
42- verbose3 () { [ -z " ${verbose3-} " ] || message " $@ " ; }
43-
4445get_majmin () {
4546 local v devnode
4647
You can’t perform that action at this time.
0 commit comments