|
@@ -17,7 +17,7 @@ for F in */*/arch-support.txt; do
|
|
N=$(grep -h "^# Feature name:" $F | cut -c25-)
|
|
N=$(grep -h "^# Feature name:" $F | cut -c25-)
|
|
C=$(grep -h "^# Kconfig:" $F | cut -c25-)
|
|
C=$(grep -h "^# Kconfig:" $F | cut -c25-)
|
|
D=$(grep -h "^# description:" $F | cut -c25-)
|
|
D=$(grep -h "^# description:" $F | cut -c25-)
|
|
- S=$(grep -hw $ARCH $F | cut -d\| -f3)
|
|
|
|
|
|
+ S=$(grep -hv "^#" $F | grep -w $ARCH | cut -d\| -f3)
|
|
|
|
|
|
printf "%10s/%-22s:%s| %35s # %s\n" "$SUBSYS" "$N" "$S" "$C" "$D"
|
|
printf "%10s/%-22s:%s| %35s # %s\n" "$SUBSYS" "$N" "$S" "$C" "$D"
|
|
done
|
|
done
|