From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jon Murphy To: development@lists.ipfire.org Subject: [PATCH] make.sh: Add OPTION to not clear screen Date: Sun, 29 May 2022 13:51:58 -0500 Message-ID: <20220529185158.3517499-1-jon.murphy@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============3350831051761960957==" List-Id: --===============3350831051761960957== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable - minor changes to build and toolchain section - screen will not clear if option "--no-clear" is included - assists beginners (me!) view all steps in build process Signed-off-by: Jon Murphy --- doc/make.sh-usage | 3 +++ make.sh | 10 ++++++++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/doc/make.sh-usage b/doc/make.sh-usage index 5e1e3dd22..32e7fd862 100644 --- a/doc/make.sh-usage +++ b/doc/make.sh-usage @@ -21,3 +21,6 @@ Options: the desired target architecture. Can be permanently set with TARGET_AR= CH=3D in .config. + + --no-clear : do not clear screen when during command build or toolchain + diff --git a/make.sh b/make.sh index 3ed9190b9..1e22a513b 100755 --- a/make.sh +++ b/make.sh @@ -1803,11 +1803,17 @@ ipfirepackages() { rm -rf $BASEDIR/build/install/packages/* } =20 +# Default setting +CLEAR_SCREEN=3Dtrue + while [ $# -gt 0 ]; do case "${1}" in --target=3D*) configure_build "${1#--target=3D}" ;; + --no-clear) + CLEAR_SCREEN=3Dfalse + ;; -*) exiterror "Unknown configuration option: ${1}" ;; @@ -1825,7 +1831,7 @@ build) START_TIME=3D"${SECONDS}" =20 # Clear screen - ${INTERACTIVE} && clear + ${INTERACTIVE} && ${CLEAR_SCREEN} && clear =20 PACKAGE=3D"$BASEDIR/cache/toolchains/$SNAME-$VERSION-toolchain-$TOOLCHAINVE= R-${BUILD_ARCH}.tar.zst" #only restore on a clean disk @@ -1971,7 +1977,7 @@ downloadsrc) ;; toolchain) # Clear screen - ${INTERACTIVE} && clear + ${INTERACTIVE} && ${CLEAR_SCREEN} && clear =20 prepareenv print_build_stage "Toolchain compilation (${BUILD_ARCH})" --=20 2.30.2 --===============3350831051761960957==--