Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 750968 - sys-boot/systemd-boot: needs to install /usr/lib/kernel/install.d/00-entry-directory.install
Summary: sys-boot/systemd-boot: needs to install /usr/lib/kernel/install.d/00-entry-di...
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Mike Gilbert
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2020-10-24 04:55 UTC by Georgy Yakovlev
Modified: 2023-09-18 01:30 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Georgy Yakovlev archtester gentoo-dev 2020-10-24 04:55:15 UTC
logic in /usr/lib/kernel/install.d/90-loaderentry.install

checks for /boot/${machine_id}/<kernel-vers> directory and if it does not exist  - it does nothing.

if ! [[ -d "$ENTRY_DIR_ABS" ]]; then
    exit 0
fi


00-entry-directory.install is the file that creates that directory.
if [ "$KERNEL_INSTALL_VERBOSE" -gt 0 ]; then
    echo "+mkdir -v -p $ENTRY_DIR_ABS"
    exec mkdir -v -p "$ENTRY_DIR_ABS"
else
    exec mkdir -p "$ENTRY_DIR_ABS"
fi


can you please revbump the ebuild and install this file?
Comment 1 Mike Gilbert gentoo-dev 2023-09-18 01:30:09 UTC
Fixed in sys-apps/systemd-utils.