Mauro Carvalho Chehab | ca90857 | 2020-11-30 16:36:32 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0 |
Ingo Molnar | 669f6f9 | 2015-06-03 12:39:26 +0200 | [diff] [blame] | 2 | # |
| 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 | |
dcg | df8a0dd | 2016-01-21 11:23:43 +0100 | [diff] [blame] | 9 | ARCH=${1:-$(uname -m | sed 's/x86_64/x86/' | sed 's/i386/x86/')} |
Ingo Molnar | 669f6f9 | 2015-06-03 12:39:26 +0200 | [diff] [blame] | 10 | |
Mauro Carvalho Chehab | ca90857 | 2020-11-30 16:36:32 +0100 | [diff] [blame] | 11 | $(dirname $0)/../../scripts/get_feat.pl list --arch $ARCH |