mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-12-17 17:31:27 +00:00
6704b5b83e9d smp: fix minor spelling typos
a0c5a18fa2a5 zcbor: upgrade zcbor to 0.7.0
52aee9047ec2 zcbor/smp: replace auto-generated code with zcbor functions
09606bc8e449 smp: print {en,de}code error with 'zcbor_peek_error'
b91c19ef5106 umcumgr/smp: allow disabling 'confirm' and 'test' commands
5849f7a503cd smp: restore timeout value for select()
45d9523c0c13 umcumgr: use 'stderr' for 'usage' only if error occurred
28d0044ab5b3 umcumgr: introduce support for TI serial bootloader
db34a3645b21 umcumgr: add support for 'dump' in TI serial bootloader mode
df3f235bcb3c smp: fix images list print
bde8686bac61 zcbor: upgrade zcbor to 0.8.1
ed34b2816f2b smp: adapt to changes introduced in zcbor 0.8.0
Signed-off-by: Piotr Dymacz <pepe2k@gmail.com>
48 lines
1.1 KiB
Makefile
48 lines
1.1 KiB
Makefile
#
|
|
# Copyright (C) 2023 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:=umcumgr
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://gitlab.com/pepe2k/umcumgr
|
|
PKG_SOURCE_DATE:=2024-02-02
|
|
PKG_SOURCE_VERSION:=ed34b2816f2b65ee0687944a214fdf6ffd94b85f
|
|
|
|
PKG_LICENSE:=Apache-2.0
|
|
PKG_LICENSE_FILES:=
|
|
|
|
PKG_MAINTAINER:=Piotr Dymacz <pepe2k@gmail.com>
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
CMAKE_INSTALL:=1
|
|
|
|
CMAKE_OPTIONS += -DTI_SERIAL_BL_SUPPORT=ON
|
|
CMAKE_OPTIONS += -DTI_SERIAL_BL_DUMPCMD=ON
|
|
CMAKE_OPTIONS += -DCONFIRM_TEST_SUPPORT=OFF
|
|
|
|
define Package/umcumgr
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
DEPENDS:=+libubox
|
|
TITLE:=User space tool for MCUmgr SMP based management
|
|
endef
|
|
|
|
define Package/umcumgr/description
|
|
Simple user space tool for MCU management over MCUmgr SMP protocol
|
|
and Texas Instruments CC13x2/CC26x2 ROM serial bootloader
|
|
endef
|
|
|
|
define Package/umcumgr/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/umcumgr $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,umcumgr))
|