From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B5F82138334 for ; Sat, 3 Aug 2019 16:07:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D9522E07A7; Sat, 3 Aug 2019 16:07:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B9A38E07A7 for ; Sat, 3 Aug 2019 16:07:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5BFDB3493B5 for ; Sat, 3 Aug 2019 16:07:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D220E73E for ; Sat, 3 Aug 2019 16:07:03 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1564848415.ec062d990138a15042619b01261b467beb10df7b.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-kernel/linux-firmware/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-kernel/linux-firmware/linux-firmware-20190726-r1.ebuild sys-kernel/linux-firmware/linux-firmware-20190726-r2.ebuild sys-kernel/linux-firmware/linux-firmware-99999999.ebuild X-VCS-Directories: sys-kernel/linux-firmware/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: ec062d990138a15042619b01261b467beb10df7b X-VCS-Branch: master Date: Sat, 3 Aug 2019 16:07:03 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 048a5b3d-0242-49e0-a533-229e88460d00 X-Archives-Hash: 79c313fdeaa76f26d0cbd7e92f7114b8 commit: ec062d990138a15042619b01261b467beb10df7b Author: Thomas Deutschmann gentoo org> AuthorDate: Sat Aug 3 16:06:40 2019 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Sat Aug 3 16:06:55 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec062d99 sys-kernel/linux-firmware: manually call mount-boot functions This is needed because we overwrite these functions in ebuild. Closes: https://bugs.gentoo.org/691350 Package-Manager: Portage-2.3.69, Repoman-2.3.16 Signed-off-by: Thomas Deutschmann gentoo.org> ...-firmware-20190726-r1.ebuild => linux-firmware-20190726-r2.ebuild} | 4 ++++ sys-kernel/linux-firmware/linux-firmware-99999999.ebuild | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/sys-kernel/linux-firmware/linux-firmware-20190726-r1.ebuild b/sys-kernel/linux-firmware/linux-firmware-20190726-r2.ebuild similarity index 99% rename from sys-kernel/linux-firmware/linux-firmware-20190726-r1.ebuild rename to sys-kernel/linux-firmware/linux-firmware-20190726-r2.ebuild index 528214a68b0..6e50d29e9c7 100644 --- a/sys-kernel/linux-firmware/linux-firmware-20190726-r1.ebuild +++ b/sys-kernel/linux-firmware/linux-firmware-20190726-r2.ebuild @@ -316,6 +316,8 @@ pkg_preinst() { if use savedconfig; then ewarn "USE=savedconfig is active. You must handle file collisions manually." fi + + mount-boot_pkg_preinst } pkg_postinst() { @@ -332,4 +334,6 @@ pkg_postinst() { break fi done + + mount-boot_pkg_postinst } diff --git a/sys-kernel/linux-firmware/linux-firmware-99999999.ebuild b/sys-kernel/linux-firmware/linux-firmware-99999999.ebuild index bc18789f40b..6fd9059b3d5 100644 --- a/sys-kernel/linux-firmware/linux-firmware-99999999.ebuild +++ b/sys-kernel/linux-firmware/linux-firmware-99999999.ebuild @@ -316,6 +316,8 @@ pkg_preinst() { if use savedconfig; then ewarn "USE=savedconfig is active. You must handle file collisions manually." fi + + mount-boot_pkg_preinst } pkg_postinst() { @@ -332,4 +334,6 @@ pkg_postinst() { break fi done + + mount-boot_pkg_postinst }