mirror of
https://github.com/bluekitchen/btstack.git
synced 2024-12-29 09:26:08 +00:00
19 lines
820 B
Bash
Executable File
19 lines
820 B
Bash
Executable File
#!/bin/sh
|
|
|
|
BTSTACK_REL=`dirname $0`'/../..'
|
|
BTSTACK_ROOT=`realpath $BTSTACK_REL`
|
|
|
|
# check coccinelle
|
|
command -v spatch >/dev/null 2>&1 || { echo >&2 "spatch from cocinelle required but not installed. Aborting."; exit 1; }
|
|
|
|
# append u to all literals
|
|
spatch --sp-file $BTSTACK_ROOT/tool/misc/append_u_to_constants.cocci --out-place --max-width 300 --dir $BTSTACK_ROOT/src/
|
|
spatch --sp-file $BTSTACK_ROOT/tool/misc/append_u_to_constants.cocci --out-place --max-width 300 --dir $BTSTACK_ROOT/3rd-party/micro-ecc
|
|
spatch --sp-file $BTSTACK_ROOT/tool/misc/append_u_to_constants.cocci --out-place --max-width 300 --dir $BTSTACK_ROOT/3rd-party/rijndael
|
|
|
|
# update only lines that are listed in cstat report
|
|
$BTSTACK_ROOT/tool/misc/fix-misra-10.4a.py
|
|
|
|
# delete cocci output files
|
|
# find $BTSTACK_ROOT/ -name "*.cocci_res" -delete
|