blob: f8cd2a21927578f9f90a8513bdc45832534cdc0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
# Setup creates a symlink - we have to replace it with the
# actual file for git diff to work.
set -x
rm ./linux/drivers/hid/hid-input.c
cp ./src/hid-input.c ./linux/drivers/hid/hid-input.c
cd ./linux
git diff > ../fastmouse.patch
|