- From 6d411753c00e6b25973eed729adf84bcc3cb8278 Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Tue, 14 Nov 2023 18:36:16 +0100
- Subject: [PATCH] cygwin: Add cygwin/Makefile for easier/faster building and
- testing
- Add cygwin/Makefile for easier/faster building and testing,
- and update build instructions in cygwin/README.txt to describe
- how to use it.
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- cygwin/Makefile | 87 +++++++++++++++++++++++++++++++++++++++++++++++
- cygwin/README.txt | 53 ++++++++++++++++++++++++++---
- 2 files changed, 135 insertions(+), 5 deletions(-)
- create mode 100644 cygwin/Makefile
- diff --git a/cygwin/Makefile b/cygwin/Makefile
- new file mode 100644
- index 0000000..2e9fcba
- --- /dev/null
- +++ b/cygwin/Makefile
- @@ -0,0 +1,87 @@
- +#
- +# ms-nfs41-client/cygwin/Makefile
- +#
- +# Simple (Cygwin) Makfile for quick&dirty nfsd_debug.exe testing
- +#
- +# Written by Roland Mainz <roland.mainz@nrubsig.org>
- +#
- +
- +SHELL := /bin/bash
- +
- +CYGWIN_MAKEFILE_DIR := $(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
- +PROJECT_BASEDIR_DIR := $(shell dirname $(realpath $(CYGWIN_MAKEFILE_DIR)/))
- +
- +DESTDIR:=$(PROJECT_BASEDIR_DIR)/destdir
- +
- +VS_BUILD_DIR:=$(PROJECT_BASEDIR_DIR)/build.vc19/x64/Debug/
- +
- +# trigger "build" target when these binaries are needed
- +$(VS_BUILD_DIR)/nfsd.exe \
- + $(VS_BUILD_DIR)/nfs_mount.exe \
- + $(VS_BUILD_DIR)/nfs_install.exe \
- + $(VS_BUILD_DIR)/nfs_mount.exe \
- + $(VS_BUILD_DIR)/nfs41_driver.sys \
- + $(VS_BUILD_DIR)/libtirpc.dll: build
- +
- +#
- +# build the code
- +#
- +build:
- + @printf '#\n# PATH is %q\n#\n' '$(PATH)'
- + which MSBuild.exe
- + MSBuild.exe '$(shell cygpath -w "$(PROJECT_BASEDIR_DIR)/build.vc19/nfs41-client.sln")' -t:Build -p:Configuration=Debug -p:Platform=x64
- + #MSBuild.exe $(PROJECT_BASEDIR_DIR)/build.vc19/nfs41-client.sln -t:Build -p:Configuration=Debug -p:Platform=x64
- +
- +
- +#
- +# clean target
- +#
- +clean:
- + rm -vRf $$(find "$(PROJECT_BASEDIR_DIR)/build.vc19" -name Debug -o -name Release)
- +
- +# install in DESTDIR
- +installdest: $(VS_BUILD_DIR)/nfsd.exe \
- + $(VS_BUILD_DIR)/nfs_mount.exe \
- + $(VS_BUILD_DIR)/nfs_install.exe \
- + $(VS_BUILD_DIR)/nfs_mount.exe \
- + $(VS_BUILD_DIR)/nfs41_driver.sys \
- + $(VS_BUILD_DIR)/libtirpc.dll \
- + $(PROJECT_BASEDIR_DIR)/nfs41rdr.inf \
- + $(PROJECT_BASEDIR_DIR)/etc_netconfig \
- + $(PROJECT_BASEDIR_DIR)/ms-nfs41-idmap.conf \
- + $(CYGWIN_MAKEFILE_DIR)/devel/msnfs41client.bash
- + @if [[ "$$(ps -ef)" =~ "$(DESTDIR)" ]] ; then \
- + printf 'DIR %q is in use by a process\n' "$DESTDIR" 1>&2 ; \
- + exit 1 ; \
- + fi
- + mkdir -p $(DESTDIR)
- + mkdir -p $(DESTDIR)/cygdrive/c/cygwin64/sbin/
- + cp -r $(VS_BUILD_DIR)/nfsd.exe $(DESTDIR)/cygdrive/c/cygwin64/sbin/nfsd_debug.exe
- + cp -r $(VS_BUILD_DIR)/nfsd.pdb $(DESTDIR)/cygdrive/c/cygwin64/sbin/nfsd_debug.pdb
- + cp -r $(VS_BUILD_DIR)/nfs_mount.* $(DESTDIR)/cygdrive/c/cygwin64/sbin/.
- + cp -r $(VS_BUILD_DIR)/nfsd.* $(DESTDIR)/cygdrive/c/cygwin64/sbin/.
- + cp -r $(VS_BUILD_DIR)/nfs_install.* $(DESTDIR)/cygdrive/c/cygwin64/sbin/.
- + cp -r $(VS_BUILD_DIR)/nfs41_np.* $(DESTDIR)/cygdrive/c/cygwin64/sbin/.
- + cp -r $(VS_BUILD_DIR)/nfs41_driver.* $(DESTDIR)/cygdrive/c/cygwin64/sbin/.
- + cp -r $(VS_BUILD_DIR)/libtirpc.* $(DESTDIR)/cygdrive/c/cygwin64/sbin/.
- + cp $(PROJECT_BASEDIR_DIR)/nfs41rdr.inf $(DESTDIR)/cygdrive/c/cygwin64/sbin/.
- + cp $(PROJECT_BASEDIR_DIR)/etc_netconfig $(DESTDIR)/cygdrive/c/cygwin64/sbin/.
- + cp $(PROJECT_BASEDIR_DIR)/ms-nfs41-idmap.conf $(DESTDIR)/cygdrive/c/cygwin64/sbin/.
- + cp $(CYGWIN_MAKEFILE_DIR)/devel/msnfs41client.bash $(DESTDIR)/cygdrive/c/cygwin64/sbin/.
- + (cd $(DESTDIR)/cygdrive/c/cygwin64/sbin/ ; chmod a+x *.exe *.dll *.sys *.bash)
- + @printf "\n#\n# TEST sbin dir is %s\n#\n" "$(DESTDIR)/cygdrive/c/cygwin64/sbin/"
- + @printf '\n'
- + @printf "\n#\n# Now use\n# $$ cd '%s' && bash ./msnfs41client.bash install #\n# to install the kernel driver as Admin\n#\n" \
- + "$(DESTDIR)/cygdrive/c/cygwin64/sbin/"
- +
- +#
- +# clean destdir/, but only if nfsd*.exe does not use it right now
- +#
- +cleandest:
- + @if [[ "$$(ps -ef)" =~ "$(DESTDIR)" ]] ; then \
- + printf 'DIR %q is in use by a process\n' "$DESTDIR" 1>&2 ; \
- + exit 1 ; \
- + fi
- + rm -r "$(DESTDIR)"
- +
- +# EOF.
- diff --git a/cygwin/README.txt b/cygwin/README.txt
- index f282c9a..52332d3 100644
- --- a/cygwin/README.txt
- +++ b/cygwin/README.txt
- @@ -1,10 +1,49 @@
- +#
- # ms-nfs41-client/cygwin/README.txt
- +#
- +# Draft README/ToDo list&co.
- +#
- -#### Building ms-nfs41-client using Cygwin:
- +######## Building ms-nfs41-client using Cygwin+Makefile:
- ** Required software:
- - Visual Studio 19
- - WDK for Windows 10, version 2004, from
- https://go.microsoft.com/fwlink/?linkid=2128854
- +- Cygwin >= 3.5.0
- +
- +** Build the project using Cygwin command line (bash/ksh93):
- +export PATH+=":/cygdrive/c/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/"
- +git clone https://github.com/kofemann/ms-nfs41-client.git
- +cd ms-nfs41-client
- +cd cygwin
- +make installdest
- +
- +
- +#### Install the software (requires mintty.exe running as "Adminstrator"):
- +cd ms-nfs41-client/destdir/cygdrive/c/cygwin64/sbin
- +bash ./msnfs41client.bash install
- +# then reboot
- +
- +
- +#### Run nfs41 client:
- +** Run deamon:
- +(requires to modify "msnfs41client.bash")
- +cd ms-nfs41-client/destdir/cygdrive/c/cygwin64/sbin
- +bash ./msnfs41client.bash run_daemon
- +
- +** mount home dir:
- +(requires to modify "msnfs41client.bash")
- +cd ms-nfs41-client/destdir/cygdrive/c/cygwin64/sbin
- +bash ./msnfs41client.bash mount_homedir
- +
- +
- +
- +######## Manually building ms-nfs41-client using Cygwin:
- +** Required software:
- +- Visual Studio 19
- +- WDK for Windows 10, version 2004, from
- + https://go.microsoft.com/fwlink/?linkid=2128854
- +- Cygwin >= 3.5.0
- ** Building the project using GUI:
- 1. Start Visual Studio 19
- @@ -32,7 +71,7 @@ cp ../ms-nfs41-idmap.conf .
- #### Install release blob (requires mintty.exe running as "Adminstrator"):
- cd ms-nfs41-client/dist
- bash ../cygwin/devel/msnfs41client.bash install
- -
- +# then reboot
- #### Run nfs41 client:
- ** Run deamon:
- @@ -45,8 +84,12 @@ bash ../cygwin/devel/msnfs41client.bash run_daemon
- bash ../cygwin/devel/msnfs41client.bash mount_homedir
- -#### Testing:
- +
- +######## Testing:
- ** "cthon04" test suite:
- +# mount a NFSv4 filesystem, and then execute this
- +# on this filesystem
- +mkdir nfsv4cthontest1 && cd nfsv4cthontest1
- git clone https://github.com/kofemann/ms-nfs41-client.git
- git clone git://git.linux-nfs.org/projects/steved/cthon04.git
- cd cthon04/
- @@ -58,9 +101,9 @@ mkdir testdir1
- ./runtests -a -t "$PWD/testdir1" 2>&1 | tee testrun.log
- +
- #### ToDo:
- -- POSIX Makefile for easier build, release blob generaetion, local test
- -installation, running cthon4 etc
- +- Makefile/script support for release blob generaetion, local test installation, running cthon4 etc
- - DocBook/XML based documentation
- - Document how to get and build ksh93 for Cygwin
- - Cygwin-specific binary release blob
- --
- 2.42.1
msnfs41client: Cygwin Makefile
Posted by Anonymous on Tue 14th Nov 2023 17:59
raw | new post
Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.