rebase onto develop-2.0

This commit is contained in:
lijia
2024-10-18 16:47:51 +08:00
parent 99a68d5c9e
commit e734af76d8
66 changed files with 22616 additions and 6 deletions

View File

@@ -0,0 +1,12 @@
#!/bin/bash
SOURCE_DIR=$1
PATCH_FILE=$2
PATCH_STATUS=`head $SOURCE_DIR/tcpdump.c | grep "PATCH FOR STELLAR-DUMP"`
if [ -z "$PATCH_STATUS" ]
then
echo "starting patch tcpdump..."
patch -N -p1 -d $SOURCE_DIR -i $PATCH_FILE
else
echo "alread patched, skip... "
fi