mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2025-12-20 01:20:35 +08:00
Compare commits
6 Commits
00b990d961
...
3f4cad0f70
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3f4cad0f70 | ||
|
|
0c34e70ec9 | ||
|
|
dc670b2621 | ||
|
|
83a5721b93 | ||
|
|
41f26348b9 | ||
|
|
e36012bcc7 |
@@ -5,13 +5,13 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=bbfdm
|
||||
PKG_VERSION:=1.18.17
|
||||
PKG_VERSION:=1.18.18
|
||||
|
||||
USE_LOCAL:=0
|
||||
ifneq ($(USE_LOCAL),1)
|
||||
PKG_SOURCE_PROTO:=git
|
||||
PKG_SOURCE_URL:=https://dev.iopsys.eu/bbf/bbfdm.git
|
||||
PKG_SOURCE_VERSION:=df25ff7ce0e42ea6a489cff2386774887a7dbd37
|
||||
PKG_SOURCE_VERSION:=fbf01a9e30e7ecccc2453af7abfbccf939e27d43
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.zst
|
||||
PKG_MIRROR_HASH:=skip
|
||||
endif
|
||||
|
||||
@@ -6,9 +6,9 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=map-agent
|
||||
PKG_VERSION:=6.5.0.9
|
||||
PKG_VERSION:=6.5.0.10
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_SOURCE_VERSION:=f4d201acde3320b1019c1831315e58a8ecb0290c
|
||||
PKG_SOURCE_VERSION:=1a9763bd4e520975e6951f77e85f369487cf1318
|
||||
PKG_MAINTAINER:=Jakob Olsson <jakob.olsson@iopsys.eu>
|
||||
|
||||
PKG_LICENSE:=BSD-3-Clause
|
||||
|
||||
@@ -5,13 +5,13 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=obuspa
|
||||
PKG_VERSION:=10.0.7.10
|
||||
PKG_VERSION:=10.0.7.11
|
||||
|
||||
LOCAL_DEV:=0
|
||||
ifneq ($(LOCAL_DEV),1)
|
||||
PKG_SOURCE_PROTO:=git
|
||||
PKG_SOURCE_URL:=https://dev.iopsys.eu/bbf/obuspa.git
|
||||
PKG_SOURCE_VERSION:=c3b7c7653edb63326e7070b6891a95ad6cf7a2ee
|
||||
PKG_SOURCE_VERSION:=1594e87bdb9481e6aa4f4cfbe7d975d2094713e6
|
||||
PKG_MAINTAINER:=Vivek Dutta <vivek.dutta@iopsys.eu>
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.zst
|
||||
PKG_MIRROR_HASH:=skip
|
||||
|
||||
@@ -1,27 +0,0 @@
|
||||
From ba976fdb53a7c8690fe7660d44c715838ad239cd Mon Sep 17 00:00:00 2001
|
||||
From: Andreas Gnau <andreas.gnau@iopsys.eu>
|
||||
Date: Mon, 15 Dec 2025 07:26:29 +0100
|
||||
Subject: [PATCH] vendor: bbf_plugin: Fix compatibility with CMake4
|
||||
|
||||
CMake 4 has dropped compatibility with old versions < 3.5, and will
|
||||
drop compatibility for < 3.10 in the future. Update the minimum required
|
||||
CMake version accordingly.
|
||||
|
||||
Signed-off-by: Andreas Gnau <andreas.gnau@iopsys.eu>
|
||||
---
|
||||
src/vendor/bbf_plugin/CMakeLists.txt | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/vendor/bbf_plugin/CMakeLists.txt b/src/vendor/bbf_plugin/CMakeLists.txt
|
||||
index e145dd4f6c12..9df17a1f8a7d 100644
|
||||
--- a/src/vendor/bbf_plugin/CMakeLists.txt
|
||||
+++ b/src/vendor/bbf_plugin/CMakeLists.txt
|
||||
@@ -1,4 +1,4 @@
|
||||
-cmake_minimum_required(VERSION 3.0)
|
||||
+cmake_minimum_required(VERSION 3.0...3.10)
|
||||
|
||||
PROJECT(libuspagentdm.so)
|
||||
|
||||
--
|
||||
2.52.0
|
||||
|
||||
@@ -35,6 +35,10 @@ MAKE_FLAGS = \
|
||||
EXTRA_LIBS="-latomic" \
|
||||
CROSS_PREFIX="$(TARGET_CROSS)"
|
||||
|
||||
# Ensure the static library is built with position independent code so it can
|
||||
# be linked into shared objects.
|
||||
TARGET_CFLAGS += -fPIC
|
||||
|
||||
define Build/Compile
|
||||
# The upstream Makefile uses the same CFLAGS for host and target builds,
|
||||
# which breaks cross-compilation. We work around this by first building
|
||||
|
||||
Reference in New Issue
Block a user