#! /bin/bash
# A little script setup kernel git tree
#
targetdir=$1
filedir=$2
patchdir=$3
patchpattern=${4-*}

if [ ! -d "${filedir}" ] ; then
    echo "Aborting.  1 '${filedir}' is not a directory."
    exit 1
fi
if [ ! -d "${targetdir}" ] ; then
    echo "Aborting.  2 '${targetdir}' is not a directory."
    exit 1
fi
if [ ! -d "${patchdir}" ] ; then
    echo "Aborting.  3 '${patchdir}' is not a directory."
    exit 1
fi

   echo "cp -fr ${filedir}/* ${targetdir}/. "
   cp -fr ${filedir}/* ${targetdir}/.  && \
   cd ${targetdir} && \
   git add . && git commit -a -m "file" && \
   cd $CURRENT_PATH
    
for i in ${patchdir}/${patchpattern} ; do 
    case "$i" in
	*.gz)
	type="gzip"; uncomp="gunzip -dc"; ;; 
	*.bz)
	type="bzip"; uncomp="bunzip -dc"; ;; 
	*.bz2)
	type="bzip2"; uncomp="bunzip2 -dc"; ;; 
	*.zip)
	type="zip"; uncomp="unzip -d"; ;; 
	*.Z)
	type="compress"; uncomp="uncompress -c"; ;; 
	*)
	type="plaintext"; uncomp="cat"; ;; 
    esac
    [ -d "${i}" ] && echo "Ignoring subdirectory ${i}" && continue	
    echo ""
    echo "Applying ${i} using ${type}: " 
    ${uncomp} ${i} | patch -p1 -E -d ${targetdir} && \
    cd ${targetdir} && \
    git add . && \
    git commit -a -m "`echo "${i}" | cut -b52-`" &&
    cd $CURRENT_PATH
    if [ $? != 0 ] ; then
        echo "Patch failed!  Please fix $i!"
	exit 1
    fi
done

# Check for rejects...
if [ "`find $targetdir/ '(' -name '*.rej' -o -name '.*.rej' ')' -print`" ] ; then
    echo "Aborting.  Reject files found."
    exit 1
fi

# Remove backup files
find $targetdir/ '(' -name '*.orig' -o -name '.*.orig' ')' -exec rm -f {} \;
