diff options
author | John Helmert III <ajak@gentoo.org> | 2021-12-12 13:40:26 -0600 |
---|---|---|
committer | John Helmert III <ajak@gentoo.org> | 2021-12-13 23:41:01 -0600 |
commit | 33bb454c9678ab13d58662a07a143f1bee47cafe (patch) | |
tree | d678f3d146b9ba4229156c72c9980415d79cfd99 /eclass | |
parent | profiles: add pax-utils to info_pkgs (diff) | |
download | gentoo-33bb454c9678ab13d58662a07a143f1bee47cafe.tar.gz gentoo-33bb454c9678ab13d58662a07a143f1bee47cafe.tar.bz2 gentoo-33bb454c9678ab13d58662a07a143f1bee47cafe.zip |
mount-boot.eclass: support EAPI 8
Signed-off-by: John Helmert III <ajak@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/mount-boot.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/mount-boot.eclass b/eclass/mount-boot.eclass index 2b07160231a6..3111d9dcb9b5 100644 --- a/eclass/mount-boot.eclass +++ b/eclass/mount-boot.eclass @@ -4,7 +4,7 @@ # @ECLASS: mount-boot.eclass # @MAINTAINER: # base-system@gentoo.org -# @SUPPORTED_EAPIS: 6 7 +# @SUPPORTED_EAPIS: 6 7 8 # @BLURB: functions for packages that install files into /boot # @DESCRIPTION: # This eclass is really only useful for bootloaders. @@ -14,7 +14,7 @@ # error if it can't. It does nothing if /boot isn't a separate partition. case ${EAPI:-0} in - 6|7) ;; + 6|7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac |