Files
ethercat/devices/update.sh
2023-06-29 11:03:35 +02:00

22 lines
459 B
Bash
Executable File

#!/bin/bash
set -x
KERNELDIR=/vol/data/kernel/linux-5.10.186
KERNELVER=5.10
PREVER=4.4
for f in $KERNELDIR/drivers/net/ethernet/{realtek/8139too,realtek/r8169,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
done