mirror of
https://github.com/systemd/systemd.git
synced 2024-11-02 19:21:53 +03:00
21 lines
336 B
Plaintext
21 lines
336 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
export UDEV_TEST=yes
|
||
|
export SYSFS_PATH=$PWD/sys/
|
||
|
export UDEV_CONFIG_DIR=$PWD/
|
||
|
export UDEV_ROOT=$PWD/udev/
|
||
|
export UDEV_DB=udev.tdb
|
||
|
export UDEV_CONFIG_FILE=topo_test.config
|
||
|
export UDEV_PERMISSION_FILE=udev.permissions
|
||
|
|
||
|
export ACTION=add
|
||
|
export DEVPATH=block/sda
|
||
|
|
||
|
../udev block
|
||
|
|
||
|
export DEVPATH=block/sda/sda3
|
||
|
|
||
|
../udev block
|
||
|
|
||
|
|