[gentoo-dev] Gentoo Foundations Trustee Election 2020 - Election Team Formation
Team, Its time to kick off the Trustee Election for this year. It will span June 21 to about August 3. We need two or three election officials and an infra contact to staff this election. If you will be available and have a little free time in that period recruiting is now open. Potential candidates should not apply. -- Regards, Roy Bamford (Neddyseagoon) a member of elections gentoo-ops forum-mods arm64 pgpzBD_87RDHL.pgp Description: PGP signature
Re: [gentoo-dev] Gentoo Foundations Trustee Election 2020 - Election Team Formation
On Wed, Jun 17, 2020 at 5:08 AM Roy Bamford wrote: > > Team, > > Its time to kick off the Trustee Election for this year. > > It will span June 21 to about August 3. > We need two or three election officials and an infra contact to staff this > election. > > If you will be available and have a little free time in that period > recruiting is now open. > Potential candidates should not apply. > > -- > Regards, > > Roy Bamford > (Neddyseagoon) a member of > elections > gentoo-ops > forum-mods > arm64 Hi Roy, I can help out. Regards, -- David Abbott (dabbott)
Re: [gentoo-dev] Gentoo Foundations Trustee Election 2020 - Election Team Formation
On 2020.06.17 10:40, David Abbott wrote: > On Wed, Jun 17, 2020 at 5:08 AM Roy Bamford > wrote: > > > > Team, > > > > Its time to kick off the Trustee Election for this year. > > > > It will span June 21 to about August 3. > > We need two or three election officials and an infra contact to > staff this election. > > > > If you will be available and have a little free time in that period > recruiting is now open. > > Potential candidates should not apply. > > > > -- > > Regards, > > > > Roy Bamford > > (Neddyseagoon) a member of > > elections > > gentoo-ops > > forum-mods > > arm64 > > Hi Roy, > I can help out. > Regards, > > -- > David Abbott (dabbott) > > David, Thank you. I've signed you up at https://wiki.gentoo.org/wiki/Project:Elections/Trustees/202006 -- Regards, Roy Bamford (Neddyseagoon) a member of elections gentoo-ops forum-mods arm64 pgpuDUKOvE2Vu.pgp Description: PGP signature
[gentoo-dev] [PATCH 1/2] kernel-install.eclass: Add pkg_config() to reinstall
Add a pkg_config() phase that can be used to rebuild the initramfs and reinstall the kernel without rebuilding the whole package. Signed-off-by: Michał Górny --- eclass/kernel-install.eclass | 23 +++ 1 file changed, 23 insertions(+) diff --git a/eclass/kernel-install.eclass b/eclass/kernel-install.eclass index efccd70608c0..b3ef186a74eb 100644 --- a/eclass/kernel-install.eclass +++ b/eclass/kernel-install.eclass @@ -330,7 +330,30 @@ kernel-install_pkg_postrm() { fi } +# @FUNCTION: kernel-install_pkg_config +# @DESCRIPTION: +# Rebuild the initramfs and reinstall the kernel. +kernel-install_pkg_config() { + [[ -z ${ROOT} ]] || die "ROOT!=/ not supported currently" + + mount-boot_pkg_preinst + + local image_path=$(kernel-install_get_image_path) + if use initramfs; then + # putting it alongside kernel image as 'initrd' makes + # kernel-install happier + kernel-install_build_initramfs \ + "${EROOT}/usr/src/linux-${PV}/${image_path%/*}/initrd" \ + "${PV}" + fi + + kernel-install_install_kernel "${PV}" \ + "${EROOT}/usr/src/linux-${PV}/${image_path}" \ + "${EROOT}/usr/src/linux-${PV}/System.map" +} + _KERNEL_INSTALL_ECLASS=1 fi EXPORT_FUNCTIONS src_test pkg_preinst pkg_postinst pkg_prerm pkg_postrm +EXPORT_FUNCTIONS pkg_config -- 2.27.0
[gentoo-dev] [PATCH 2/2] kernel-install.eclass: Warn about linux-firmware in pkg_pretend()
Signed-off-by: Michał Górny --- eclass/kernel-install.eclass | 25 - 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/eclass/kernel-install.eclass b/eclass/kernel-install.eclass index b3ef186a74eb..8065a8f5638e 100644 --- a/eclass/kernel-install.eclass +++ b/eclass/kernel-install.eclass @@ -260,6 +260,29 @@ kernel-install_test() { EOF } +# @FUNCTION: kernel-install_pkg_pretend +# @DESCRIPTION: +# Check for missing optional dependencies and output warnings. +kernel-install_pkg_pretend() { + debug-print-function ${FUNCNAME} "${@}" + + if ! has_version -d sys-kernel/linux-firmware; then + ewarn "sys-kernel/linux-firmware not found installed on your system." + ewarn "This package provides various firmware files that may be needed" + ewarn "for your hardware to work. If in doubt, it is recommended" + ewarn "to pause or abort the build process and install it before" + ewarn "resuming." + + if use initramfs; then + elog + elog "If you decide to install linux-firmware later, you can rebuild" + elog "the initramfs via issuing a command equivalent to:" + elog + elog "emerge --config ${CATEGORY}/${PN}" + fi + fi +} + # @FUNCTION: kernel-install_src_test # @DESCRIPTION: # Boilerplate function to remind people to call the tests. @@ -356,4 +379,4 @@ _KERNEL_INSTALL_ECLASS=1 fi EXPORT_FUNCTIONS src_test pkg_preinst pkg_postinst pkg_prerm pkg_postrm -EXPORT_FUNCTIONS pkg_config +EXPORT_FUNCTIONS pkg_config pkg_pretend -- 2.27.0
Re: [gentoo-dev] [PATCH 2/2] kernel-install.eclass: Warn about linux-firmware in pkg_pretend()
> On Wed, 17 Jun 2020, Michał Górny wrote: > +# @FUNCTION: kernel-install_pkg_pretend > +# @DESCRIPTION: > +# Check for missing optional dependencies and output warnings. > +kernel-install_pkg_pretend() { > + debug-print-function ${FUNCNAME} "${@}" > + > + if ! has_version -d sys-kernel/linux-firmware; then > + ewarn "sys-kernel/linux-firmware not found installed on your > system." > + ewarn "This package provides various firmware files that may be > needed" > + ewarn "for your hardware to work. If in doubt, it is > recommended" > + ewarn "to pause or abort the build process and install it > before" > + ewarn "resuming." > + > + if use initramfs; then > + elog > + elog "If you decide to install linux-firmware later, > you can rebuild" > + elog "the initramfs via issuing a command equivalent > to:" > + elog > + elog "emerge --config ${CATEGORY}/${PN}" > + fi > + fi > +} Should we really warn about a package that (in its default configuration) can only be installed if the user accepts non-free licenses? I would think that even without such a warning, users will be well aware if some devices of their system will need additional firmware. Also, some people prefer the separate packages from sys-firmware which tend to be more lightweight (though I am aware that some of them may be considered legacy packages). Ulrich signature.asc Description: PGP signature
Re: [gentoo-dev] [PATCH 2/2] kernel-install.eclass: Warn about linux-firmware in pkg_pretend()
On Wed, 2020-06-17 at 12:57 +0200, Ulrich Mueller wrote: > > > > > > On Wed, 17 Jun 2020, Michał Górny wrote: > > > +# @FUNCTION: kernel-install_pkg_pretend > > +# @DESCRIPTION: > > +# Check for missing optional dependencies and output warnings. > > +kernel-install_pkg_pretend() { > > + debug-print-function ${FUNCNAME} "${@}" > > + > > + if ! has_version -d sys-kernel/linux-firmware; then > > + ewarn "sys-kernel/linux-firmware not found installed on your > > system." > > + ewarn "This package provides various firmware files that may be > > needed" > > + ewarn "for your hardware to work. If in doubt, it is > > recommended" > > + ewarn "to pause or abort the build process and install it > > before" > > + ewarn "resuming." > > + > > + if use initramfs; then > > + elog > > + elog "If you decide to install linux-firmware later, > > you can rebuild" > > + elog "the initramfs via issuing a command equivalent > > to:" > > + elog > > + elog "emerge --config ${CATEGORY}/${PN}" > > + fi > > + fi > > +} > > Should we really warn about a package that (in its default > configuration) can only be installed if the user accepts non-free > licenses? That's one of the reasons it's only a warning and not a USE flag. > I would think that even without such a warning, users will be well aware > if some devices of their system will need additional firmware. Also, > some people prefer the separate packages from sys-firmware which tend to > be more lightweight (though I am aware that some of them may be > considered legacy packages). > This has been requested by users, some of whom apparently forget that they need to manually install one more package for their system to even boot. If it saves a few people from having to go through recovery, it's worth it. -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part
Re: [gentoo-dev] [PATCH 2/2] kernel-install.eclass: Warn about linux-firmware in pkg_pretend()
> On Wed, 17 Jun 2020, Michał Górny wrote: >> Should we really warn about a package that (in its default >> configuration) can only be installed if the user accepts non-free >> licenses? > That's one of the reasons it's only a warning and not a USE flag. Still, "Gentoo will never depend upon a piece of software or metadata unless it conforms to [a free license]" (Social Contract). If you really think that you must have that message, can you at least downgrade it to einfo or elog? That would still be very visible, given that it's in the pretend phase where there tends to be little output. Ulrich signature.asc Description: PGP signature
Re: [gentoo-dev] [PATCH 2/2] kernel-install.eclass: Warn about linux-firmware in pkg_pretend()
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On Wed, 17 Jun 2020 13:08:56 +0200 Michał Górny wrote: > On Wed, 2020-06-17 at 12:57 +0200, Ulrich Mueller wrote: > > > > > > > On Wed, 17 Jun 2020, Michał Górny wrote: > > > > > +# @FUNCTION: kernel-install_pkg_pretend > > > +# @DESCRIPTION: > > > +# Check for missing optional dependencies and output warnings. > > > +kernel-install_pkg_pretend() { > > > + debug-print-function ${FUNCNAME} "${@}" > > > + > > > + if ! has_version -d sys-kernel/linux-firmware; then > > > + ewarn "sys-kernel/linux-firmware not found > > > installed on your system." > > > + ewarn "This package provides various firmware > > > files that may be needed" > > > + ewarn "for your hardware to work. If in doubt, > > > it is recommended" > > > + ewarn "to pause or abort the build process and > > > install it before" > > > + ewarn "resuming." > > > + > > > + if use initramfs; then > > > + elog > > > + elog "If you decide to install > > > linux-firmware later, you can rebuild" > > > + elog "the initramfs via issuing a > > > command equivalent to:" > > > + elog > > > + elog "emerge --config > > > ${CATEGORY}/${PN}" > > > + fi > > > + fi > > > +} > > > > Should we really warn about a package that (in its default > > configuration) can only be installed if the user accepts non-free > > licenses? > > That's one of the reasons it's only a warning and not a USE flag. > > > I would think that even without such a warning, users will be well > > aware if some devices of their system will need additional > > firmware. Also, some people prefer the separate packages from > > sys-firmware which tend to be more lightweight (though I am aware > > that some of them may be considered legacy packages). > > > > This has been requested by users, some of whom apparently forget that > they need to manually install one more package for their system to > even boot. If it saves a few people from having to go through > recovery, it's worth it. > You're probably better with a proper check like what debian's scripts do: https://salsa.debian.org/kernel-team/initramfs-tools/-/blob/master/hook-functions#L101 so that there is only a warning when the real file is missing; this would also handle cases with non-linux-firmware firmwares or USE=savedconfig there -BEGIN PGP SIGNATURE- iHUEAREIAB0WIQSpOxaxaZikKNVNlsYOJUi7xgflrgUCXun+HwAKCRAOJUi7xgfl rlAIAP97XGdJwGvbWcDwMfZ5lptj/TRdhS77mzCAl2OY2CZ12gD+P8Csx0bnQnk0 4NvZwkoBl+fFiaGWvUFkva08A8MKOoo= =ayj9 -END PGP SIGNATURE-
Re: [gentoo-dev] [PATCH 2/2] kernel-install.eclass: Warn about linux-firmware in pkg_pretend()
On Wed, 2020-06-17 at 13:22 +0200, Ulrich Mueller wrote: > > > > > > On Wed, 17 Jun 2020, Michał Górny wrote: > > > Should we really warn about a package that (in its default > > > configuration) can only be installed if the user accepts non-free > > > licenses? > > That's one of the reasons it's only a warning and not a USE flag. > > Still, "Gentoo will never depend upon a piece of software or metadata > unless it conforms to [a free license]" (Social Contract). > > If you really think that you must have that message, can you at least > downgrade it to einfo or elog? That would still be very visible, given > that it's in the pretend phase where there tends to be little output. > Can we please put users above silly politics? Gentoo 'does not depend' on any non-free package to print the warning. If people have hardware that requires non-free firmware, the least we can do is point out where to get this firmware from. -- Best regards, Michał Górny signature.asc Description: This is a digitally signed message part
Re: [gentoo-dev] [PATCH 2/2] kernel-install.eclass: Warn about linux-firmware in pkg_pretend()
> On Wed, 17 Jun 2020, Michał Górny wrote: > Can we please put users above silly politics? Gentoo 'does not depend' > on any non-free package to print the warning. If people have hardware > that requires non-free firmware, the least we can do is point out where > to get this firmware from. s/If/If and only if/ and I'll be fine with it. :) signature.asc Description: PGP signature
Re: [gentoo-dev] [PATCH 2/2] kernel-install.eclass: Warn about linux-firmware in pkg_pretend()
On 17/06/2020 12:57, Ulrich Mueller wrote: On Wed, 17 Jun 2020, Michał Górny wrote: +# @FUNCTION: kernel-install_pkg_pretend +# @DESCRIPTION: +# Check for missing optional dependencies and output warnings. +kernel-install_pkg_pretend() { + debug-print-function ${FUNCNAME} "${@}" + + if ! has_version -d sys-kernel/linux-firmware; then + ewarn "sys-kernel/linux-firmware not found installed on your system." + ewarn "This package provides various firmware files that may be needed" + ewarn "for your hardware to work. If in doubt, it is recommended" + ewarn "to pause or abort the build process and install it before" + ewarn "resuming." + + if use initramfs; then + elog + elog "If you decide to install linux-firmware later, you can rebuild" + elog "the initramfs via issuing a command equivalent to:" + elog + elog "emerge --config ${CATEGORY}/${PN}" + fi + fi +} Should we really warn about a package that (in its default configuration) can only be installed if the user accepts non-free licenses? Yes, since those binary blobs are needed to have functioning hardware. lu
Re: [gentoo-dev] [PATCH 2/2] kernel-install.eclass: Warn about linux-firmware in pkg_pretend()
On Wed, Jun 17, 2020 at 7:42 AM Ulrich Mueller wrote: > > > On Wed, 17 Jun 2020, Michał Górny wrote: > > > Can we please put users above silly politics? Gentoo 'does not depend' > > on any non-free package to print the warning. If people have hardware > > that requires non-free firmware, the least we can do is point out where > > to get this firmware from. > > s/If/If and only if/ and I'll be fine with it. :) Are you proposing that the ebuild inspect the user's hardware and/or kernel config before printing a warning? That sounds like a terrible idea to me. Who is going to maintain the problematic hardware list? I do think it would be nice to give people a way to opt-out of seeing this warning message every time they install a kernel though.
Re: [gentoo-dev] [PATCH 2/2] kernel-install.eclass: Warn about linux-firmware in pkg_pretend()
On Wed, 17 Jun 2020 10:58:03 -0400 Mike Gilbert wrote: > On Wed, Jun 17, 2020 at 7:42 AM Ulrich Mueller wrote: > > > > > On Wed, 17 Jun 2020, Michał Górny wrote: > > > > > Can we please put users above silly politics? Gentoo 'does not > > > depend' on any non-free package to print the warning. If people > > > have hardware that requires non-free firmware, the least we can > > > do is point out where to get this firmware from. > > > > s/If/If and only if/ and I'll be fine with it. :) > > Are you proposing that the ebuild inspect the user's hardware and/or > kernel config before printing a warning? That sounds like a terrible > idea to me. Who is going to maintain the problematic hardware list? The kernel. Try 'modinfo -F firmware iwlwifi'. e.g. something like that could work: modinfo -F firmware $(lsmod | sed '1d' | awk '{print $1}') or if there is a need to be extra protective, iterate over all installed modules.
Re: [gentoo-dev] [PATCH 2/2] kernel-install.eclass: Warn about linux-firmware in pkg_pretend()
> On Wed, 17 Jun 2020, Mike Gilbert wrote: >> s/If/If and only if/ and I'll be fine with it. :) > Are you proposing that the ebuild inspect the user's hardware and/or > kernel config before printing a warning? Of course not. > That sounds like a terrible idea to me. Who is going to maintain the > problematic hardware list? > I do think it would be nice to give people a way to opt-out of seeing > this warning message every time they install a kernel though. IMHO this type of message just adds noise to emerge output, which elsewhere we have fought to reduce (using readme.gentoo-r1.eclass, for example). So yes, you need to install a kernel, a bootloader, and maybe some specific system tools and firmware. All of this is documented in the handbook [1], and for the others we don't display messages all the time if we divine that something could be possibly missing. Anyway, this is just about verboseness of output. I think I've made my point, so I'll shut up now. :) Ulrich [1] https://wiki.gentoo.org/wiki/Handbook:AMD64/Installation/Kernel#Optional:_Installing_firmware signature.asc Description: PGP signature
Re: [gentoo-dev] Graphics Project disbanded [pkgs up for grabs]
On 2020-06-06 20:50, Aaron Bauman wrote: > media-gfx/darktable > media-gfx/pngcrush I'll take these. -- MS signature.asc Description: OpenPGP digital signature