diff options
| author | Florian Eckert | 2024-03-13 12:21:34 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2024-03-29 12:11:47 +0000 |
| commit | 5c14de1d7e715ef882f34925ee6702b847efcbbd (patch) | |
| tree | 3ac48ff59e0689473b3ea45704d73a555222e502 | |
| parent | b1d579f174186b58e9b7694e4c2e673acfe13b55 (diff) | |
| download | openwrt-5c14de1d7e715ef882f34925ee6702b847efcbbd.tar.gz | |
linux-firmware: add LICENSE_FILES and LICENSE file handling
The firmware blobs have all different licenses from the different
manufacturers of the binary blobs. This information is contained in the
upstream 'linux-firmware' repositroy.
This commit extends the package handling so that this information can be
added as an additional argument during packages generation.
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
| -rw-r--r-- | package/firmware/linux-firmware/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/firmware/linux-firmware/Makefile b/package/firmware/linux-firmware/Makefile index d056140f45..b86177b91a 100644 --- a/package/firmware/linux-firmware/Makefile +++ b/package/firmware/linux-firmware/Makefile @@ -30,6 +30,8 @@ define Package/firmware-default URL:=http://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git TITLE:=$(1) DEPENDS:=$(2) + LICENSE_FILES:=$(3) + LICENSE:=$(4) endef define Build/Compile |