diff options
Diffstat (limited to 'sys-kernel/linux-firmware')
-rw-r--r-- | sys-kernel/linux-firmware/Manifest | 1 | ||||
-rw-r--r-- | sys-kernel/linux-firmware/files/linux-firmware-copy-firmware-r6.patch | 47 |
2 files changed, 0 insertions, 48 deletions
diff --git a/sys-kernel/linux-firmware/Manifest b/sys-kernel/linux-firmware/Manifest index 1fd43ab2ab91..563058d2690a 100644 --- a/sys-kernel/linux-firmware/Manifest +++ b/sys-kernel/linux-firmware/Manifest @@ -1,6 +1,5 @@ AUX 35-amd-microcode-systemd.install 1276 BLAKE2B 02931b234a85400824d61e815e6f65b2ca351d064919b60953967a895e2d084e4b52c4667dc2e991ab0a68eeebcfd0a6f30a1e2327a06d4ba1768363f2d027c2 SHA512 11562f0c3161cf79a78e6683a632078abc54fcd677e9336096ca29efff715088b8912e7b7d766381aacb9099b284767abd3c1d0faabb824569251d125ef123a8 AUX 35-amd-microcode.install 1321 BLAKE2B 4205a10d0224869245b62707ae830dd290dfd198dacd2db9702ea4a7e48408e18c398940d15066bf9cd88217b4d35fbd2b63578d2354bc138072f17a0b5cfcc9 SHA512 037c10c4be658022cab76fda45a41bcf4e49d31470444c719bf2eba04a73b24d6a3eab7404c5f194f812f136e8503336768090b82f027717df4712e4725f0cf5 -AUX linux-firmware-copy-firmware-r6.patch 1843 BLAKE2B 8d848533a3f6b60e3053eb2b7761b87f1a11467c8300e54124442c368b7e83592137537108aab59f2951ca3e316052ee431f685c6549674abba4145eed948dd2 SHA512 b18f6aa4006526ff7b2d0d3d47491aa0f275cca257d491ebfb631b7f7c8869844e5a44f66874d07602d00be2927a01a0e25c1757c8c8af982fed09834d589578 AUX linux-firmware-copy-firmware-r7.patch 2218 BLAKE2B a06ccc834d5142da9fda5392c6fcf6872c4d9e915f08705652a319ffe3527a6219d2f0d120353c9f93c4ff2054aa917096ddd34c1824a23d560bd1f8abeed16c SHA512 934da2cc51cfa8769954d3a531ae70c87ebe0e8d817f404bc3fac93bc6fec28f062110895e76dbada061706219b7def6d014eee9a5a3d4fe342c41d124a7086f AUX linux-firmware-copy-firmware-r8.patch 2175 BLAKE2B 78851b00d6655c98f2ac63215aa270858a00b34fd2705a40b864aee9f36cf123cc94a3dc5048e59d098429dfd29ca1d5e48821b02c4bbd1894ade37d99c740d7 SHA512 f173fa8d58c4195bf82163e6b9025fed86e7c8800b6a9947a9319142c5f331cdd3e3b26eed51a17ea1355ad1ed02e9c8bb43a4f061a5d4728b7c3e63b8c94657 AUX linux-firmware-make-amd-ucode-img.bash 2911 BLAKE2B 94586ef124310da2314655ebb517c71e3ac73ca636df3c534d4bd5de4ab175b5aa3d40bffe5c126e292a08cff677542df276660380d3b1f474326c9e456b2ee1 SHA512 21465fe141d5c58bb9a50653788f1084833b0a698aaca4b2dc589bd9129c9f3ee87f179791ef5dd8fda4182a48e378e0f83abbb452422b3462b8e81b57ca43a0 diff --git a/sys-kernel/linux-firmware/files/linux-firmware-copy-firmware-r6.patch b/sys-kernel/linux-firmware/files/linux-firmware-copy-firmware-r6.patch deleted file mode 100644 index 58d77d4b090d..000000000000 --- a/sys-kernel/linux-firmware/files/linux-firmware-copy-firmware-r6.patch +++ /dev/null @@ -1,47 +0,0 @@ ---- a/copy-firmware.sh 2024-10-19 13:21:08.888499335 -0000 -+++ b/copy-firmware.sh 2024-10-19 13:23:16.775386475 -0000 -@@ -46,6 +46,17 @@ while test $# -gt 0; do - shift - ;; - -+ --firmware-list) -+ if [ -n "$2" ]; then -+ FIRMWARE_LIST=`cat $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,6 +81,7 @@ $verbose "Checking that WHENCE file is f - - # 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 -@@ -82,6 +94,7 @@ done - - # 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 "${t}"; then continue; fi - directory="$destdir/$(dirname "$l")" - install -d "$directory" - target="$(cd "$directory" && realpath -m -s "$t")" -@@ -96,7 +109,9 @@ done - - # 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 |