HyperDroidAOXP: use RedPill kernel if GT-N7100

Change-Id: I03441984867c96fafd5cf27b67a38ab0ea3c4b2b
diff --git a/tools/squisher b/tools/squisher
index 6e974dd..b6047b0 100755
--- a/tools/squisher
+++ b/tools/squisher
@@ -162,6 +162,16 @@
    mv -f $REPACK/ota/system/aoxpkernel/boot.img $REPACK/ota/boot.img
 fi
 
+# Copy RedPill Kernel & Clean .DS_Store files
+DEVICEID=`sed -n -e'/ro\.product\.model/s/^.*=//p' $OUT/system/build.prop`
+if [ "$DEVICEID" = "GT-N7100" ]; then
+REDPILL="~/HyperDroidExtras/HyperExtras"
+   cd $REPACK/ota
+   cp $REDPILL/boot.img .
+   cp -r $REDPILL/system .
+   find -name .DS_Store -exec rm -f {} \;
+fi
+
 # Determine what to name the new signed package
 MODVERSION=`sed -n -e'/ro\.modversion/s/^.*=//p' $REPACK/ota/system/build.prop`
 OUTFILE=$OUT/$MODVERSION.zip