This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" Maintainer: | |
" Amir Salihefendic | |
" http://amix.dk - [email protected] | |
" | |
" Version: | |
" 5.0 - 29/05/12 15:43:36 | |
" | |
" Blog_post: | |
" http://amix.dk/blog/post/19691#The-ultimate-Vim-configuration-on-Github |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Create qemu image to test kernel builds | |
# | |
# defines | |
MNT_PATH=~/qemu/ | |
MNT=rootfs | |
QEMU_PATH=~/qemu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
USB ATOMIC ALLOCATION ERROR INJECTION | |
Prerequisites: | |
- Install bcc and bcc-tools, this patch https://github.com/iovisor/bcc/pull/2044 | |
is needed | |
- The BCC tools are available at: /usr/share/bcc/tools | |
- Boot with the latest KOTD-debug kernel which has CONFIG_BPF_KPROBE_OVERRIDE | |
enabled |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
check_series() { | |
[[ -z $1 ]] && { echo Commit range not provided; return 1; } | |
current_branch=$(git branch --show-current) | |
git log --pretty=format:'%h' --reverse $1 | while read patch; do | |
git checkout --quiet $patch | |
git log --pretty=oneline --abbrev-commit -1 | |
./scripts/sequence-patch.sh --rapid 1>/dev/null || { echo NOK; break; } |