mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 06:48:18 -07:00
If /boot is empty and not a mount point, there is no need to keep the directory around after unmerging the last package that "owns" it. If /boot is a mount point, we ensure it is mounted and Portage will be unable to remove it. If DONT_MOUNT_BOOT is set, the user is responsible for the results. Signed-off-by: Mike Gilbert <floppym@gentoo.org>
44 lines
1.2 KiB
Bash
44 lines
1.2 KiB
Bash
# Copyright 1999-2026 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
# @ECLASS: mount-boot.eclass
|
|
# @MAINTAINER:
|
|
# base-system@gentoo.org
|
|
# @SUPPORTED_EAPIS: 7 8
|
|
# @BLURB: eclass for packages that install files into /boot or the ESP
|
|
# @DESCRIPTION:
|
|
# This eclass is really only useful for bootloaders and kernel installation.
|
|
#
|
|
# If the live system has a separate /boot partition or ESP configured, then this
|
|
# function tries to ensure that it's mounted in rw mode, exiting with an error
|
|
# if it can't. It does nothing if /boot and ESP isn't a separate partition.
|
|
#
|
|
# This eclass exports the functions provided by mount-boot-utils.eclass to
|
|
# the pkg_pretend and pkg_{pre,post}{inst,rm} phases.
|
|
|
|
case ${EAPI} in
|
|
7|8) ;;
|
|
*) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
|
|
esac
|
|
|
|
inherit mount-boot-utils
|
|
|
|
mount-boot_pkg_pretend() {
|
|
mount-boot_check_status
|
|
}
|
|
|
|
mount-boot_pkg_preinst() {
|
|
mount-boot_check_status
|
|
}
|
|
|
|
mount-boot_pkg_prerm() {
|
|
mount-boot_check_status
|
|
}
|
|
|
|
# No-op phases for backwards compatibility
|
|
mount-boot_pkg_postinst() { :; }
|
|
|
|
mount-boot_pkg_postrm() { :; }
|
|
|
|
EXPORT_FUNCTIONS pkg_pretend pkg_preinst pkg_postinst pkg_prerm pkg_postrm
|