blob: e73aa35848f077f439b2e4919be9caad956e27a5 [file] [log] [blame]
Mauro Carvalho Chehabca908572020-11-30 16:36:32 +01001# SPDX-License-Identifier: GPL-2.0
Ingo Molnar669f6f92015-06-03 12:39:26 +02002#
3# Small script that visualizes the kernel feature support status
4# of an architecture.
5#
6# (If no arguments are given then it will print the host architecture's status.)
7#
8
dcgdf8a0dd2016-01-21 11:23:43 +01009ARCH=${1:-$(uname -m | sed 's/x86_64/x86/' | sed 's/i386/x86/')}
Ingo Molnar669f6f92015-06-03 12:39:26 +020010
Mauro Carvalho Chehabca908572020-11-30 16:36:32 +010011$(dirname $0)/../../scripts/get_feat.pl list --arch $ARCH