brintos

brintos / linux-shallow public Read only

0
0
Text · 334 B · e73aa35 Raw
12 lines · bash
1# SPDX-License-Identifier: GPL-2.02#3# Small script that visualizes the kernel feature support status4# of an architecture.5#6# (If no arguments are given then it will print the host architecture's status.)7#8 9ARCH=${1:-$(uname -m | sed 's/x86_64/x86/' | sed 's/i386/x86/')}10 11$(dirname $0)/../../scripts/get_feat.pl list --arch $ARCH12