]> git.ipfire.org Git - thirdparty/systemd.git/commit
kernel-install/90-loaderentry: fix when /boot is not mountpoint
authorKir Kolyshkin <kolyshkin@gmail.com>
Sat, 1 Aug 2020 02:24:15 +0000 (19:24 -0700)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Mon, 3 Aug 2020 08:01:03 +0000 (10:01 +0200)
commit1cdbff1c844ce46f1d84d8feeed426ebfd550988
tree6e072c431dd357cd67c6d3da79424400daeda209
parent6f646e01755df587bb33dae4ca78cdaad5721f5e
kernel-install/90-loaderentry: fix when /boot is not mountpoint

I happen to have a machine where /boot is not a separate mountpoint,
but rather just a directory under /. After upgrade to recent Fedora,
I found out that grub2 can't find any new kernels.

This happens because loadentry script generates kernel and initrd file
paths relative to /boot, while grub2 expects path to be relative to the
root of filesystem on which they are residing.

This commit fixes this issue by using stat's %m to find the mount point
of a partition holding the images, and using it as a prefix to be
removed from ENTRY_DIR_ABS.

Note that %m for stat requires coreutils 8.6, released in Oct 2010.

Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
src/kernel-install/90-loaderentry.install