Report issues by shell files with:
git ls-files '*.sh' | xargs shellcheck --exclude=SC2162
Address the following:
- SC1087: Use braces when expanding arrays
- SC1091: Not following
- SC2004: `$`/`${}` is unnecessary on arithmetic variables
- SC2024: `sudo` doesn't affect redirects
- SC2034: foo appears unused. Verify it or export it
- SC2086: Double quote to prevent globbing and word splitting
- SC2087: Quote `EOF`
- SC2115: Use `"${var:?}"` to ensure this never expands to `/*`
- SC2148: Add a shebang
Addresses (at least partially) some POSIX/dash issues:
- SC2113: `function` keyword is non-standard
- SC3010: In POSIX sh, `[[` `]]` is undefined
- SC3014: In POSIX sh, `==` in place of `=` is undefined
- SC3020: In POSIX sh, `&>` is undefined
- SC3046: In POSIX sh, `source` in place of `.` is undefined
Does not address:
- SC2162: `read` without `-r` will mangle backslashes
- Any other POSIX/dash-specific issues
Signed-off-by: Tim Crawford <tcrawford@system76.com>
40 lines
907 B
Bash
Executable File
40 lines
907 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
#awk '/Fsp S Configuration/,/^} FSP_S_CONFIG;/' coreboot/3rdparty/fsp/CometLakeFspBinPkg/CometLake1/Include/FspsUpd.h |
|
|
awk '/Fsp M Configuration/,/^} FSP_M_CONFIG;/' coreboot/3rdparty/fsp/CometLakeFspBinPkg/CometLake1/Include/FspmUpd.h |
|
|
tr -d $'\r' |
|
|
tr -s ' ' |
|
|
grep '^ UINT' |
|
|
tr -d ';' |
|
|
cut -d ' ' -f3 |
|
|
while read line
|
|
do
|
|
if [[ "$line" == "Reserved"* ]]
|
|
then
|
|
continue
|
|
fi
|
|
|
|
if [[ "$line" == "Unused"* ]]
|
|
then
|
|
continue
|
|
fi
|
|
|
|
if [[ "$line" == *'['*']' ]]
|
|
then
|
|
echo "// $line"
|
|
var="$(echo "$line" | cut -d '[' -f1)"
|
|
count="$(echo "$line" | cut -d '[' -f2 | cut -d ']' -f1)"
|
|
for i in $(seq 0 "$count")
|
|
do
|
|
if [ "$i" != "$count" ]
|
|
then
|
|
echo "DISPLAY_UPD(${var[$i]});"
|
|
fi
|
|
done
|
|
else
|
|
echo "DISPLAY_UPD($line);"
|
|
fi
|
|
done
|