From 9a14d75e0af90cc76262b369d14be2093fb4e4c9 Mon Sep 17 00:00:00 2001 From: Timothy Day Date: Sat, 29 Mar 2025 19:37:30 -0400 Subject: [PATCH] LU-18687 doc: move man *.7 pages to Documentation/man7 Consolidate all of the man pages into the top level Documentation directory. Move all of the Lustre man pages (from 7) to Docmentation/. Test-Parameters: trivial Signed-off-by: Timothy Day Change-Id: I9c5a5e36028739b4872e469721acb8d32b61cce1 Reviewed-on: https://review.whamcloud.com/c/fs/lustre-release/+/58590 Reviewed-by: Andreas Dilger Reviewed-by: James Simmons Reviewed-by: Oleg Drokin Reviewed-by: Arshad Hussain Reviewed-by: Lijing Chen Reviewed-by: Ellis Wilson Tested-by: jenkins Tested-by: Maloo --- Documentation/man7/Makefile.am | 11 +++++++++-- {lustre/doc => Documentation/man7}/llapi_layout.7 | 0 {lustre/doc => Documentation/man7}/lustre.7 | 0 {lustre/doc => Documentation/man7}/lustreapi.7 | 0 lustre/doc/Makefile.am | 10 ++-------- 5 files changed, 11 insertions(+), 10 deletions(-) rename {lustre/doc => Documentation/man7}/llapi_layout.7 (100%) rename {lustre/doc => Documentation/man7}/lustre.7 (100%) rename {lustre/doc => Documentation/man7}/lustreapi.7 (100%) diff --git a/Documentation/man7/Makefile.am b/Documentation/man7/Makefile.am index 6fadc7c..1136419 100644 --- a/Documentation/man7/Makefile.am +++ b/Documentation/man7/Makefile.am @@ -5,15 +5,22 @@ # MANFILES = \ + lustre.7 \ lnet.7 + +LIBMAN = \ + lustreapi.7 \ + llapi_layout.7 + if MANPAGES +man_MANS = $(LIBMAN) if UTILS -man_MANS = $(MANFILES) +man_MANS += $(MANFILES) endif endif CLEANFILES = *.aux *.tex *.log *.pdf -EXTRA_DIST = $(MANFILES) +EXTRA_DIST = $(MANFILES) $(LIBMAN) all: diff --git a/lustre/doc/llapi_layout.7 b/Documentation/man7/llapi_layout.7 similarity index 100% rename from lustre/doc/llapi_layout.7 rename to Documentation/man7/llapi_layout.7 diff --git a/lustre/doc/lustre.7 b/Documentation/man7/lustre.7 similarity index 100% rename from lustre/doc/lustre.7 rename to Documentation/man7/lustre.7 diff --git a/lustre/doc/lustreapi.7 b/Documentation/man7/lustreapi.7 similarity index 100% rename from lustre/doc/lustreapi.7 rename to Documentation/man7/lustreapi.7 diff --git a/lustre/doc/Makefile.am b/lustre/doc/Makefile.am index edf6f7f..aca6b29 100644 --- a/lustre/doc/Makefile.am +++ b/lustre/doc/Makefile.am @@ -92,7 +92,6 @@ MANFILES = \ ll_decode_linkea.8 \ llsom_sync.8 \ llstat.8 \ - lustre.7 \ lustre_routes_config.8 \ lustre_routes_conversion.8 \ lustre_rsync.8 \ @@ -102,11 +101,6 @@ MANFILES = \ routerstat.8 -LIBMAN = \ - lustreapi.7 \ - llapi_layout.7 - - SERVER_MANFILES = \ l_getidentity.8 \ l_getsepol.8 \ @@ -176,7 +170,7 @@ SERVER_MANFILES = \ tunefs.lustre.8 if MANPAGES -man_MANS = $(LIBMAN) +man_MANS = if SERVER man_MANS += $(SERVER_MANFILES) endif @@ -188,6 +182,6 @@ endif CLEANFILES = *.aux *.tex *.log *.pdf -EXTRA_DIST = $(MANFILES) $(SERVER_MANFILES) $(LIBMAN) +EXTRA_DIST = $(MANFILES) $(SERVER_MANFILES) all: -- 1.8.3.1