b385cd6d75
- Update to version 2.29.1: * lscpu: add aarch64 specific names * lubmount: Disable disable ro/rw mtab checks (bsc#1012632) * More details at: https://www.kernel.org/pub/linux/utils/util-linux/v2.29/v2.29.1-ReleaseNotes - Replace raw initscript by a systemd service doing the same thing. Based on previous work of fcrozat@suse.com (FATE#321122). OBS-URL: https://build.opensuse.org/request/show/455350 OBS-URL: https://build.opensuse.org/package/show/Base:System/util-linux?expand=0&rev=329
18 lines
367 B
Desktop File
18 lines
367 B
Desktop File
[Unit]
|
|
Description=raw devices
|
|
After=local-fs.target remote-fs.target
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
ExecStart=/bin/sh -c "\
|
|
/sbin/modprobe raw;\
|
|
/sbin/udevadm settle;\
|
|
for i in `grep -v ^# /etc/raw`; do\
|
|
rawdev=`echo $i | cut -f1 -d:`;\
|
|
rawbind=`echo $i | cut -f2- -d:`;\
|
|
/usr/sbin/raw /dev/raw/$rawdev /dev/$rawbind;\
|
|
done"
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|