The IXP4xx firmware is now in linux-firmware so use these images instead and drop the special microcode builder package. Apply a change to the github labeler at the same time as the special ixp4xx microcode package no longer exists after this. Link: https://github.com/openwrt/openwrt/pull/24422 Signed-off-by: Linus Walleij <linusw@kernel.org>
43 lines
890 B
Makefile
43 lines
890 B
Makefile
#
|
|
# Copyright (C) 2014 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=linux-firmware
|
|
PKG_VERSION:=20260622
|
|
PKG_RELEASE:=2
|
|
|
|
PKG_SOURCE_URL:=@KERNEL/linux/kernel/firmware
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
|
PKG_HASH:=2b9d8a358e76eb766588609135e53fa548b902c551daae33ee32f26f25e60dbb
|
|
|
|
PKG_MAINTAINER:=Felix Fietkau <nbd@nbd.name>
|
|
|
|
SCAN_DEPS = *.mk
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
RSTRIP:=:
|
|
STRIP:=:
|
|
|
|
define Package/firmware-default
|
|
SECTION:=firmware
|
|
CATEGORY:=Firmware
|
|
URL:=https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git
|
|
TITLE:=$(1)
|
|
DEPENDS:=$(2)
|
|
LICENSE_FILES:=$(3)
|
|
LICENSE:=$(4)
|
|
$(if $(5),PKGFLAGS:=$(5))
|
|
endef
|
|
|
|
define Build/Compile
|
|
|
|
endef
|
|
|
|
include $(wildcard ./*.mk)
|
|
#$(eval $(call BuildPackage,linux-firmware))
|