mirror of
https://github.com/systemd/systemd.git
synced 2024-12-27 07:22:31 +03: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>
36 lines
537 B
Bash
Executable File
36 lines
537 B
Bash
Executable File
#!/bin/bash
|
|
|
|
RULES=label_test.rules
|
|
CONFIG=label_test.conf
|
|
|
|
export SYSFS_PATH=$PWD/sys/
|
|
export UDEV_CONFIG_FILE=$PWD/$CONFIG
|
|
|
|
cat > $RULES << EOF
|
|
SYSFS{address}="00:e0:00:8d:9f:25", NAME="wireless"
|
|
EOF
|
|
|
|
cat > $CONFIG << EOF
|
|
udev_root="$PWD/udev/"
|
|
udev_db="$PWD/udev/.udevdb"
|
|
udev_rules="$PWD/$RULES"
|
|
EOF
|
|
|
|
mkdir udev
|
|
|
|
export ACTION=add
|
|
export DEVPATH=class/net/eth1
|
|
|
|
../udevtest class/net/eth1 net
|
|
ls -l udev
|
|
|
|
export ACTION=remove
|
|
export DEVPATH=class/net/eth1
|
|
|
|
../udevtest class/net/eth1 net
|
|
ls -l udev
|
|
|
|
rm $RULES
|
|
rm $CONFIG
|
|
rm -rf udev
|