mirror of
git://git.yoctoproject.org/meta-raspberrypi.git
synced 2025-07-05 05:04:45 +02:00

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>
22 lines
524 B
Plaintext
22 lines
524 B
Plaintext
KERNEL=="ttyAMA[01]", PROGRAM="/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\
|
|
'", SYMLINK+="serial%c"
|
|
|
|
KERNEL=="ttyS0", PROGRAM="/bin/sh -c '\
|
|
ALIASES=/proc/device-tree/aliases; \
|
|
if cmp -s $$ALIASES/uart1 $$ALIASES/serial0; then \
|
|
echo 0; \
|
|
elif cmp -s $$ALIASES/uart1 $$ALIASES/serial1; then \
|
|
echo 1; \
|
|
else \
|
|
exit 1; \
|
|
fi \
|
|
'", SYMLINK+="serial%c"
|