2010-05-17 05:29:16 +05:30
|
|
|
#!/bin/sh
|
2010-05-09 07:52:48 +05:30
|
|
|
|
2011-04-16 21:29:34 +05:30
|
|
|
# Note: was using sed OPTS CMD -- FILES
|
|
|
|
# but users complain that many sed implementations
|
|
|
|
# are misinterpreting --.
|
|
|
|
|
2010-05-09 19:50:52 +05:30
|
|
|
test $# -ge 2 || { echo "Syntax: $0 SRCTREE OBJTREE"; exit 1; }
|
2010-05-09 07:52:48 +05:30
|
|
|
|
|
|
|
# cd to objtree
|
2010-05-10 14:30:11 +05:30
|
|
|
cd -- "$2" || { echo "Syntax: $0 SRCTREE OBJTREE"; exit 1; }
|
2010-07-09 04:55:36 +05:30
|
|
|
# In separate objtree build, include/ might not exist yet
|
|
|
|
mkdir include 2>/dev/null
|
2010-05-09 07:52:48 +05:30
|
|
|
|
|
|
|
srctree="$1"
|
|
|
|
|
2010-11-16 17:59:12 +05:30
|
|
|
status() { printf ' %-8s%s\n' "$1" "$2"; }
|
|
|
|
gen() { status "GEN" "$@"; }
|
|
|
|
chk() { status "CHK" "$@"; }
|
|
|
|
|
|
|
|
generate()
|
|
|
|
{
|
2011-10-19 21:24:42 +05:30
|
|
|
# NB: data to be inserted at INSERT line is coming on stdin
|
|
|
|
local src="$1" dst="$2" header="$3"
|
2010-11-16 17:59:12 +05:30
|
|
|
#chk "${dst}"
|
2011-10-19 21:24:42 +05:30
|
|
|
{
|
2010-11-25 11:25:18 +05:30
|
|
|
# Need to use printf: different shells have inconsistent
|
2011-10-19 21:24:42 +05:30
|
|
|
# rules re handling of "\n" in echo params.
|
2010-11-24 19:36:49 +05:30
|
|
|
printf "%s\n" "${header}"
|
2011-10-19 21:24:42 +05:30
|
|
|
# print everything up to INSERT line
|
2011-10-20 00:47:20 +05:30
|
|
|
sed -n '/^INSERT$/ q; p' "${src}"
|
2011-10-19 21:24:42 +05:30
|
|
|
# copy stdin to stdout
|
|
|
|
cat
|
|
|
|
# print everything after INSERT line
|
2011-10-20 00:47:20 +05:30
|
|
|
sed -n '/^INSERT$/ { :l; n; p; bl }' "${src}"
|
2011-10-19 21:24:42 +05:30
|
|
|
} >"${dst}.tmp"
|
2010-11-16 17:59:12 +05:30
|
|
|
if ! cmp -s "${dst}" "${dst}.tmp"; then
|
|
|
|
gen "${dst}"
|
|
|
|
mv "${dst}.tmp" "${dst}"
|
|
|
|
else
|
|
|
|
rm -f "${dst}.tmp"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2010-06-06 04:23:45 +05:30
|
|
|
# (Re)generate include/applets.h
|
2011-10-19 21:24:42 +05:30
|
|
|
sed -n 's@^//applet:@@p' "$srctree"/*/*.c "$srctree"/*/*/*.c \
|
|
|
|
| generate \
|
2010-11-16 17:59:12 +05:30
|
|
|
"$srctree/include/applets.src.h" \
|
|
|
|
"include/applets.h" \
|
2011-10-19 21:24:42 +05:30
|
|
|
"/* DO NOT EDIT. This file is generated from applets.src.h */"
|
2010-06-06 04:23:45 +05:30
|
|
|
|
2010-06-06 05:23:38 +05:30
|
|
|
# (Re)generate include/usage.h
|
|
|
|
# We add line continuation backslash after each line,
|
|
|
|
# and insert empty line before each line which doesn't start
|
|
|
|
# with space or tab
|
2012-01-30 07:04:56 +05:30
|
|
|
sed -n -e 's@^//usage:\([ \t].*\)$@\1 \\@p' -e 's@^//usage:\([^ \t].*\)$@\n\1 \\@p' \
|
|
|
|
"$srctree"/*/*.c "$srctree"/*/*/*.c \
|
2011-10-19 21:24:42 +05:30
|
|
|
| generate \
|
2010-11-16 17:59:12 +05:30
|
|
|
"$srctree/include/usage.src.h" \
|
|
|
|
"include/usage.h" \
|
2011-10-19 21:24:42 +05:30
|
|
|
"/* DO NOT EDIT. This file is generated from usage.src.h */"
|
2010-06-06 05:23:38 +05:30
|
|
|
|
2010-06-06 04:23:45 +05:30
|
|
|
# (Re)generate */Kbuild and */Config.in
|
2012-01-30 07:04:56 +05:30
|
|
|
# We skip .dotdirs - makes git/svn/etc users happier
|
|
|
|
{ cd -- "$srctree" && find . -type d -not '(' -name '.?*' -prune ')'; } \
|
|
|
|
| while read -r d; do
|
2010-05-27 06:03:31 +05:30
|
|
|
d="${d#./}"
|
2010-07-09 04:55:36 +05:30
|
|
|
|
2010-05-10 14:30:11 +05:30
|
|
|
src="$srctree/$d/Kbuild.src"
|
|
|
|
dst="$d/Kbuild"
|
|
|
|
if test -f "$src"; then
|
2010-07-15 20:09:24 +05:30
|
|
|
mkdir -p -- "$d" 2>/dev/null
|
2010-05-10 14:30:11 +05:30
|
|
|
|
2011-10-19 21:24:42 +05:30
|
|
|
sed -n 's@^//kbuild:@@p' "$srctree/$d"/*.c \
|
|
|
|
| generate \
|
2010-11-16 17:59:12 +05:30
|
|
|
"${src}" "${dst}" \
|
2011-10-19 21:24:42 +05:30
|
|
|
"# DO NOT EDIT. This file is generated from Kbuild.src"
|
2010-05-09 07:52:48 +05:30
|
|
|
fi
|
2010-05-10 14:30:11 +05:30
|
|
|
|
|
|
|
src="$srctree/$d/Config.src"
|
|
|
|
dst="$d/Config.in"
|
|
|
|
if test -f "$src"; then
|
2010-07-15 20:09:24 +05:30
|
|
|
mkdir -p -- "$d" 2>/dev/null
|
2010-05-10 14:30:11 +05:30
|
|
|
|
2011-10-19 21:24:42 +05:30
|
|
|
sed -n 's@^//config:@@p' "$srctree/$d"/*.c \
|
|
|
|
| generate \
|
2010-11-16 17:59:12 +05:30
|
|
|
"${src}" "${dst}" \
|
2011-10-19 21:24:42 +05:30
|
|
|
"# DO NOT EDIT. This file is generated from Config.src"
|
2010-05-09 07:52:48 +05:30
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2010-11-22 02:40:07 +05:30
|
|
|
# Last read failed. This is normal. Don't exit with its error code:
|
2010-05-09 07:52:48 +05:30
|
|
|
exit 0
|