mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-01 23:47:42 +00:00
support/scripts/br2-external: drop help for internal helper script
We do not usually provide help for our internal scripts. Besides, such help has a tendency to bitrot pretty quickly anyway. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Vadim Kochan <vadim4j@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
3617f1350a
commit
2130903347
@ -16,9 +16,8 @@ main() {
|
|||||||
local OPT OPTARG
|
local OPT OPTARG
|
||||||
local br2_ext ofile ofmt
|
local br2_ext ofile ofmt
|
||||||
|
|
||||||
while getopts :hkmo: OPT; do
|
while getopts :kmo: OPT; do
|
||||||
case "${OPT}" in
|
case "${OPT}" in
|
||||||
h) help; exit 0;;
|
|
||||||
o) ofile="${OPTARG}";;
|
o) ofile="${OPTARG}";;
|
||||||
k) ofmt="kconfig";;
|
k) ofmt="kconfig";;
|
||||||
m) ofmt="mk";;
|
m) ofmt="mk";;
|
||||||
@ -188,36 +187,6 @@ do_kconfig() {
|
|||||||
printf "endmenu # User-provided options\n"
|
printf "endmenu # User-provided options\n"
|
||||||
}
|
}
|
||||||
|
|
||||||
help() {
|
|
||||||
cat <<-_EOF_
|
|
||||||
Usage:
|
|
||||||
${my_name} <-m|-k> -o FILE PATH
|
|
||||||
|
|
||||||
With -m, ${my_name} generates the makefile fragment that defines
|
|
||||||
variables related to the br2-external trees passed as positional
|
|
||||||
arguments.
|
|
||||||
|
|
||||||
With -k, ${my_name} generates the kconfig snippet to include the
|
|
||||||
configuration options specified in the br2-external trees passed
|
|
||||||
as positional arguments.
|
|
||||||
|
|
||||||
Using -k and -m together is not possible. The last one wins.
|
|
||||||
|
|
||||||
Options:
|
|
||||||
-m Generate the makefile fragment.
|
|
||||||
|
|
||||||
-k Generate the kconfig snippet.
|
|
||||||
|
|
||||||
-o FILE
|
|
||||||
FILE in which to generate the kconfig snippet or makefile
|
|
||||||
fragment.
|
|
||||||
|
|
||||||
Returns:
|
|
||||||
0 If no error
|
|
||||||
!0 If any error
|
|
||||||
_EOF_
|
|
||||||
}
|
|
||||||
|
|
||||||
error() { local fmt="${1}"; shift; printf "BR2_EXTERNAL_ERROR = ${fmt}" "${@}"; exit 1; }
|
error() { local fmt="${1}"; shift; printf "BR2_EXTERNAL_ERROR = ${fmt}" "${@}"; exit 1; }
|
||||||
|
|
||||||
my_name="${0##*/}"
|
my_name="${0##*/}"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user