Lines Matching +full:a +full:- +full:z
5 for F_FILE in Documentation/features/*/*/arch-support.txt; do
6 F=$(grep "^# Kconfig:" "$F_FILE" | cut -c26-)
9 # Each feature F is identified by a pair (O, K), where 'O' can
17 K=$(echo $F | sed -e 's/^!//g')
21 # F := (O, K) is 'valid' iff there is a Kconfig file (for some
30 # 2) K does not exist (e.g., it was renamed/mis-typed);
46 K_FILES=$(find $ARCH_DIR -name "Kconfig*")
48 if [ ! -z "$K_GREP" ]; then
54 printf "WARNING: '%s' is not a valid Kconfig\n" "$F"
59 echo " -----------------------" >> $T_FILE
61 echo " -----------------------" >> $T_FILE
63 ARCH=$(echo $ARCH_DIR | sed -e 's/^arch//g' | sed -e 's/\///g')
64 K_FILES=$(find $ARCH_DIR -name "Kconfig*")
70 # - ("", K) is 'supported by a given arch', if there is a
73 # - ("not", K) is 'supported by a given arch', if there is
76 # - otherwise: preserve the previous status value (if any),
82 if [ "$O" = "" ] && [ ! -z "$K_GREP" ]; then
84 elif [ "$O" = "not" ] && [ -z "$K_GREP" ]; then
87 S=$(grep -v "^#" "$F_FILE" | grep " $ARCH:")
88 if [ ! -z "$S" ]; then
96 echo " -----------------------" >> $T_FILE