mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-21 20:46:14 +00:00
1a728cfc1a
Remove kernel 5.15 remnants. Signed-off-by: Mieczyslaw Nalewaj <namiltd@yahoo.com> Link: https://github.com/openwrt/openwrt/pull/16417 Signed-off-by: Robert Marko <robimarko@gmail.com>
43 lines
871 B
Makefile
43 lines
871 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=fitblk
|
|
PKG_RELEASE:=2
|
|
PKG_LICENSE:=GPL-2.0-only
|
|
PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
|
|
|
|
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
|
|
|
PKG_FLAGS:=nonshared
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/fitblk
|
|
HIDDEN:=1
|
|
SECTION:=base
|
|
CATEGORY:=Base system
|
|
TITLE:=fitblk firmware release tool
|
|
endef
|
|
|
|
define Package/fitblk/description
|
|
Release uImage.FIT block devices using ioctl.
|
|
endef
|
|
|
|
define Build/Configure
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
CC="$(TARGET_CC)" \
|
|
CFLAGS="$(TARGET_CFLAGS) -Wall -Werror" \
|
|
LDFLAGS="$(TARGET_LDFLAGS)"
|
|
endef
|
|
|
|
define Package/fitblk/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/fitblk $(1)/usr/sbin/
|
|
$(INSTALL_DIR) $(1)/lib/upgrade
|
|
$(INSTALL_DATA) ./files/fit.sh $(1)/lib/upgrade
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,fitblk))
|