diff options
author | Emmanuel Vadot <manu@FreeBSD.org> | 2024-12-12 16:13:58 +0000 |
---|---|---|
committer | Emmanuel Vadot <manu@FreeBSD.org> | 2024-12-16 09:44:47 +0000 |
commit | af0a81b6470aba4af4a24ae9804053722846ded4 (patch) | |
tree | 389add8cf3d3592f9d4e095b7ae5b18d318dc322 /share/Makefile | |
parent | 11f3da5655194c46b4acdde586ac1b8d6a196994 (diff) |
iwm: Stop shipping firmware as kernel module
Since we can load raw firmware start shipping them as is.
This also remove the uuencode format that don't add any value and garbage
collect old firmwares version.
For pkgbase users they are now in the FreeBSD-firmware-iwm package.
Sponsored by: Beckhoff Automation GmbH & Co. KG
Diffstat (limited to 'share/Makefile')
-rw-r--r-- | share/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/share/Makefile b/share/Makefile index a94fe6334709..13126b118875 100644 --- a/share/Makefile +++ b/share/Makefile @@ -8,6 +8,7 @@ SUBDIR= ${_colldef} \ ${_doc} \ ${_dtrace} \ ${_examples} \ + ${_firmwares} \ ${_i18n} \ keys \ ${_man} \ @@ -45,6 +46,10 @@ _dict= dict _examples= examples .endif +.if ${MK_SOURCELESS_UCODE} != "no" +_firmwares= firmwares +.endif + .if ${MK_ICONV} != "no" _i18n= i18n .endif |