From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adolf Belka To: development@lists.ipfire.org Subject: Re: [PATCH 1/2] sshfs: Update to 3.7.1 Date: Wed, 06 Jan 2021 20:21:26 +0100 Message-ID: In-Reply-To: <14124cdd-1d44-ae22-1ce8-255c05bdd65b@gmail.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============4153395059651454639==" List-Id: --===============4153395059651454639== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Hi Michael, I suddenly thought I should also check the old version on Core 153, so I did = that and the same thing happens. The fuse module is not loaded automatically = when sshfs command is run, but the error message is very helpful. "fuse: device not found, try 'modprobe fuse' first" So the new sshfs version operates the same as the old one, so I am no longer = so worried about this. Regards, Adolf On 06/01/2021 19:39, Adolf Belka wrote: > Hi, > > > On 06/01/2021 16:30, Michael Tremer wrote: >> Hi, >> >>> On 5 Jan 2021, at 14:28, Adolf Belka wrote: >>> >>> Dear all, >>> >>> Forgot to mention in the logs that I have also installed the built IPFire= with new fuse and sshfs into my testbed system and was able to setup an sshf= s mount from a remote computer into the IPFire system, so confirmed working. >>> >>> The only thing I had to do was run modprobe fuse as the fuse module was n= ot loaded. Is that normal to need to do or did I miss something when I was bu= ilding sshfs/fuse >> >> I would expect that sshfs is doing that automatically. > > Then there may be a problem. When I ran the sshfs command I got a message t= hat it could not find fuse and it suggested that I should run modprobe fuse, = which I did, and then the same sshfs command worked. > > Not sure how to find out why sshfs did not have the modprobe command run au= tomatically or how to make it do so. > >> >>> Regards, >>> Adolf. >>> >>> On 05/01/2021 15:20, Adolf Belka wrote: >>>> - Update sshfs from 2.2 to 3.7.1 >>>> - Changelog is available at https://github.com/libfuse/sshfs/releases >>>> - Build had to be changed from autotools to meson/ninja >>>> - Change in rootfiles >>>> Signed-off-by: Adolf Belka >>>> --- >>>> =C2=A0 config/rootfiles/common/sshfs |=C2=A0 2 ++ >>>> =C2=A0 lfs/sshfs=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0= =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 | 14 +++++= +-------- >>>> =C2=A0 2 files changed, 8 insertions(+), 8 deletions(-) >>>> diff --git a/config/rootfiles/common/sshfs b/config/rootfiles/common/ssh= fs >>>> index 2cafa3e24..579b938f5 100644 >>>> --- a/config/rootfiles/common/sshfs >>>> +++ b/config/rootfiles/common/sshfs >>>> @@ -1,2 +1,4 @@ >>>> =C2=A0 usr/bin/sshfs >>>> +#usr/sbin/mount.fuse.sshfs >>>> +#usr/sbin/mount.sshfs >>>> =C2=A0 #usr/share/man/man1/sshfs.1 >>>> diff --git a/lfs/sshfs b/lfs/sshfs >>>> index 23fbd18ca..1e7706194 100644 >>>> --- a/lfs/sshfs >>>> +++ b/lfs/sshfs >>>> @@ -24,10 +24,10 @@ >>>> =C2=A0=C2=A0=C2=A0 include Config >>>> =C2=A0 -VER=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 =3D 2.2 >>>> +VER=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 =3D 3.7.1 >>>> =C2=A0 -THISAPP=C2=A0=C2=A0=C2=A0 =3D sshfs-fuse-$(VER) >>>> -DL_FILE=C2=A0=C2=A0=C2=A0 =3D $(THISAPP).tar.gz >>>> +THISAPP=C2=A0=C2=A0=C2=A0 =3D sshfs-$(VER) >>>> +DL_FILE=C2=A0=C2=A0=C2=A0 =3D $(THISAPP).tar.xz >>>> =C2=A0 DL_FROM=C2=A0=C2=A0=C2=A0 =3D $(URL_IPFIRE) >>>> =C2=A0 DIR_APP=C2=A0=C2=A0=C2=A0 =3D $(DIR_SRC)/$(THISAPP) >>>> =C2=A0 TARGET =3D $(DIR_INFO)/$(THISAPP) >>>> @@ -40,7 +40,7 @@ objects =3D $(DL_FILE) >>>> =C2=A0=C2=A0=C2=A0 $(DL_FILE) =3D $(DL_FROM)/$(DL_FILE) >>>> =C2=A0 -$(DL_FILE)_MD5 =3D 26e9206eb5169e87e6f95f54bc005a4f >>>> +$(DL_FILE)_MD5 =3D 22ac23d05ca7c56fb568627f086374d0 >>>> =C2=A0=C2=A0=C2=A0 install : $(TARGET) >>>> =C2=A0 @@ -72,9 +72,7 @@ $(subst %,%_MD5,$(objects)) : >>>> =C2=A0=C2=A0=C2=A0 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) >>>> =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 @$(PREBUILD) >>>> -=C2=A0=C2=A0=C2=A0 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR= _DL)/$(DL_FILE) >>>> -=C2=A0=C2=A0=C2=A0 cd $(DIR_APP) && ./configure --prefix=3D/usr >>>> -=C2=A0=C2=A0=C2=A0 cd $(DIR_APP) && make $(MAKETUNING) >>>> -=C2=A0=C2=A0=C2=A0 cd $(DIR_APP) && make install >>>> +=C2=A0=C2=A0=C2=A0 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR= _DL)/$(DL_FILE) >>>> +=C2=A0=C2=A0=C2=A0 cd $(DIR_APP) && meson --prefix=3D/usr builddir && c= d builddir && ninja && ninja install >>>> =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 @rm -rf $(DIR_APP) >>>> =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 @$(POSTBUILD) >> --===============4153395059651454639==--