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 v4.7-rc6 10 lines 190 B view raw
1#!/bin/sh 2# Runs bpf test using test_bpf kernel module 3 4if /sbin/modprobe -q test_bpf ; then 5 /sbin/modprobe -q -r test_bpf; 6 echo "test_bpf: ok"; 7else 8 echo "test_bpf: [FAIL]"; 9 exit 1; 10fi