#!/bin/bash

#script to create a new patch from your sources.
#modify paths to your needs!
#create file if non-existant
cat  filelist.txt | xargs -n1 -I '{}' diff -pruNbB  linux-2.6.25/'{}' linux-2.6.25-e2c/'{}' > ./linux-2.6.25-e2compr.patch

