diff options
| author | emmett1 <emmett1.2miligrams@protonmail.com> | 2025-08-19 09:13:46 +0000 |
|---|---|---|
| committer | emmett1 <emmett1.2miligrams@protonmail.com> | 2025-08-19 09:13:46 +0000 |
| commit | 06b5af7ea121a4759b11c337688cf7e38b072e8a (patch) | |
| tree | 6fccebb1a78d0ba4acfe68acf6c2e3752d055140 /repos/extra/linux-firmware/abuild | |
| parent | 2c1ba5408dcde68dd9360232673403e600624647 (diff) | |
| download | alicelinux-06b5af7ea121a4759b11c337688cf7e38b072e8a.tar.gz alicelinux-06b5af7ea121a4759b11c337688cf7e38b072e8a.zip | |
linux-firmware: updated to 20250808
Diffstat (limited to 'repos/extra/linux-firmware/abuild')
| -rw-r--r-- | repos/extra/linux-firmware/abuild | 22 |
1 files changed, 7 insertions, 15 deletions
diff --git a/repos/extra/linux-firmware/abuild b/repos/extra/linux-firmware/abuild index 674f3907..f50675b5 100644 --- a/repos/extra/linux-firmware/abuild +++ b/repos/extra/linux-firmware/abuild @@ -1,21 +1,13 @@ name=linux-firmware -version=20240909 +version=20250808 release=1 -source="https://git.kernel.org/pub/scm/linux/kernel/git/firmware/$name.git/snapshot/$name-$version.tar.gz" +source="https://www.kernel.org/pub/linux/kernel/firmware/${name}-${version}.tar.xz + dedup-firmware.sh + copy-firmware.sh" build() { + cp $SRC/*-firmware.sh . + chmod +x *.sh make install - - # make separate port for them - for i in amd* radeon brcm cypress nvidia qcom netronome mellanox mrvl; do - rm -rf $PKG/lib/firmware/$i - done - - # fix broken symlinks - for f in $(find $PKG -type l); do - #[ -e $f ] || continue - p=$(readlink $f) || continue - p=$(echo $p | sed "s:$PKG::") - ln -svf $p $f - done + make dedup } |