public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Jon Murphy <jon.murphy@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH] make.sh: Add OPTION to not clear screen
Date: Sun, 29 May 2022 13:51:58 -0500	[thread overview]
Message-ID: <20220529185158.3517499-1-jon.murphy@ipfire.org> (raw)

[-- Attachment #1: Type: text/plain, Size: 1792 bytes --]

 - 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 <jon.murphy(a)ipfire.org>
---
 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_ARCH= 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/*
 }
 
+# Default setting
+CLEAR_SCREEN=true
+
 while [ $# -gt 0 ]; do
 	case "${1}" in
 		--target=*)
 			configure_build "${1#--target=}"
 			;;
+		--no-clear)
+			CLEAR_SCREEN=false
+			;;
 		-*)
 			exiterror "Unknown configuration option: ${1}"
 			;;
@@ -1825,7 +1831,7 @@ build)
 	START_TIME="${SECONDS}"
 
 	# Clear screen
-	${INTERACTIVE} && clear
+	${INTERACTIVE} && ${CLEAR_SCREEN} && clear
 
 	PACKAGE="$BASEDIR/cache/toolchains/$SNAME-$VERSION-toolchain-$TOOLCHAINVER-${BUILD_ARCH}.tar.zst"
 	#only restore on a clean disk
@@ -1971,7 +1977,7 @@ downloadsrc)
 	;;
 toolchain)
 	# Clear screen
-	${INTERACTIVE} && clear
+	${INTERACTIVE} && ${CLEAR_SCREEN} && clear
 
 	prepareenv
 	print_build_stage "Toolchain compilation (${BUILD_ARCH})"
-- 
2.30.2


             reply	other threads:[~2022-05-29 18:51 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-29 18:51 Jon Murphy [this message]
2022-05-30  8:33 ` Michael Tremer
2022-05-30 23:54 ` Jon Murphy

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220529185158.3517499-1-jon.murphy@ipfire.org \
    --to=jon.murphy@ipfire.org \
    --cc=development@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox