[LTP] [PATCH 3/3] doc: Remove mini-howto-building-ltp-from-git.txt

Petr Vorel pvorel@suse.cz
Fri Oct 21 13:53:33 CEST 2022


Document is not linked into our wiki, there is "Quick guide to running
the tests" section in README.md visible from web and CI scripts in
ci/*.sh and build.sh, which describe what to install and how to build.

Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
Do we want any of these move to "Quick guide to running the tests"
section in README.md?


 doc/mini-howto-building-ltp-from-git.txt | 62 ------------------------
 1 file changed, 62 deletions(-)
 delete mode 100644 doc/mini-howto-building-ltp-from-git.txt

diff --git a/doc/mini-howto-building-ltp-from-git.txt b/doc/mini-howto-building-ltp-from-git.txt
deleted file mode 100644
index 28825c20f..000000000
--- a/doc/mini-howto-building-ltp-from-git.txt
+++ /dev/null
@@ -1,62 +0,0 @@
-Mini-Howto: Building LTP from Git
-=================================
-
-******************************************************************************
-The following document briefly describes the single steps to build LTP from
-the Git repository located at GitHub.
-The instructions here were tested on a Ubuntu/precise Linux system (feel free
-to adapt to your distribution).
-
-Changelog:
- * Initial version: Sedat Dilek <sedat.dilek@gmail.com>
- * Embedded comments from Cyril Hrubis <chrubis@suse.cz>
-******************************************************************************
-
-# Export language settings
-
-export LANG=C
-export LC_ALL=C
-
-# Set some useful variables (adapt if you dislike)
-
-WORKING_DIR="$HOME/src/ltp"
-
-PREFIX="/opt/ltp"
-
-GIT_URL="https://github.com/linux-test-project/ltp.git"
-
-MAKE_JOBS=$(getconf _NPROCESSORS_ONLN)
-
-BUILD_LOG_FILE="build-log.txt"
-INSTALL_LOG_FILE="install-log.txt"
-
-# PREREQS on Ubuntu (package-list is incomplete and may vary for other distros)
-
-sudo apt-get install build-essential
-sudo apt-get install autoconf automake autotools-dev m4
-sudo apt-get install git
-sudo apt-get install linux-headers-$(uname -r)
-sudo apt-get install libaio-dev libattr1-dev libcap-dev
-
-# Working directory
-
-mkdir -p $WORKING_DIR
-cd $WORKING_DIR
-
-# Get the LTP source
-
-git clone $GIT_URL ltp-git
-
-# Configure LTP
-
-cd ltp-git/
-make autotools
-./configure --prefix=$PREFIX
-
-# Start building LTP
-
-make -j$MAKE_JOBS 2>&1 | tee ../$BUILD_LOG_FILE
-
-# Install LTP (requires superuser privileges)
-
-sudo make install 2>&1 | tee ../$INSTALL_LOG_FILE
-- 
2.38.0



More information about the ltp mailing list