Revision 1917a6932870062778e3099eb432795d45918fc3 authored by Joe Perches on 27 March 2016, 21:34:52 UTC, committed by Mike Marshall on 08 April 2016, 18:10:45 UTC
Emit the logging messages at the appropriate levels.

Miscellanea:

o Change format to fmt
o Use the more common ##__VA_ARGS__

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Mike Marshall <hubcap@omnibond.com>
1 parent 2eacea7
Raw File
list-arch.sh
#
# 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 -hw $ARCH $F | cut -d\| -f3)

  printf "%10s/%-22s:%s| %35s # %s\n" "$SUBSYS" "$N" "$S" "$C" "$D"
done

back to top