30 lines
766 B
Bash
Executable File
30 lines
766 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
|
|
|
|
IGBDIR=drivers/net/ethernet/intel/igb
|
|
|
|
FILES="e1000_82575.c e1000_82575.h e1000_defines.h e1000_hw.h e1000_i210.c e1000_i210.h e1000_mac.c e1000_mac.h e1000_mbx.c e1000_mbx.h e1000_nvm.c e1000_nvm.h e1000_phy.c e1000_phy.h e1000_regs.h igb_ethtool.c igb.h igb_hwmon.c igb_main.c igb_ptp.c"
|
|
|
|
set -x
|
|
|
|
for f in $FILES; do
|
|
echo $f
|
|
o=${f/\./-$KERNELVER-orig.}
|
|
e=${f/\./-$KERNELVER-ethercat.}
|
|
cp -v $KERNELDIR/$IGBDIR/$f $o
|
|
chmod 644 $o
|
|
cp -v $o $e
|
|
op=${f/\./-$PREVER-orig.}
|
|
ep=${f/\./-$PREVER-ethercat.}
|
|
diff -u $op $ep | patch -p1 $e
|
|
git add $o $e
|
|
done
|