mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-24 18:42:14 +08:00
7 lines
221 B
Bash
7 lines
221 B
Bash
|
#! /bin/sh
|
||
|
# Creates root symlink in /dev
|
||
|
# for Arch Linux by Roman Kyrylych <Roman.Kyrylych@gmail.com>
|
||
|
|
||
|
if ! [ -L /dev/root ]; then
|
||
|
ln -s $(cat /proc/cmdline | sed "s: :\n:g" | grep root= | sed "s:root=::") /dev/root
|
||
|
fi
|