blob: ce9758ba3aa36139595c1c32b7b87f94c7881d17 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001include $(TOPDIR)/rules.mk
2
3PKG_NAME:=jboot-tools
4PKG_RELEASE:=1
5CMAKE_INSTALL:=1
6PKG_FLAGS:=nonshared
7
8include $(INCLUDE_DIR)/package.mk
9include $(INCLUDE_DIR)/cmake.mk
10
11define Package/jboot-tools
12 SECTION:=firmware
13 CATEGORY:=Firmware
14 DEPENDS:=@TARGET_ramips
15 TITLE:=Utilites for accessing JBOOT based D-Link devices Calibration data
16endef
17
18define Package/jboot-tools/description
19 This package contains:
20 jboot_config_read.c: partially read the config partition of JBOOT based D-Link devices.
21endef
22
23define Package/jboot-tools/install
24 $(INSTALL_DIR) $(1)/usr/bin
25 $(INSTALL_BIN) $(PKG_BUILD_DIR)/jboot_config_read $(1)/usr/bin/
26endef
27
28$(eval $(call BuildPackage,jboot-tools))