Systemd/test/replace_test
Kay Sievers 6bf0ffe8fd allow rules to be compiled to one binary file
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>
2005-06-24 18:05:32 +02:00

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