2018-11-01 14:23:25 +05:30
|
|
|
#!/bin/sh
|
|
|
|
|
2018-11-27 20:04:25 +05:30
|
|
|
. ./.config || exit 1
|
|
|
|
|
2018-11-01 14:23:25 +05:30
|
|
|
target="$1"
|
2018-11-17 23:18:14 +05:30
|
|
|
custom_loc="$2"
|
|
|
|
applet_loc="$3"
|
2018-11-01 14:23:25 +05:30
|
|
|
|
|
|
|
test "$target" || exit 1
|
|
|
|
test "$SED" || SED=sed
|
|
|
|
test "$DD" || DD=dd
|
|
|
|
|
2018-11-27 20:04:25 +05:30
|
|
|
if [ x"$CONFIG_FEATURE_SH_EMBEDDED_SCRIPTS" != x"y" ]
|
|
|
|
then
|
|
|
|
printf '#define NUM_SCRIPTS 0\n' >"$target"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2018-11-01 14:23:25 +05:30
|
|
|
# Some people were bitten by their system lacking a (proper) od
|
|
|
|
od -v -b </dev/null >/dev/null
|
|
|
|
if test $? != 0; then
|
|
|
|
echo 'od tool is not installed or cannot accept "-v -b" options'
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2018-11-17 23:18:14 +05:30
|
|
|
custom_scripts=""
|
|
|
|
if [ -d "$custom_loc" ]
|
2018-11-01 14:23:25 +05:30
|
|
|
then
|
2018-11-17 23:18:14 +05:30
|
|
|
custom_scripts=$(cd $custom_loc; ls * 2>/dev/null)
|
2018-11-01 14:23:25 +05:30
|
|
|
fi
|
2018-11-18 13:10:40 +05:30
|
|
|
all_scripts=$($srctree/applets/busybox.mkscripts)
|
2018-11-17 23:18:14 +05:30
|
|
|
|
|
|
|
# all_scripts includes applet scripts and custom scripts, sort them out
|
|
|
|
applet_scripts=""
|
|
|
|
for i in $all_scripts
|
|
|
|
do
|
|
|
|
found=0
|
|
|
|
for j in $custom_scripts
|
|
|
|
do
|
|
|
|
if [ "$i" = "$j" ]
|
|
|
|
then
|
|
|
|
found=1
|
|
|
|
break;
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
if [ $found -eq 0 ]
|
|
|
|
then
|
|
|
|
# anything that isn't a custom script is an applet script
|
|
|
|
applet_scripts="$applet_scripts $i"
|
|
|
|
fi
|
|
|
|
done
|
2018-11-01 14:23:25 +05:30
|
|
|
|
2018-11-17 23:18:14 +05:30
|
|
|
# we know the custom scripts are present but applet scripts might have
|
|
|
|
# become detached from their configuration
|
|
|
|
for i in $applet_scripts
|
|
|
|
do
|
|
|
|
#if [ ! -f "$applet_loc/$i" -a ! -f "$custom_loc/$i" ]
|
|
|
|
if [ ! -f "$applet_loc/$i" ]
|
|
|
|
then
|
|
|
|
echo "missing applet script $i"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
done
|
2018-11-01 14:23:25 +05:30
|
|
|
|
2018-11-17 23:18:14 +05:30
|
|
|
n=$(echo $custom_scripts $applet_scripts | wc -w)
|
|
|
|
nall=$(echo $all_scripts | wc -w)
|
|
|
|
|
|
|
|
if [ $n -ne $nall ]
|
2018-11-01 14:23:25 +05:30
|
|
|
then
|
2018-11-17 23:18:14 +05:30
|
|
|
echo "script mismatch $n != $nall"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
concatenate_scripts() {
|
|
|
|
for i in $custom_scripts
|
|
|
|
do
|
|
|
|
cat $custom_loc/$i
|
|
|
|
printf '\000'
|
|
|
|
done
|
|
|
|
for i in $applet_scripts
|
2018-11-01 14:23:25 +05:30
|
|
|
do
|
2018-11-17 23:18:14 +05:30
|
|
|
cat $applet_loc/$i
|
|
|
|
printf '\000'
|
2018-11-01 14:23:25 +05:30
|
|
|
done
|
2018-11-17 23:18:14 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
exec >"$target.$$"
|
|
|
|
|
|
|
|
if [ $n -ne 0 ]
|
|
|
|
then
|
|
|
|
printf '#ifdef DEFINE_SCRIPT_DATA\n'
|
2018-11-21 15:41:01 +05:30
|
|
|
printf 'const uint16_t applet_numbers[] = {\n'
|
|
|
|
for i in $custom_scripts $applet_scripts
|
|
|
|
do
|
|
|
|
# TODO support applets with names including invalid characters
|
|
|
|
printf '\tAPPLET_NO_%s,\n' $i
|
|
|
|
done
|
|
|
|
printf '};\n'
|
2018-11-01 14:23:25 +05:30
|
|
|
printf '#else\n'
|
2018-11-21 15:41:01 +05:30
|
|
|
printf 'extern const uint16_t applet_numbers[];\n'
|
2018-11-01 14:23:25 +05:30
|
|
|
printf '#endif\n'
|
|
|
|
fi
|
2018-11-17 23:18:14 +05:30
|
|
|
|
|
|
|
printf "\n"
|
|
|
|
printf '#define NUM_SCRIPTS %d\n' $n
|
|
|
|
printf "\n"
|
2018-11-01 14:23:25 +05:30
|
|
|
|
|
|
|
if [ $n -ne 0 ]
|
|
|
|
then
|
|
|
|
printf '#define UNPACKED_SCRIPTS_LENGTH '
|
2018-11-17 23:18:14 +05:30
|
|
|
concatenate_scripts | wc -c
|
2018-11-01 14:23:25 +05:30
|
|
|
|
|
|
|
printf '#define PACKED_SCRIPTS \\\n'
|
2018-11-17 23:18:14 +05:30
|
|
|
concatenate_scripts | bzip2 -1 | $DD bs=2 skip=1 2>/dev/null | \
|
|
|
|
od -v -b \
|
2018-11-01 14:23:25 +05:30
|
|
|
| grep -v '^ ' \
|
|
|
|
| $SED -e 's/^[^ ]*//' \
|
|
|
|
-e 's/ //g' \
|
|
|
|
-e '/^$/d' \
|
|
|
|
-e 's/\(...\)/0\1,/g' \
|
|
|
|
-e 's/$/ \\/'
|
|
|
|
printf '\n'
|
|
|
|
fi
|
|
|
|
|
|
|
|
mv -- "$target.$$" "$target"
|