Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

scripts: headers_install.sh: Remove config leak ignore machinery

There are no entries left to ignore and none should be added again.

Remove the now unused logic.

Signed-off-by: Thomas Weißschuh <thomas.weissschuh@linutronix.de>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>

authored by

Thomas Weißschuh and committed by
Arnd Bergmann
adbbd971 e356da60

+2 -22
+2 -22
scripts/headers_install.sh
··· 64 64 d 65 65 ' $OUTFILE) 66 66 67 - # The entries in the following list do not result in an error. 68 - # Please do not add a new entry. This list is only for existing ones. 69 - # The list will be reduced gradually, and deleted eventually. (hopefully) 70 - # 71 - # The format is <file-name>:<CONFIG-option> in each line. 72 - config_leak_ignores=" 73 - " 74 - 75 67 for c in $configs 76 68 do 77 - leak_error=1 78 - 79 - for ignore in $config_leak_ignores 80 - do 81 - if echo "$INFILE:$c" | grep -q "$ignore$"; then 82 - leak_error= 83 - break 84 - fi 85 - done 86 - 87 - if [ "$leak_error" = 1 ]; then 88 - echo "error: $INFILE: leak $c to user-space" >&2 89 - exit 1 90 - fi 69 + echo "error: $INFILE: leak $c to user-space" >&2 70 + exit 1 91 71 done 92 72 93 73 rm -f $TMPFILE