Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at for-next 11 lines 315 B view raw
1#!/bin/sh 2# SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause) 3 4# Kselftest framework requirement - SKIP code is 4. 5ksft_skip=4 6 7[ -e /dev/tpm0 ] || exit $ksft_skip 8read tpm_version < /sys/class/tpm/tpm0/tpm_version_major 9[ "$tpm_version" == 2 ] || exit $ksft_skip 10 11python3 -m unittest -v tpm2_tests.SmokeTest 2>&1