aboutsummaryrefslogtreecommitdiff
path: root/utils/ntfs-3g
Commit message (Collapse)AuthorAge
* utils/ntfs-3g: fix PKG_CPE_IDFabrice Fontaine2024-02-04
| | | | | | | | | | tuxera:ntfs-3g is a better CPE ID than ntfs-3g:ntfs-3g as this CPE ID has the latest CVEs (whereas ntfs-3g:ntfs-3g only has one CVE from 2007): https://nvd.nist.gov/products/cpe/search/results?keyword=cpe:2.3:a:tuxera:ntfs-3g Fixes: 299e5b0a9bce19d6e96cb9ff217028b36ee2dd36 (treewide: add PKG_CPE_ID for better cvescanner coverage) Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
* treewide: remove AUTORELEASEPaul Fertser2023-04-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Automatically compute and substitute current values for all $(AUTORELEASE) instances as this feature is deprecated and shouldn't be used. The following temporary change was made to the core: diff --git a/rules.mk b/rules.mk index 57d7995d4fa8..f16367de87a8 100644 --- a/rules.mk +++ b/rules.mk @@ -429,7 +429,7 @@ endef abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1)))) COMMITCOUNT = $(if $(DUMP),0,$(call commitcount)) -AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1)) +AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile)) all: FORCE: ; And this command used to fix affected packages: for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \ sed 's^.*/\([^/]*\)/Makefile^\1^';); do make package/$i/download done Signed-off-by: Paul Fertser <fercerpav@gmail.com>
* ntfs-3g: update to 2022.5.17Rosen Penev2022-06-04
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* ntfs-3g: update config's help syntaxEneas U de Queiroz2021-10-28
| | | | | | | Change ---help--- to plain 'help' in Package/ntfs-3g/config, as newer versions of kconfig have removed the command's older name. Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
* ntfs-3g: bump to 2021.8.22 (CVE fixes)Sebastian Kemper2021-09-01
| | | | | | | | | | | | Upstream announced new release which includes fixes for 21 CVEs (see [1]). Upstream changed the symlink "mkfs.ntfs" to respect "--sbin-dir". So this commit adjusts this likewise in the Makefile. [1] https://www.openwall.com/lists/oss-security/2021/08/30/1 Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
* ntfs-3g: make symlinks relativeRosen Penev2020-12-17
| | | | | | Fixes dead symlinks in InstallDev. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* ntfs-3g: do not install mount.ntfs into /usr/sbinRosen Penev2020-04-25
| | | | | | | | | | ntfs-3g does not include nor install a file like this. Cleaned up Makefile for consistency between packages. Added PKG_BUILD_PARALLEL for faster compilation. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* treewide: add PKG_CPE_ID for better cvescanner coverageJan Pavlinec2019-09-17
| | | | Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
* ntfs-3g: allow build without ntfs3g.probe utilityRosy Song2019-04-18
| | | | | | This can save ~1024 Bytes size for the ipk Signed-off-by: Rosy Song <rosysong@rosinson.com>
* ntfs-3g: Update to 2017.3.23 version, provide single utilites package, ↵Ted Hess2017-04-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | refresh patches Changes to NTFS-3G: Delegated processing of special reparse points to external plugins Allowed kernel cacheing by lowntfs-3g when not using Posix ACLs Enabled fallback to read-only mount when the volume is hibernated Made a full check for whether an extended attribute is allowed Moved secaudit and usermap to ntfsprogs (now ntfssecaudit and ntfsusermap) Enabled encoding broken UTF-16 into broken UTF-8 Autoconfigured selecting <sys/sysmacros.h> vs <sys/mkdev> Allowed using the full library API on systems without extended attributes support Fixed DISABLE_PLUGINS as the condition for not using plugins Corrected validation of multi sector transfer protected records Denied creating/removing files from $Extend Returned the size of locale encoded target as the size of symlinks http://www.tuxera.com/community/release-history/ Signed-off-by: BangLang Huang <banglang.huang@foxmail.com> Make ntfs-3g-utils into a single package due to upstream package changes. Signed-off-by: Ted Hess <thess@kitschensync.net>
* ntfs-3g: Update to 2016.2.22 stable releaeTed Hess2016-10-21
| | | | Signed-off-by: Ted Hess <thess@kitschensync.net>
* ntfs-3g: ship /sbin/mount.ntfs compatibility symlinkJo-Philipp Wich2016-10-21
| | | | | | | | | | | | | | | | | | | Like on other common desktop Linux distributions, ship an /sbin/mount.ntfs symlink in addition to the /sbin/mount.ntfs-3g one in order to let wrapper programs successfully call external mount helpers by the filesystem name. The assumption is that /sbin/mount.ntfs is only ever called by util-linux mount and other mount-wrappers when kernel NTFS support is not available, means shipping the additional symlink will not interfere with kernel mode NTFS support. This commit is mainly intended to prepare transparent fs-tools support for mounting fuse filesystems, with focus on ntfs-3g in particular. Please see http://git.lede-project.org/f027c68 for the corresponding fs-tools support code. Signed-off-by: Jo-Philipp Wich <jo@mein.io>
* ntfs-3g: Update to latest, add myself as maintainer, cleanup packages contentTed Hess2015-08-20
| | | | Signed-off-by: Ted Hess <thess@kitschensync.net>
* ntfs-3g: fix build with musl when using internal libfuseDaniel Golle2015-03-29
| | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* misc: correct typo in Makefiles for PKG_LICENSE_FILESIan Leonard2014-11-24
| | | | Signed-off-by: Ian Leonard <antonlacon@gmail.com>
* ntfs-3g: import from oldpackages, add license infoTed Hess2014-08-08
Signed-off-by: Ted Hess <thess@kitschensync.net>