From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6EC071584F2 for ; Wed, 19 Mar 2025 17:24:08 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 571CC34312D for ; Wed, 19 Mar 2025 17:24:08 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 531B311037F; Wed, 19 Mar 2025 17:24:07 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 474A211037F for ; Wed, 19 Mar 2025 17:24:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E6000343131 for ; Wed, 19 Mar 2025 17:24:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 75D651D4D for ; Wed, 19 Mar 2025 17:24:05 +0000 (UTC) From: "Mike Pagano" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Pagano" Message-ID: <1742405030.f7c7bcc9521a72d65be0a651aba7c9768bec5a89.mpagano@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-kernel/linux-firmware/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-kernel/linux-firmware/files/linux-firmware-copy-firmware-r7.patch X-VCS-Directories: sys-kernel/linux-firmware/files/ X-VCS-Committer: mpagano X-VCS-Committer-Name: Mike Pagano X-VCS-Revision: f7c7bcc9521a72d65be0a651aba7c9768bec5a89 X-VCS-Branch: master Date: Wed, 19 Mar 2025 17:24:05 +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: 96773c60-7596-4084-9fe4-546274eb8d21 X-Archives-Hash: 3f48dc7920b20879addd91860e137f80 commit: f7c7bcc9521a72d65be0a651aba7c9768bec5a89 Author: Mike Pagano gentoo org> AuthorDate: Wed Mar 19 17:23:50 2025 +0000 Commit: Mike Pagano gentoo org> CommitDate: Wed Mar 19 17:23:50 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7c7bcc9 sys-kernel/linux-firmware: Remove unused patch Signed-off-by: Mike Pagano gentoo.org> .../files/linux-firmware-copy-firmware-r7.patch | 57 ---------------------- 1 file changed, 57 deletions(-) diff --git a/sys-kernel/linux-firmware/files/linux-firmware-copy-firmware-r7.patch b/sys-kernel/linux-firmware/files/linux-firmware-copy-firmware-r7.patch deleted file mode 100644 index a27c9521815e..000000000000 --- a/sys-kernel/linux-firmware/files/linux-firmware-copy-firmware-r7.patch +++ /dev/null @@ -1,57 +0,0 @@ ---- a/copy-firmware.sh 2024-11-11 03:15:42.000000000 +0100 -+++ b/copy-firmware.sh 2024-12-11 07:45:50.451166572 +0100 -@@ -46,6 +46,16 @@ - shift - ;; - -+ --firmware-list) -+ if [ -n "$2" ]; then -+ FIRMWARE_LIST=$2 -+ shift 2 -+ else -+ echo "ERROR: '--firmware-list' requires a non-empty option argument of firmware files to install" -+ exit 1 -+ fi -+ ;; -+ - *) - if test -n "$destdir"; then - err "unknown command-line options: $*" -@@ -70,8 +80,18 @@ - ./check_whence.py || err "check_whence.py has detected errors." - fi - -+if test -n "${FIRMWARE_LIST}"; then -+ grep -E '^Link:' WHENCE | sed -e 's/^Link: *//g;s/-> //g' | while read l t; do -+ if ! cat "${FIRMWARE_LIST}" | grep -q "${l}"; then continue; fi -+ target="$(realpath --relative-to="$(pwd)" -m -s "$(dirname "$l")/$t")" -+ echo "${target}" >> "${FIRMWARE_LIST}" -+ done -+ FIRMWARE_LIST=$(cat "${FIRMWARE_LIST}") -+fi -+ - # shellcheck disable=SC2162 # file/folder name can include escaped symbols - grep -E '^(RawFile|File):' WHENCE | sed -E -e 's/^(RawFile|File): */\1 /;s/"//g' | while read k f; do -+ [ -n "${FIRMWARE_LIST}" ] && if ! echo "${FIRMWARE_LIST}" | grep -q "${f}"; then continue; fi - install -d "$destdir/$(dirname "$f")" - $verbose "copying/compressing file $f$compext" - if test "$compress" != "cat" && test "$k" = "RawFile"; then -@@ -84,6 +104,7 @@ - - # shellcheck disable=SC2162 # file/folder name can include escaped symbols - grep -E '^Link:' WHENCE | sed -e 's/^Link: *//g;s/-> //g' | while read l t; do -+ [ -n "${FIRMWARE_LIST}" ] && if ! echo "${FIRMWARE_LIST}" | grep -q "${l}"; then continue; fi - directory="$destdir/$(dirname "$l")" - install -d "$directory" - target="$(cd "$directory" && realpath -m -s "$t")" -@@ -98,7 +119,9 @@ - - # Verify no broken symlinks - if test "$(find "$destdir" -xtype l | wc -l)" -ne 0 ; then -- err "Broken symlinks found:\\n$(find "$destdir" -xtype l)" -+ if [ -z "${FIRMWARE_LIST}" ]; then -+ err "Broken symlinks found:\\n$(find "$destdir" -xtype l)" -+ fi - fi - - exit 0