pastebin - collaborative debugging tool
rovema.kpaste.net RSS


msnfs41client: Cygwin Makefile
Posted by Anonymous on Tue 14th Nov 2023 17:59
raw | new post

  1. From 6d411753c00e6b25973eed729adf84bcc3cb8278 Mon Sep 17 00:00:00 2001
  2. From: Roland Mainz <roland.mainz@nrubsig.org>
  3. Date: Tue, 14 Nov 2023 18:36:16 +0100
  4. Subject: [PATCH] cygwin: Add cygwin/Makefile for easier/faster building and
  5.  testing
  6.  
  7. Add cygwin/Makefile for easier/faster building and testing,
  8. and update build instructions in cygwin/README.txt to describe
  9. how to use it.
  10.  
  11. Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
  12. ---
  13. cygwin/Makefile   | 87 +++++++++++++++++++++++++++++++++++++++++++++++
  14.  cygwin/README.txt | 53 ++++++++++++++++++++++++++---
  15.  2 files changed, 135 insertions(+), 5 deletions(-)
  16.  create mode 100644 cygwin/Makefile
  17.  
  18. diff --git a/cygwin/Makefile b/cygwin/Makefile
  19. new file mode 100644
  20. index 0000000..2e9fcba
  21. --- /dev/null
  22. +++ b/cygwin/Makefile
  23. @@ -0,0 +1,87 @@
  24. +#
  25. +# ms-nfs41-client/cygwin/Makefile
  26. +#
  27. +# Simple (Cygwin) Makfile for quick&dirty nfsd_debug.exe testing
  28. +#
  29. +# Written by Roland Mainz <roland.mainz@nrubsig.org>
  30. +#
  31. +
  32. +SHELL := /bin/bash
  33. +
  34. +CYGWIN_MAKEFILE_DIR := $(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
  35. +PROJECT_BASEDIR_DIR := $(shell dirname $(realpath $(CYGWIN_MAKEFILE_DIR)/))
  36. +
  37. +DESTDIR:=$(PROJECT_BASEDIR_DIR)/destdir
  38. +
  39. +VS_BUILD_DIR:=$(PROJECT_BASEDIR_DIR)/build.vc19/x64/Debug/
  40. +
  41. +# trigger "build" target when these binaries are needed
  42. +$(VS_BUILD_DIR)/nfsd.exe \
  43. +       $(VS_BUILD_DIR)/nfs_mount.exe \
  44. +       $(VS_BUILD_DIR)/nfs_install.exe \
  45. +       $(VS_BUILD_DIR)/nfs_mount.exe \
  46. +       $(VS_BUILD_DIR)/nfs41_driver.sys \
  47. +       $(VS_BUILD_DIR)/libtirpc.dll: build
  48. +
  49. +#
  50. +# build the code
  51. +#
  52. +build:
  53. +       @printf '#\n# PATH is %q\n#\n' '$(PATH)'
  54. +       which MSBuild.exe
  55. +       MSBuild.exe '$(shell cygpath -w "$(PROJECT_BASEDIR_DIR)/build.vc19/nfs41-client.sln")' -t:Build  -p:Configuration=Debug -p:Platform=x64
  56. +       #MSBuild.exe $(PROJECT_BASEDIR_DIR)/build.vc19/nfs41-client.sln -t:Build  -p:Configuration=Debug -p:Platform=x64
  57. +
  58. +
  59. +#
  60. +# clean target
  61. +#
  62. +clean:
  63. +       rm -vRf $$(find "$(PROJECT_BASEDIR_DIR)/build.vc19" -name Debug -o -name Release)
  64. +
  65. +# install in DESTDIR
  66. +installdest: $(VS_BUILD_DIR)/nfsd.exe \
  67. +       $(VS_BUILD_DIR)/nfs_mount.exe \
  68. +       $(VS_BUILD_DIR)/nfs_install.exe \
  69. +       $(VS_BUILD_DIR)/nfs_mount.exe \
  70. +       $(VS_BUILD_DIR)/nfs41_driver.sys \
  71. +       $(VS_BUILD_DIR)/libtirpc.dll \
  72. +       $(PROJECT_BASEDIR_DIR)/nfs41rdr.inf \
  73. +       $(PROJECT_BASEDIR_DIR)/etc_netconfig \
  74. +       $(PROJECT_BASEDIR_DIR)/ms-nfs41-idmap.conf \
  75. +       $(CYGWIN_MAKEFILE_DIR)/devel/msnfs41client.bash
  76. +       @if [[ "$$(ps -ef)" =~ "$(DESTDIR)" ]] ; then \
  77. +               printf 'DIR %q is in use by a process\n' "$DESTDIR" 1>&2 ; \
  78. +               exit 1 ; \
  79. +       fi
  80. +       mkdir -p $(DESTDIR)
  81. +       mkdir -p $(DESTDIR)/cygdrive/c/cygwin64/sbin/
  82. +       cp -r $(VS_BUILD_DIR)/nfsd.exe          $(DESTDIR)/cygdrive/c/cygwin64/sbin/nfsd_debug.exe
  83. +       cp -r $(VS_BUILD_DIR)/nfsd.pdb          $(DESTDIR)/cygdrive/c/cygwin64/sbin/nfsd_debug.pdb
  84. +       cp -r $(VS_BUILD_DIR)/nfs_mount.*       $(DESTDIR)/cygdrive/c/cygwin64/sbin/.
  85. +       cp -r $(VS_BUILD_DIR)/nfsd.*            $(DESTDIR)/cygdrive/c/cygwin64/sbin/.
  86. +       cp -r $(VS_BUILD_DIR)/nfs_install.*     $(DESTDIR)/cygdrive/c/cygwin64/sbin/.
  87. +       cp -r $(VS_BUILD_DIR)/nfs41_np.*        $(DESTDIR)/cygdrive/c/cygwin64/sbin/.
  88. +       cp -r $(VS_BUILD_DIR)/nfs41_driver.*    $(DESTDIR)/cygdrive/c/cygwin64/sbin/.
  89. +       cp -r $(VS_BUILD_DIR)/libtirpc.*        $(DESTDIR)/cygdrive/c/cygwin64/sbin/.
  90. +       cp $(PROJECT_BASEDIR_DIR)/nfs41rdr.inf  $(DESTDIR)/cygdrive/c/cygwin64/sbin/.
  91. +       cp $(PROJECT_BASEDIR_DIR)/etc_netconfig $(DESTDIR)/cygdrive/c/cygwin64/sbin/.
  92. +       cp $(PROJECT_BASEDIR_DIR)/ms-nfs41-idmap.conf $(DESTDIR)/cygdrive/c/cygwin64/sbin/.
  93. +       cp $(CYGWIN_MAKEFILE_DIR)/devel/msnfs41client.bash $(DESTDIR)/cygdrive/c/cygwin64/sbin/.
  94. +       (cd $(DESTDIR)/cygdrive/c/cygwin64/sbin/ ; chmod a+x *.exe *.dll *.sys *.bash)
  95. +       @printf "\n#\n# TEST sbin dir is %s\n#\n" "$(DESTDIR)/cygdrive/c/cygwin64/sbin/"
  96. +       @printf '\n'
  97. +       @printf "\n#\n# Now use\n# $$ cd '%s' && bash ./msnfs41client.bash install #\n# to install the kernel driver as Admin\n#\n" \
  98. +               "$(DESTDIR)/cygdrive/c/cygwin64/sbin/"
  99. +
  100. +#
  101. +# clean destdir/, but only if nfsd*.exe does not use it right now
  102. +#
  103. +cleandest:
  104. +       @if [[ "$$(ps -ef)" =~ "$(DESTDIR)" ]] ; then \
  105. +               printf 'DIR %q is in use by a process\n' "$DESTDIR" 1>&2 ; \
  106. +               exit 1 ; \
  107. +       fi
  108. +       rm -r "$(DESTDIR)"
  109. +
  110. +# EOF.
  111. diff --git a/cygwin/README.txt b/cygwin/README.txt
  112. index f282c9a..52332d3 100644
  113. --- a/cygwin/README.txt
  114. +++ b/cygwin/README.txt
  115. @@ -1,10 +1,49 @@
  116. +#
  117.  # ms-nfs41-client/cygwin/README.txt
  118. +#
  119. +# Draft README/ToDo list&co.
  120. +#
  121.  
  122. -#### Building ms-nfs41-client using Cygwin:
  123. +######## Building ms-nfs41-client using Cygwin+Makefile:
  124.  ** Required software:
  125.  - Visual Studio 19
  126.  - WDK for Windows 10, version 2004, from
  127.    https://go.microsoft.com/fwlink/?linkid=2128854
  128. +- Cygwin >= 3.5.0
  129. +
  130. +** Build the project using Cygwin command line (bash/ksh93):
  131. +export PATH+=":/cygdrive/c/Program Files (x86)/Microsoft Visual Studio/2019/Community/MSBuild/Current/Bin/"
  132. +git clone https://github.com/kofemann/ms-nfs41-client.git
  133. +cd ms-nfs41-client
  134. +cd cygwin
  135. +make installdest
  136. +
  137. +
  138. +#### Install the software (requires mintty.exe running as "Adminstrator"):
  139. +cd ms-nfs41-client/destdir/cygdrive/c/cygwin64/sbin
  140. +bash ./msnfs41client.bash install
  141. +# then reboot
  142. +
  143. +
  144. +#### Run nfs41 client:
  145. +** Run deamon:
  146. +(requires to modify "msnfs41client.bash")
  147. +cd ms-nfs41-client/destdir/cygdrive/c/cygwin64/sbin
  148. +bash ./msnfs41client.bash run_daemon
  149. +
  150. +** mount home dir:
  151. +(requires to modify "msnfs41client.bash")
  152. +cd ms-nfs41-client/destdir/cygdrive/c/cygwin64/sbin
  153. +bash ./msnfs41client.bash mount_homedir
  154. +
  155. +
  156. +
  157. +######## Manually building ms-nfs41-client using Cygwin:
  158. +** Required software:
  159. +- Visual Studio 19
  160. +- WDK for Windows 10, version 2004, from
  161. +  https://go.microsoft.com/fwlink/?linkid=2128854
  162. +- Cygwin >= 3.5.0
  163.  
  164.  ** Building the project using GUI:
  165.  1. Start Visual Studio 19
  166. @@ -32,7 +71,7 @@ cp ../ms-nfs41-idmap.conf .
  167.  #### Install release blob (requires mintty.exe running as "Adminstrator"):
  168.  cd ms-nfs41-client/dist
  169.  bash ../cygwin/devel/msnfs41client.bash install
  170. -
  171. +# then reboot
  172.  
  173.  #### Run nfs41 client:
  174.  ** Run deamon:
  175. @@ -45,8 +84,12 @@ bash ../cygwin/devel/msnfs41client.bash run_daemon
  176.  bash ../cygwin/devel/msnfs41client.bash mount_homedir
  177.  
  178.  
  179. -#### Testing:
  180. +
  181. +######## Testing:
  182.  ** "cthon04" test suite:
  183. +# mount a NFSv4 filesystem, and then execute this
  184. +# on this filesystem
  185. +mkdir nfsv4cthontest1 && cd nfsv4cthontest1
  186.  git clone https://github.com/kofemann/ms-nfs41-client.git
  187.  git clone git://git.linux-nfs.org/projects/steved/cthon04.git
  188.  cd cthon04/
  189. @@ -58,9 +101,9 @@ mkdir testdir1
  190.  ./runtests -a -t "$PWD/testdir1" 2>&1 | tee testrun.log
  191.  
  192.  
  193. +
  194.  #### ToDo:
  195. -- POSIX Makefile for easier build, release blob generaetion, local test
  196. -installation, running cthon4 etc
  197. +- Makefile/script support for release blob generaetion, local test installation, running cthon4 etc
  198.  - DocBook/XML based documentation
  199.  - Document how to get and build ksh93 for Cygwin
  200.  - Cygwin-specific binary release blob
  201. --
  202. 2.42.1

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.

Syntax highlighting:

To highlight particular lines, prefix each line with {%HIGHLIGHT}




All content is user-submitted.
The administrators of this site (kpaste.net) are not responsible for their content.
Abuse reports should be emailed to us at