diff options
author | Bart De Schuymer <bdschuym@pandora.be> | 2002-08-24 09:36:53 +0000 |
---|---|---|
committer | Bart De Schuymer <bdschuym@pandora.be> | 2002-08-24 09:36:53 +0000 |
commit | ae17b9248ea08f87dd76566b73d2dc4eac2f58e6 (patch) | |
tree | d5b5d1a9fce28af40bd2d1bb017408dde31ae18b /kernel/scripts/CopyRep2.5 | |
parent | d86fb4e9d55311c68244ae1fb40f6e3f3a454e19 (diff) |
*** empty log message ***
Diffstat (limited to 'kernel/scripts/CopyRep2.5')
-rwxr-xr-x | kernel/scripts/CopyRep2.5 | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/kernel/scripts/CopyRep2.5 b/kernel/scripts/CopyRep2.5 index 98eaa0e..3bb78c6 100755 --- a/kernel/scripts/CopyRep2.5 +++ b/kernel/scripts/CopyRep2.5 @@ -4,13 +4,17 @@ # 23 August 2002 - this is for the files vs kernel 2.5 +# Change these 2 to the appropriate directories +# FROM points to the CVS base of ebtables +# TO points to the base of the kernel source tree where we want the files export FROM=/ebtables-cvs/ebtables2/ -export TO=/usr/src/ebt2.0pre11 +export TO=/usr/src/linux-2.5.31 mkdir -p $TO/net/bridge/netfilter mkdir -p $TO/include/netfilter_bridge -cp -r -f $FROM/kernel/linux/* $TO/ -cp -r -f $FROM/kernel/linux2.5/* $TO/ -cp -r -f $FROM/br-nf-bds/linux/* $TO/ -cp -r -f $FROM/br-nf-bds2.5/linux/* $TO/ +# only the different files are in kernel/linux2.5 +/bin/cp -r -f $FROM/kernel/linux/* $TO/ +/bin/cp -r -f $FROM/kernel/linux2.5/* $TO/ + +/bin/cp -r -f $FROM/br-nf-bds/linux2.5/* $TO/ |