mirror of
https://gitlab.com/etherlab.org/ethercat.git
synced 2026-02-06 03:41:52 +08:00
30 lines
632 B
Bash
Executable File
30 lines
632 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ $# -ne 3 ]; then
|
|
echo "Need 3 arguments: 1) kernel source dir, 2) previous version, 3) version to add"
|
|
exit 1
|
|
fi
|
|
|
|
KERNELDIR=$1
|
|
PREVER=$2
|
|
KERNELVER=$3
|
|
|
|
set -x
|
|
|
|
for f in $KERNELDIR/drivers/net/ethernet/{realtek/8139too.c,intel/e100.c}; do
|
|
echo Driver $f
|
|
b=$(basename $f)
|
|
o=${b/\./-$KERNELVER-orig.}
|
|
e=${b/\./-$KERNELVER-ethercat.}
|
|
cp -v $f $o
|
|
chmod 644 $o
|
|
cp -v $o $e
|
|
op=${b/\./-$PREVER-orig.}
|
|
ep=${b/\./-$PREVER-ethercat.}
|
|
diff -u $op $ep | patch -p1 $e
|
|
git add $o $e
|
|
echo -e "\t$e \\\\\n\t$o \\\\" >> Makefile.am
|
|
done
|
|
|
|
echo "Remember to update Makefile.am!"
|