Merge pull request #245305 from K900/linux-firmware-20230725

linux-firmware: 20230625 -> unstable-2023-07-24

authored by K900 and committed by GitHub ae7e8aba 7dd5e078

+4 -4
+3 -3
pkgs/os-specific/linux/firmware/linux-firmware/source.nix
··· 1 1 # This file is autogenerated! Run ./update.sh to regenerate. 2 2 { 3 - version = "20230625"; 4 - sourceHash = "sha256-olRaUVnCri/sJU6ob+QgNxEZF8GzVxxEh8zdNJIZlYY="; 5 - outputHash = "sha256-zSlMpAPbW7ewEBzDre47/7NJyy2pC0GSbkyOVVi+4gU="; 3 + version = "unstable-2023-07-24"; 4 + sourceHash = "sha256-WyO/+fxQljfo6OXLC8/BomGmKtUQaJ1Lt9V5Fdv172g="; 5 + outputHash = "sha256-wHWPSyqxP+MGmerbc2v/hclFFJ7qKCDsupK5GASjp8s="; 6 6 }
+1 -1
pkgs/os-specific/linux/firmware/linux-firmware/update.sh
··· 5 5 repo="https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git" 6 6 7 7 # step 1: figure out the latest version from the tags 8 - if [ -z "$1" ]; then 8 + if [ -z "${1:-}" ]; then 9 9 version="$(git ls-remote --refs --tags --sort refname "$repo" | tail -n1 | cut -f2 | cut -d '/' -f3)" 10 10 else 11 11 version=$1