mirror of
https://github.com/LiBwrt-op/openwrt-6.x.git
synced 2026-01-04 10:08:03 +00:00
The RPi 5 Compute Module expects the same NVRAM as the one from RPi 4 on a different file. Signed-off-by: Dave Marquard <dave-atx@users.noreply.github.com> Link: https://github.com/openwrt/openwrt/pull/18722 Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
43 lines
858 B
Makefile
43 lines
858 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:=20250311
|
|
PKG_RELEASE:=2
|
|
|
|
PKG_SOURCE_URL:=@KERNEL/linux/kernel/firmware
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
|
PKG_HASH:=b1083a36f19aea46f661dcfd4cd462d13933dcb4e7f0dc809525552dd5c3541d
|
|
|
|
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:=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
|
|
|
|
endef
|
|
|
|
include $(wildcard ./*.mk)
|
|
#$(eval $(call BuildPackage,linux-firmware))
|