mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-27 19:23:24 +02:00
fuse: Update to 3.10.3
- Update from 3.10.1 to 3.10.3
- Update of rootfile
- Changelog
libfuse 3.10.3 (2021-04-12)
* Fix returning d_ino and d_type from readdir(3) in non-plus mode
libfuse 3.10.2 (2021-02-05)
* Allow "nonempty" as a mount option, for backwards compatibility with fusermount 2. The
option has no effect since mounting over non-empty directories is allowed by default.
* Fix returning inode numbers from readdir() in offset==0 mode.
* FUSE filesystems can now be mounted underneath EXFAT mountpoints.
* Various minor bugfixes.
Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
committed by
Michael Tremer
parent
d8cb7ecaa0
commit
6a2d0484ca
8
lfs/fuse
8
lfs/fuse
@@ -24,7 +24,7 @@
|
||||
|
||||
include Config
|
||||
|
||||
VER = 3.10.1
|
||||
VER = 3.10.3
|
||||
|
||||
THISAPP = fuse-$(VER)
|
||||
DL_FILE = $(THISAPP).tar.xz
|
||||
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
|
||||
$(DL_FILE)_MD5 = e973012119e98b048307558271b5b296
|
||||
$(DL_FILE)_MD5 = 75546f9070323b8ce69c2ed8ffff20c4
|
||||
|
||||
install : $(TARGET)
|
||||
|
||||
@@ -73,7 +73,9 @@ $(subst %,%_MD5,$(objects)) :
|
||||
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
@$(PREBUILD)
|
||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
|
||||
cd $(DIR_APP) && meson --prefix=/usr builddir && cd builddir && ninja && ninja install
|
||||
cd $(DIR_APP) && meson --prefix=/usr builddir/
|
||||
cd $(DIR_APP) && ninja -C builddir/
|
||||
cd $(DIR_APP) && ninja -C builddir/ install
|
||||
|
||||
# Move mount.fuse3 to same location as mount.fuse was in previous version
|
||||
mv -v /usr/sbin/mount.fuse3 /sbin
|
||||
|
||||
Reference in New Issue
Block a user