2004-01-17 14:47:30 +03:00
|
|
|
#! /bin/sh
|
2018-12-05 12:20:18 +03:00
|
|
|
# $NetBSD: mkinit.sh,v 1.10 2018/12/05 09:20:18 kre Exp $
|
2004-01-17 14:47:30 +03:00
|
|
|
|
|
|
|
# Copyright (c) 2003 The NetBSD Foundation, Inc.
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
# by David Laight.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the distribution.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
srcs="$*"
|
|
|
|
|
2018-12-05 12:20:18 +03:00
|
|
|
# use of echo in this script is broken
|
|
|
|
|
|
|
|
# some echo versions will expand \n in the args, which breaks C
|
|
|
|
# Note: this script is a HOST_PROG ... it must run in the
|
|
|
|
# build host's environment, with its shell.
|
|
|
|
|
|
|
|
# Fortunately, use of echo here is also trivially simplistic,
|
|
|
|
# we can easily replace all uses with ...
|
|
|
|
|
|
|
|
echo()
|
|
|
|
{
|
|
|
|
printf '%s\n' "$1"
|
|
|
|
}
|
|
|
|
|
|
|
|
# CAUTION: for anyone modifying this script.... use printf
|
|
|
|
# rather than echo to output anything at all... then
|
|
|
|
# you will avoid being bitten by the simplicity of this function.
|
|
|
|
# This was done this way rather than wholesale replacement
|
|
|
|
# to avoid unnecessary code churn.
|
|
|
|
|
|
|
|
|
2004-01-17 14:47:30 +03:00
|
|
|
nl='
|
|
|
|
'
|
2004-06-16 03:09:54 +04:00
|
|
|
openparen='('
|
Dynamically detect the way the shell matches \ in a pattern,
and use whatever works for the sh running this script. Previously
we were using the (broken, and incorrect) method that worked in
old broken NetBSD sh's (and some others) and not the method that
works with the current (fixed) /bin/sh and other correct shells
(like bash). (For an exotic reason, in the particular use case,
both methods work with ksh93, but it is also generally correct).
This hasn't really mattered, as the difference is only significant
(only causes actual issues - the build fails) when compiling with DEBUG
enabled, which is something that most sane humans would never do, if they
want to retain that sanity.
The problem was detected by Patrick Welche when looking for an
unrelated problem, which was once considered to be a possible sh
problem, but turned out to be something entirely different.
XXX pullup -8
2018-10-18 07:24:43 +03:00
|
|
|
|
|
|
|
# shells have bugs (including older NetBSD sh) in how \ is
|
|
|
|
# used in pattern matching. So work out what the shell
|
|
|
|
# running this script expects. We could also just use a
|
|
|
|
# literal \ in the pattern, which would need to be quoted
|
|
|
|
# of course, but then we'd run into a whole host of potential
|
|
|
|
# other shell bugs (both with the quoting in the pattern, and
|
|
|
|
# with the matching that follows if that works as inended).
|
|
|
|
# Far easier, and more reliable, is to just work out what works,
|
|
|
|
# and then use it, which more or less mandates using a variable...
|
|
|
|
backslash='\\'
|
|
|
|
var='abc\' # dummy test case.
|
|
|
|
if [ "$var" = "${var%$backslash}" ]
|
|
|
|
then
|
|
|
|
# buggy sh, try the broken way
|
|
|
|
backslash='\'
|
|
|
|
if [ "$var" = "${var%$backslash}" ]
|
|
|
|
then
|
|
|
|
printf >&2 "$0: %s\n" 'No pattern match with \ (broken shell)'
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
# We know we can detect the presence of a trailing \, which is all we need.
|
|
|
|
# Now to confirm we will not generate false matches.
|
|
|
|
var='abc'
|
|
|
|
if [ "$var" != "${var%$backslash}" ]
|
|
|
|
then
|
|
|
|
printf >&2 "$0: %s\n" 'Bogus pattern match with \ (broken shell)'
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
unset var
|
2004-01-17 14:47:30 +03:00
|
|
|
|
|
|
|
includes=' "shell.h" "mystring.h" "init.h" '
|
|
|
|
defines=
|
|
|
|
decles=
|
|
|
|
event_init=
|
|
|
|
event_reset=
|
|
|
|
event_shellproc=
|
|
|
|
|
|
|
|
for src in $srcs; do
|
|
|
|
exec <$src
|
|
|
|
decnl="$nl"
|
|
|
|
while IFS=; read -r line; do
|
|
|
|
[ "$line" = x ]
|
|
|
|
case "$line " in
|
|
|
|
INIT["{ "]* ) event=init;;
|
|
|
|
RESET["{ "]* ) event=reset;;
|
|
|
|
SHELLPROC["{ "]* ) event=shellproc;;
|
|
|
|
INCLUDE[\ \ ]* )
|
|
|
|
IFS=' '
|
|
|
|
set -- $line
|
|
|
|
# ignore duplicates
|
2016-03-27 17:34:46 +03:00
|
|
|
[ "${includes}" != "${includes% $2 *}" ] && continue
|
2004-01-17 14:47:30 +03:00
|
|
|
includes="$includes$2 "
|
|
|
|
continue
|
|
|
|
;;
|
|
|
|
MKINIT\ )
|
|
|
|
# struct declaration
|
|
|
|
decles="$decles$nl"
|
|
|
|
while
|
|
|
|
read -r line
|
|
|
|
decles="${decles}${line}${nl}"
|
|
|
|
[ "$line" != "};" ]
|
|
|
|
do
|
|
|
|
:
|
|
|
|
done
|
|
|
|
decnl="$nl"
|
|
|
|
continue
|
|
|
|
;;
|
|
|
|
MKINIT["{ "]* )
|
|
|
|
# strip initialiser
|
|
|
|
def=${line#MKINIT}
|
|
|
|
comment="${def#*;}"
|
|
|
|
def="${def%;$comment}"
|
|
|
|
def="${def%%=*}"
|
|
|
|
def="${def% }"
|
|
|
|
decles="${decles}${decnl}extern${def};${comment}${nl}"
|
|
|
|
decnl=
|
|
|
|
continue
|
|
|
|
;;
|
|
|
|
\#define[\ \ ]* )
|
|
|
|
IFS=' '
|
|
|
|
set -- $line
|
|
|
|
# Ignore those with arguments
|
2004-06-16 03:09:54 +04:00
|
|
|
[ "$2" = "${2##*$openparen}" ] || continue
|
2004-01-17 14:47:30 +03:00
|
|
|
# and multiline definitions
|
2004-06-16 03:09:54 +04:00
|
|
|
[ "$line" = "${line%$backslash}" ] || continue
|
2008-02-28 00:56:14 +03:00
|
|
|
defines="${defines}#undef $2${nl}${line}${nl}"
|
2004-01-17 14:47:30 +03:00
|
|
|
continue
|
|
|
|
;;
|
|
|
|
* ) continue;;
|
|
|
|
esac
|
|
|
|
# code for events
|
2008-02-28 00:56:14 +03:00
|
|
|
ev="${nl} /* from $src: */${nl} {${nl}"
|
|
|
|
# Indent the text by an extra <tab>
|
2004-01-17 14:47:30 +03:00
|
|
|
while
|
|
|
|
read -r line
|
|
|
|
[ "$line" != "}" ]
|
|
|
|
do
|
2018-09-17 01:31:30 +03:00
|
|
|
case "$line" in
|
|
|
|
('') ;;
|
|
|
|
('#'*) ;;
|
|
|
|
(*) line=" $line";;
|
|
|
|
esac
|
2004-01-17 14:47:30 +03:00
|
|
|
ev="${ev}${line}${nl}"
|
|
|
|
done
|
2008-02-28 00:56:14 +03:00
|
|
|
ev="${ev} }${nl}"
|
2004-01-17 14:47:30 +03:00
|
|
|
eval event_$event=\"\$event_$event\$ev\"
|
|
|
|
done
|
|
|
|
done
|
|
|
|
|
|
|
|
exec >init.c.tmp
|
|
|
|
|
|
|
|
echo "/*"
|
|
|
|
echo " * This file was generated by the mkinit program."
|
|
|
|
echo " */"
|
|
|
|
echo
|
|
|
|
|
|
|
|
IFS=' '
|
|
|
|
for f in $includes; do
|
|
|
|
echo "#include $f"
|
|
|
|
done
|
|
|
|
|
|
|
|
echo
|
|
|
|
echo
|
|
|
|
echo
|
|
|
|
echo "$defines"
|
|
|
|
echo
|
|
|
|
echo "$decles"
|
|
|
|
echo
|
|
|
|
echo
|
|
|
|
echo "/*"
|
|
|
|
echo " * Initialization code."
|
|
|
|
echo " */"
|
|
|
|
echo
|
|
|
|
echo "void"
|
2008-02-28 00:56:14 +03:00
|
|
|
echo "init(void)"
|
|
|
|
echo "{"
|
2008-10-24 00:21:57 +04:00
|
|
|
echo "${event_init}"
|
2004-01-17 14:47:30 +03:00
|
|
|
echo "}"
|
|
|
|
echo
|
|
|
|
echo
|
|
|
|
echo
|
|
|
|
echo "/*"
|
|
|
|
echo " * This routine is called when an error or an interrupt occurs in an"
|
|
|
|
echo " * interactive shell and control is returned to the main command loop."
|
|
|
|
echo " */"
|
|
|
|
echo
|
|
|
|
echo "void"
|
2008-02-28 00:56:14 +03:00
|
|
|
echo "reset(void)"
|
|
|
|
echo "{"
|
2008-10-24 00:21:57 +04:00
|
|
|
echo "${event_reset}"
|
2004-01-17 14:47:30 +03:00
|
|
|
echo "}"
|
|
|
|
echo
|
|
|
|
echo
|
|
|
|
echo
|
|
|
|
echo "/*"
|
|
|
|
echo " * This routine is called to initialize the shell to run a shell procedure."
|
|
|
|
echo " */"
|
|
|
|
echo
|
|
|
|
echo "void"
|
2008-02-28 00:56:14 +03:00
|
|
|
echo "initshellproc(void)"
|
|
|
|
echo "{"
|
2008-10-24 00:21:57 +04:00
|
|
|
echo "${event_shellproc}"
|
2004-01-17 14:47:30 +03:00
|
|
|
echo "}"
|
|
|
|
|
|
|
|
exec >&-
|
|
|
|
mv init.c.tmp init.c
|