mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-19 21:58:04 +00:00
murata-firmware: add new package
This package contains firmwares provided by Murata. See https://community.murata.com/. Murata firmwares are used by wifi chip on stm32 boards. Signed-off-by: Thomas Richard <thomas.richard@bootlin.com> Link: https://github.com/openwrt/openwrt/pull/16716 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
This commit is contained in:
parent
456e0aad97
commit
960f5f94d7
57
package/firmware/murata-firmware/Makefile
Normal file
57
package/firmware/murata-firmware/Makefile
Normal file
@ -0,0 +1,57 @@
|
||||
#
|
||||
# Copyright (C) 2024 Bootlin
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=murata-firmware
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_SOURCE_PROTO:=git
|
||||
PKG_SOURCE_DATE:=2024-09-12
|
||||
PKG_SOURCE_URL:=https://github.com/murata-wireless/cyw-fmac-fw.git
|
||||
PKG_MIRROR_HASH:=26f8a2df800666daab183b2842e5b3d591b1e5b31769d5429f9d70527f43d152
|
||||
PKG_SOURCE_VERSION:=50ac17bb65b2342cd954d49d9bc492709d431c3c
|
||||
|
||||
PKG_MAINTAINER:=Thomas Richard <thomas.richard@bootlin.com>
|
||||
PKG_LICENSE_FILES:=LICENCE
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/murata-firmware-default
|
||||
SECTION:=firmware
|
||||
CATEGORY:=Firmware
|
||||
URL:=https://community.murata.com/
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
endef
|
||||
|
||||
define Package/murata-firmware-43430-sdio
|
||||
$(Package/murata-firmware-default)
|
||||
TITLE:=BCM43430 FullMac SDIO firmware
|
||||
CONFLICTS:=cypress-firmware-43430-sdio
|
||||
endef
|
||||
|
||||
define Package/murata-firmware-43430-sdio/install
|
||||
$(INSTALL_DIR) $(1)/lib/firmware/murata
|
||||
$(INSTALL_DATA) \
|
||||
$(PKG_BUILD_DIR)/cyfmac43430-sdio.bin \
|
||||
$(1)/lib/firmware/murata/
|
||||
$(INSTALL_DATA) \
|
||||
$(PKG_BUILD_DIR)/cyfmac43430-sdio.1DX.clm_blob \
|
||||
$(1)/lib/firmware/murata/
|
||||
$(INSTALL_DIR) $(1)/lib/firmware/brcm
|
||||
$(LN) \
|
||||
../murata/cyfmac43430-sdio.bin \
|
||||
$(1)/lib/firmware/brcm/brcmfmac43430-sdio.bin
|
||||
$(LN) \
|
||||
../murata/cyfmac43430-sdio.1DX.clm_blob \
|
||||
$(1)/lib/firmware/brcm/brcmfmac43430-sdio.clm_blob
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,murata-firmware-43430-sdio))
|
||||
|
Loading…
Reference in New Issue
Block a user