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

Configure Feed

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

at v6.16-rc4 11 lines 225 B view raw
1#!/bin/sh 2# SPDX-License-Identifier: GPL-2.0 3# Runs bpf test using test_bpf kernel module 4 5if /sbin/modprobe -q test_bpf ; then 6 /sbin/modprobe -q -r test_bpf; 7 echo "test_bpf: ok"; 8else 9 echo "test_bpf: [FAIL]"; 10 exit 1; 11fi