blob: d5df0ee609f3f8e78691e523092e8c298d2574bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
if [ "${root%%:*}" = "block" ]; then
{
printf 'KERNEL=="%s", SYMLINK+="root"\n' \
"${root#block:/dev/}"
printf 'SYMLINK=="%s", SYMLINK+="root"\n' \
"${root#block:/dev/}"
} >> /etc/udev/rules.d/99-root.rules
# shellcheck disable=SC2016
printf '[ -e "%s" ] && { ln -s "%s" /dev/root 2>/dev/null; rm "$job"; }\n' \
"${root#block:}" "${root#block:}" > "$hookdir"/initqueue/settled/blocksymlink.sh
wait_for_dev "${root#block:}"
fi
|