mirror of
https://github.com/openwrt/packages.git
synced 2026-05-31 06:51:51 +08:00
6a3b110f4f
Update from 6.11 to 7.5. Notable changes across releases: - 7.5: fix cifscreds command-line option parsing and ambiguous command matching; documentation updates for echo_interval parameter - 7.4: retry logic for -EINPROGRESS errors during mount operations; improved handling for multiple IP address resolution scenarios - 7.3: fix guest mount option handling; prevent empty password parameters from being passed to the SMB client - 7.2: improve return code checking in getcifsacl; better handling of permission-related errors across different kernel versions - 7.1: add upcall_target mount option for namespace resolution; enable credential lookups in host or application namespace (e.g., Kubernetes) - 7.0: migrate files to /usr per DEP17 M2 standard - 6.15: fix CVE-2022-27239 (stack buffer overflow in ip= argument parsing) and CVE-2022-29869 (info leak in verbose logging) Add libtalloc dependency to cifsmount Add test.sh to verify mount.cifs and smbinfo report the correct version. Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
83 lines
2.0 KiB
Makefile
83 lines
2.0 KiB
Makefile
#
|
|
# Copyright (C) 2007-2012 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:=cifs-utils
|
|
PKG_VERSION:=7.5
|
|
PKG_RELEASE:=2
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
PKG_SOURCE_URL:=https://download.samba.org/pub/linux-cifs/cifs-utils/
|
|
PKG_HASH:=7face85e3d2d5eb5e7adbd181adee6759097f135b10d6fb30be8e070af7e7054
|
|
|
|
PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
|
|
PKG_LICENSE:=GPL-3.0-or-later
|
|
PKG_LICENSE_FILES:=COPYING
|
|
PKG_CPE_ID:=cpe:/a:samba:cifs-utils
|
|
|
|
PKG_FIXUP:=autoreconf
|
|
PKG_INSTALL:=1
|
|
PKG_BUILD_PARALLEL:=1
|
|
PKG_BUILD_FLAGS:=lto
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/cifsmount
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
SUBMENU:=Filesystem
|
|
DEPENDS:=+kmod-fs-cifs +libtalloc
|
|
TITLE:=CIFS mount
|
|
URL:=https://wiki.samba.org/index.php/LinuxCIFS_utils
|
|
endef
|
|
|
|
define Package/smbinfo
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
DEPENDS:=+kmod-fs-cifs +libtalloc
|
|
TITLE:=SMB info
|
|
URL:=https://wiki.samba.org/index.php/LinuxCIFS_utils
|
|
endef
|
|
|
|
CONFIGURE_ARGS += \
|
|
--disable-cifsupcall \
|
|
--disable-cifscreds \
|
|
--disable-cifsidmap \
|
|
--disable-cifsacl \
|
|
--disable-pam \
|
|
--disable-pie \
|
|
--disable-relro \
|
|
--disable-systemd \
|
|
--disable-man \
|
|
--without-libcap
|
|
|
|
CONFIGURE_ARGS += \
|
|
ac_cv_lib_cap_ng_capng_clear=no
|
|
|
|
TARGET_CFLAGS += $(FPIC) -ffunction-sections -I$(STAGING_DIR)/usr/include
|
|
TARGET_LDFLAGS += -Wl,--gc-sections,--as-needed
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(1)/usr/include
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/include/cifsidmap.h $(1)/usr/include/
|
|
endef
|
|
|
|
define Package/cifsmount/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/sbin/mount.cifs $(1)/usr/sbin/
|
|
$(LN) mount.cifs $(1)/usr/sbin/mount.smb3
|
|
endef
|
|
|
|
define Package/smbinfo/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/smbinfo $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,cifsmount))
|
|
$(eval $(call BuildPackage,smbinfo))
|