File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ info "Expanding tabs"
6969expand-tabs ()
7070{
7171 git ls-files -- " :/" " :/!:Makefile" " :/!:**/Makefile" " :/!:**/Makefile.*" " :/!:Makefile.*" " :/!:*.mk" " :/!:*.patch" " :/!:*.S" " :/!:*.inc" " :/!:nix/valgrind/*.txt" | xargs -P " $nproc " -I {} sh -c '
72- if [ ! -L {} ] && grep -Pq ' " '" ' \t' " '" ' "{}"; then
72+ if [ ! -L {} ] && grep -q "$(printf ' " '" ' \t' " '" ' )" "{}"; then
7373 tmp=$(mktemp)
7474 expand -t 4 "{}" > "$tmp" && mv "$tmp" "{}"
7575 echo "{}"
Original file line number Diff line number Diff line change @@ -269,8 +269,8 @@ gh_group_end
269269check-tabs ()
270270{
271271 for file in $( git ls-files -- " :/" " :/!:Makefile" " :/!:**/Makefile" " :/!:**/Makefile.*" " :/!:Makefile.*" " :/!:*.mk" " :/!:*.patch" " :/!:*.S" " :/!:*.inc" " :/!:nix/valgrind/*.txt" ) ; do
272- if [[ ! -L $file ]] && grep -Pq ' \t' " $file " ; then
273- l=$( grep -Pn ' \t' " $file " | head -1 | cut -d: -f1)
272+ if [[ ! -L $file ]] && grep -q $ '\t ' " $file " ; then
273+ l=$( grep -n $ '\t ' " $file " | head -1 | cut -d: -f1)
274274 echo " $file $l "
275275 fi
276276 done
Original file line number Diff line number Diff line change 55# models (and QEMU's mps3-an547) supports it. Force-select the extension so the
66# Armv8.1-M MVE FIPS202 backend can be built. Enabled per target by platform.mk.
77config FIPS202_MVE_BACKEND
8- bool "Build with the Armv8.1-M MVE FIPS202 backend"
9- select FPU
10- select ARMV8_M_DSP
11- select ARMV8_1_M_MVEI
12- select ARMV8_1_M_MVEF
8+ bool "Build with the Armv8.1-M MVE FIPS202 backend"
9+ select FPU
10+ select ARMV8_M_DSP
11+ select ARMV8_1_M_MVEI
12+ select ARMV8_1_M_MVEF
1313
1414source "Kconfig.zephyr"
You can’t perform that action at this time.
0 commit comments