mirror of
https://git.yoctoproject.org/meta-raspberrypi
synced 2026-07-20 17:16:56 +00:00
99-com.rules: fix error invalid substitution type
fix below error:
/etc/udev/rules.d/99-com.rules:10 Invalid value "/bin/sh -c
'ALIASES=/proc/device-tree/aliases; if cmp -s $ALIASES/uart0
$ALIASES/serial0; then echo 0;elif cmp -s $ALIASES/uart0
$ALIASES/serial1; then echo 1; else exit 1; fi'" for PROGRAM (char 58:
invalid substitution type)
Signed-off-by: Changqing Li <changqing.li@windriver.com>
(cherry picked from commit fb253346c2)
Signed-off-by: Pavel Zhukov <pavel.zhukov@huawei.com>
This commit is contained in:
committed by
Andrei Gherzan
parent
c4d091732c
commit
2e704f5ef6
@@ -1,8 +1,8 @@
|
|||||||
KERNEL=="ttyAMA[01]", PROGRAM="/bin/sh -c '\
|
KERNEL=="ttyAMA[01]", PROGRAM="/bin/sh -c '\
|
||||||
ALIASES=/proc/device-tree/aliases; \
|
ALIASES=/proc/device-tree/aliases; \
|
||||||
if cmp -s $ALIASES/uart0 $ALIASES/serial0; then \
|
if cmp -s $$ALIASES/uart0 $$ALIASES/serial0; then \
|
||||||
echo 0;\
|
echo 0;\
|
||||||
elif cmp -s $ALIASES/uart0 $ALIASES/serial1; then \
|
elif cmp -s $$ALIASES/uart0 $$ALIASES/serial1; then \
|
||||||
echo 1; \
|
echo 1; \
|
||||||
else \
|
else \
|
||||||
exit 1; \
|
exit 1; \
|
||||||
@@ -11,9 +11,9 @@ KERNEL=="ttyAMA[01]", PROGRAM="/bin/sh -c '\
|
|||||||
|
|
||||||
KERNEL=="ttyS0", PROGRAM="/bin/sh -c '\
|
KERNEL=="ttyS0", PROGRAM="/bin/sh -c '\
|
||||||
ALIASES=/proc/device-tree/aliases; \
|
ALIASES=/proc/device-tree/aliases; \
|
||||||
if cmp -s $ALIASES/uart1 $ALIASES/serial0; then \
|
if cmp -s $$ALIASES/uart1 $$ALIASES/serial0; then \
|
||||||
echo 0; \
|
echo 0; \
|
||||||
elif cmp -s $ALIASES/uart1 $ALIASES/serial1; then \
|
elif cmp -s $$ALIASES/uart1 $$ALIASES/serial1; then \
|
||||||
echo 1; \
|
echo 1; \
|
||||||
else \
|
else \
|
||||||
exit 1; \
|
exit 1; \
|
||||||
|
|||||||
Reference in New Issue
Block a user