mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-24 22:16:14 +00:00
f35a29d63f
Both packages `ombnia-mcu-firmware` and `omnia-mcutool` would depend on a specific device. The buildbots however build all devices and therefore the package isn't build at all, due to unmet dependencies. While this didn't cause issues with OPKG, APK fails actively due to the missing packages. Drop the specific dependency, however wants to install unrelated firmware on any device can do that anyway. Signed-off-by: Paul Spooren <mail@aparcar.org>
49 lines
1.3 KiB
Makefile
49 lines
1.3 KiB
Makefile
#
|
|
# Copyright (C) 2024 CZ.NIC z.s.p.o. (http://www.nic.cz/)
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=omnia-mcu-firmware
|
|
PKG_DISTNAME:=omnia_hw_ctrl
|
|
PKG_VERSION:=4.1
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_SUBDIR:=$(PKG_DISTNAME)-binaries-v$(PKG_VERSION)
|
|
PKG_SOURCE:=$(PKG_SOURCE_SUBDIR).tar.bz2
|
|
PKG_SOURCE_URL:=https://gitlab.nic.cz/turris/hw/$(PKG_DISTNAME)/-/releases/v$(PKG_VERSION)/downloads/
|
|
PKG_HASH:=9c6a3d88ae2ca093dd35aace040f0b1eb1cb5c1141575b45623bdd64d733c59f
|
|
|
|
PKG_MAINTAINER:=Marek Mojik <marek.mojik@nic.cz>
|
|
PKG_LICENSE:=GPL-3.0-or-later
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_SOURCE_SUBDIR)
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/omnia-mcu-firmware
|
|
SECTION:=firmware
|
|
CATEGORY:=Firmware
|
|
URL:=https://gitlab.nic.cz/turris/hw/$(PKG_DISTNAME)/-/releases
|
|
TITLE:=CZ.NIC Turris Omnia MCU firmware
|
|
endef
|
|
|
|
define Package/omnia-mcu-firmware/description
|
|
Firmware binaries for the microcontroller on the Turris Omnia router. These are
|
|
used by the omnia-mcutool utility when upgrading MCU firmware.
|
|
endef
|
|
|
|
define Build/Compile
|
|
true
|
|
endef
|
|
|
|
define Package/omnia-mcu-firmware/install
|
|
$(INSTALL_DIR) $(1)/usr/share/omnia-mcu-firmware/
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/*.bin $(1)/usr/share/omnia-mcu-firmware/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,omnia-mcu-firmware))
|