aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Deutschmann <whissi@gentoo.org>2019-07-13 00:53:03 +0200
committerThomas Deutschmann <whissi@gentoo.org>2019-07-14 13:58:06 +0200
commit9707b563e124182ebcdeeb8a08352fbeafa59d85 (patch)
treea793d72090be537d7f4da4d009619c159d7c7492 /gen_cmdline.sh
parentgen_funcs.sh: Add debug_breakpoint() function (diff)
downloadgenkernel-9707b563e124182ebcdeeb8a08352fbeafa59d85.tar.gz
genkernel-9707b563e124182ebcdeeb8a08352fbeafa59d85.tar.bz2
genkernel-9707b563e124182ebcdeeb8a08352fbeafa59d85.zip
"--debug-cleanup" parameter renamed to "--cleanup"
--cleanup or --no-cleanup should be clearer. Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'gen_cmdline.sh')
-rwxr-xr-xgen_cmdline.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/gen_cmdline.sh b/gen_cmdline.sh
index dc77522..69a997a 100755
--- a/gen_cmdline.sh
+++ b/gen_cmdline.sh
@@ -22,8 +22,8 @@ longusage() {
echo " --logfile=<outfile> Output file for debug info"
echo " --color Output debug in color"
echo " --no-color Do not output debug in color"
- echo " --debug-cleanup Clean up temporary build directories on exit"
- echo " --no-debug-cleanup Do not remove any temporary directories on exit"
+ echo " --cleanup Clean up temporary directories on exit"
+ echo " --no-cleanup Do not remove any temporary directories on exit"
echo " Kernel Configuration settings"
echo " --menuconfig Run menuconfig after oldconfig"
echo " --no-menuconfig Do not run menuconfig after oldconfig"
@@ -609,9 +609,9 @@ parse_cmdline() {
print_info 2 "USECOLOR: ${USECOLOR}"
setColorVars
;;
- --debug-cleanup|--no-debug-cleanup)
- CMD_DEBUGCLEANUP=$(parse_optbool "$*")
- print_info 2 "CMD_DEBUGCLEANUP: ${CMD_DEBUGCLEANUP}"
+ --cleanup|--no-cleanup)
+ CMD_CLEANUP=$(parse_optbool "$*")
+ print_info 2 "CMD_CLEANUP: ${CMD_CLEANUP}"
;;
--logfile=*)
CMD_LOGFILE="${*#*=}"