summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2020-04-29 08:48:52 +0200
committerMichał Górny <mgorny@gentoo.org>2020-04-29 08:50:19 +0200
commit1ffccd123f180f1aa01725fdc387564966d490e9 (patch)
tree70c621dc986d368b48cac3b24e2aa785ad22bd2f /eclass
parentsci-geosciences/gpxsee: bump to 7.29 (diff)
downloadgentoo-1ffccd123f180f1aa01725fdc387564966d490e9.tar.gz
gentoo-1ffccd123f180f1aa01725fdc387564966d490e9.tar.bz2
gentoo-1ffccd123f180f1aa01725fdc387564966d490e9.zip
kernel-install.eclass: Print elog about symlink update
Bug: https://bugs.gentoo.org/719910 Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r--eclass/kernel-install.eclass7
1 files changed, 7 insertions, 0 deletions
diff --git a/eclass/kernel-install.eclass b/eclass/kernel-install.eclass
index 1fdeb1bf4dc7..c26af5c2e88b 100644
--- a/eclass/kernel-install.eclass
+++ b/eclass/kernel-install.eclass
@@ -139,6 +139,7 @@ kernel-install_update_symlink() {
else
local symlink_target=$(readlink "${target}")
local symlink_ver=${symlink_target#${target##*/}-}
+ local updated=
if [[ ${symlink_target} == ${target##*/}-* && \
-z ${symlink_ver//[0-9.]/} ]]
then
@@ -151,8 +152,14 @@ kernel-install_update_symlink() {
ebegin "Updating ${target} symlink"
ln -f -n -s "${target##*/}-${version}" "${target}"
eend ${?}
+ updated=1
fi
fi
+
+ if [[ ! ${updated} ]]; then
+ elog "${target} points at another kernel, leaving it as-is."
+ elog "Please use 'eselect kernel' to update it when desired."
+ fi
fi
}