26be459c9c
The list-arch.sh script considers lines beginning with "#" as match for the feature table. Given that those tables are never in lines beginning with "#", add a reverse grep on "^#" when matching the "ok/TODO" state of the architecture. This allows adding comments within the feature files, for instance describing the architecture requirements for the feature in each architecture. Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> Cc: Jonathan Corbet <corbet@lwn.net> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: linux-doc@vger.kernel.org Link: http://lkml.kernel.org/r/1518282058-24226-1-git-send-email-mathieu.desnoyers@efficios.com Signed-off-by: Ingo Molnar <mingo@kernel.org>
25 lines
711 B
Bash
Executable File
25 lines
711 B
Bash
Executable File
#
|
|
# Small script that visualizes the kernel feature support status
|
|
# of an architecture.
|
|
#
|
|
# (If no arguments are given then it will print the host architecture's status.)
|
|
#
|
|
|
|
ARCH=${1:-$(uname -m | sed 's/x86_64/x86/' | sed 's/i386/x86/')}
|
|
|
|
cd $(dirname $0)
|
|
echo "#"
|
|
echo "# Kernel feature support matrix of the '$ARCH' architecture:"
|
|
echo "#"
|
|
|
|
for F in */*/arch-support.txt; do
|
|
SUBSYS=$(echo $F | cut -d/ -f1)
|
|
N=$(grep -h "^# Feature name:" $F | cut -c25-)
|
|
C=$(grep -h "^# Kconfig:" $F | cut -c25-)
|
|
D=$(grep -h "^# description:" $F | cut -c25-)
|
|
S=$(grep -hv "^#" $F | grep -w $ARCH | cut -d\| -f3)
|
|
|
|
printf "%10s/%-22s:%s| %35s # %s\n" "$SUBSYS" "$N" "$S" "$C" "$D"
|
|
done
|
|
|