diff options
author | Ada Stevenson <adanskana@gmail.com> | 2023-11-13 14:46:12 +0800 |
---|---|---|
committer | John Kehayias <john.kehayias@protonmail.com> | 2023-11-28 01:40:56 -0500 |
commit | 170c52a7cfa734ee1d3091311c6dd507dea35ea5 (patch) | |
tree | 82b9e68b7be7188e582a96f3eeb1387b8113e3e8 /nongnu/packages/patches | |
parent | 621ca1767cfc8c88f8b2ac5fd16c3ad5ac2ce8ad (diff) |
gnu: linux-firmware: Update to 20231111.
* nongnu/packages/linux.scm (linux-firmware): Update to 20231111.
[source]: Add patch.
* nongnu/packages/patches/copy-firmware-rdfind.patch: New file.
Signed-off-by: John Kehayias <john.kehayias@protonmail.com>
Diffstat (limited to 'nongnu/packages/patches')
-rw-r--r-- | nongnu/packages/patches/copy-firmware-rdfind.patch | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/nongnu/packages/patches/copy-firmware-rdfind.patch b/nongnu/packages/patches/copy-firmware-rdfind.patch new file mode 100644 index 0000000..08ccfad --- /dev/null +++ b/nongnu/packages/patches/copy-firmware-rdfind.patch @@ -0,0 +1,31 @@ +diff --git a/copy-firmware.sh b/copy-firmware.sh +index f9b1f0ff..de28e882 100755 +--- a/copy-firmware.sh ++++ b/copy-firmware.sh +@@ -69,11 +69,6 @@ if [ -z "$destdir" ]; then + exit 1 + fi + +-if ! which rdfind 2>/dev/null >/dev/null; then +- echo "ERROR: rdfind is not installed" +- exit 1 +-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 + test -f "$f" || continue +@@ -87,14 +82,6 @@ grep -E '^(RawFile|File):' WHENCE | sed -E -e 's/^(RawFile|File): */\1 /;s/"//g' + fi + done + +-$verbose "Finding duplicate files" +-rdfind -makesymlinks true -makeresultsfile false "$destdir" >/dev/null +-find "$destdir" -type l | while read -r l; do +- target="$(realpath "$l")" +- $verbose "Correcting path for $l" +- ln -fs "$(realpath --relative-to="$(dirname "$(realpath -s "$l")")" "$target")" "$l" +-done +- + # shellcheck disable=SC2162 # file/folder name can include escaped symbols + grep -E '^Link:' WHENCE | sed -e 's/^Link: *//g;s/-> //g' | while read f d; do + if test -L "$f$compext"; then |