mirror of
https://github.com/AuxXxilium/eudev.git
synced 2024-12-15 11:07:24 +07:00
6bf0ffe8fd
All the rule files can be compiled into a single file, which can be mapped into the udev process to avoid parsing the rules with every event. Signed-off-by: Kay Sievers <kay.sievers@suse.de>
34 lines
454 B
Bash
Executable File
34 lines
454 B
Bash
Executable File
#!/bin/bash
|
|
|
|
RULES=replace_test.rules
|
|
CONFIG=replace_test.conf
|
|
|
|
export SYSFS_PATH=$PWD/sys/
|
|
export UDEV_CONFIG_FILE=$PWD/$CONFIG
|
|
|
|
cat > $RULES << EOF
|
|
KERNEL="ttyUSB0", NAME="visor"
|
|
EOF
|
|
|
|
cat > $CONFIG << EOF
|
|
udev_root="$PWD/udev/"
|
|
udev_db="$PWD/udev/.udevdb"
|
|
udev_rules="$PWD/$RULES"
|
|
EOF
|
|
|
|
mkdir udev
|
|
|
|
export DEVPATH=class/tty/ttyUSB0
|
|
export ACTION=add
|
|
|
|
../udev tty
|
|
ls -l udev
|
|
|
|
export ACTION=remove
|
|
../udev tty
|
|
ls -l udev
|
|
|
|
rm $RULES
|
|
rm $CONFIG
|
|
rm -rf udev
|