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 v5.19-rc6 16 lines 276 B view raw
1#!/bin/bash 2 3rm -r tmpmnt 4rm -f testfile.img 5dd if=/dev/zero of=testfile.img bs=1M seek=1000 count=1 6DEVICE=$(losetup --show -f testfile.img) 7mkfs.btrfs -f $DEVICE 8mkdir tmpmnt 9./tracex7 $DEVICE 10if [ $? -eq 0 ] 11then 12 echo "SUCCESS!" 13else 14 echo "FAILED!" 15fi 16losetup -d $DEVICE