Ubuntu: Fix a symlink path
ScottHaney reported in issue #6258 that GRUB had complaints about /dev/luks1, and using an absolute path for the symlink fixed that. I'm not entirely sure if this is necessary, but I don't see how the absolute path is any worse.
parent
9a7ec50858
commit
6fbe58566b
|
@ -261,7 +261,7 @@ Even if you prefer a non-English system language, always ensure that `en_US.UTF-
|
||||||
ENV{DM_NAME}!="", SYMLINK+="$env{DM_NAME}"
|
ENV{DM_NAME}!="", SYMLINK+="$env{DM_NAME}"
|
||||||
ENV{DM_NAME}!="", SYMLINK+="dm-name-$env{DM_NAME}"
|
ENV{DM_NAME}!="", SYMLINK+="dm-name-$env{DM_NAME}"
|
||||||
|
|
||||||
# ln -s mapper/luks1 /dev/luks1
|
# ln -s /dev/mapper/luks1 /dev/luks1
|
||||||
|
|
||||||
**Notes:**
|
**Notes:**
|
||||||
* The use of `initramfs` is a work-around for [cryptsetup does not support ZFS](https://bugs.launchpad.net/ubuntu/+source/cryptsetup/+bug/1612906).
|
* The use of `initramfs` is a work-around for [cryptsetup does not support ZFS](https://bugs.launchpad.net/ubuntu/+source/cryptsetup/+bug/1612906).
|
||||||
|
|
Loading…
Reference in New Issue