forked from pool/systemd
5c11ee24a0
- Create and own more systemd drop-in directories. - Improve mini packages for bootstrapping. - do not mount /tmp as tmpfs by default. - Fix install script when there is no inittab - Create a systemd-mini specfile to prevent cycle in bootstrapping OBS-URL: https://build.opensuse.org/request/show/139371 OBS-URL: https://build.opensuse.org/package/show/Base:System/systemd?expand=0&rev=300
14 lines
406 B
Bash
14 lines
406 B
Bash
#!/bin/sh
|
|
|
|
eval $(/sbin/udevadm info --export --export-prefix=ROOT_ --device-id-of-file=/)
|
|
|
|
[ "$ROOT_MAJOR" -gt 0 ] || return
|
|
mkdir -m 0755 -p /run/udev/rules.d >/dev/null 2>&1
|
|
ln -sf /run/udev /dev/.udev 2>/dev/null || :
|
|
|
|
echo "ACTION==\"add|change\", SUBSYSTEM==\"block\", \
|
|
ENV{MAJOR}==\"$ROOT_MAJOR\", ENV{MINOR}==\"$ROOT_MINOR\", \
|
|
SYMLINK+=\"root\"" > /run/udev/rules.d/10-root-symlink.rules
|
|
|
|
exit 0
|