Добавлена короткая опция -s к --skip-build. Изменена версия.

master 0.1_alpha5
Mike Khiretskiy 9 years ago
parent f65ea21e93
commit 1f5944a378

@ -15,7 +15,7 @@
PATH=/lib/rc/bin:$PATH
CL_KERNEL_VERSION=0.1_alpha4
CL_KERNEL_VERSION=0.1_alpha5
DESCRIPTION="Create kernel utility"
DEFAULT_KERNEL_DIRECTORY=/usr/src/linux
SRC_DIRECTORY=/usr/src
@ -60,7 +60,7 @@ ${DESCRIPTION}
--kver [VERSION] specify kernel version ('list' for displaying possible values)
--kver-old [VERSION] specify kernel version for new options ('list' for displaying possible values)
--convert migrate .config in kernel directory to templates
--skip-build do not build kernel after configuration
-s, --skip-build do not build kernel after configuration
--march [ARCH] kernel architecture
--safemode create additional initrd with all modules (only for calculate-sources)
--help display this help and exit
@ -69,7 +69,7 @@ EOF
rearrange_params() {
TEMP=$(unset POSIXLY_CORRECT; getopt \
-o "h" \
-o "hs" \
--long help \
--long kver: \
--long kver-old: \
@ -114,7 +114,7 @@ do_args() {
MIGRATE=1
CREATE_NEW=
;;
--skip-build)
-s|--skip-build)
BUILD_KERNEL=
;;
--) shift; break;;

Loading…
Cancel
Save