mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-03-17 04:34:07 +00:00
Commit b775fbf532dc ("kbuild: Add skip_encoding_btf_enum64 option to pahole") created the file scripts/pahole-flags.sh, but due to a mismatch between patch and quilt and git, the execute permissions did not get set properly. Fix that up. Reported-by: Florian Fainelli <f.fainelli@gmail.com> Reported-by: Sudip Mukherjee <sudipm.mukherjee@gmail.com> Fixes: b775fbf532dc ("kbuild: Add skip_encoding_btf_enum64 option to pahole") Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
24 lines
627 B
Bash
Executable file
24 lines
627 B
Bash
Executable file
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
extra_paholeopt=
|
|
|
|
if ! [ -x "$(command -v ${PAHOLE})" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
pahole_ver=$(${PAHOLE} --version | sed -E 's/v([0-9]+)\.([0-9]+)/\1\2/')
|
|
|
|
if [ "${pahole_ver}" -ge "118" ] && [ "${pahole_ver}" -le "121" ]; then
|
|
# pahole 1.18 through 1.21 can't handle zero-sized per-CPU vars
|
|
extra_paholeopt="${extra_paholeopt} --skip_encoding_btf_vars"
|
|
fi
|
|
if [ "${pahole_ver}" -ge "121" ]; then
|
|
extra_paholeopt="${extra_paholeopt} --btf_gen_floats"
|
|
fi
|
|
|
|
if [ "${pahole_ver}" -ge "124" ]; then
|
|
extra_paholeopt="${extra_paholeopt} --skip_encoding_btf_enum64"
|
|
fi
|
|
|
|
echo ${extra_paholeopt}
|