blob: 98eaa0e25fd3b65c320d295b3c0358aaa2005dd2 [file] [log] [blame]
Bart De Schuymer8b4e9ab2002-08-23 20:40:53 +00001#!/bin/bash
2# Copies the repository files to the working kernel directory
3# This is used on a freshly untarred kernel
4
5# 23 August 2002 - this is for the files vs kernel 2.5
6
7export FROM=/ebtables-cvs/ebtables2/
8export TO=/usr/src/ebt2.0pre11
9
10mkdir -p $TO/net/bridge/netfilter
11mkdir -p $TO/include/netfilter_bridge
12cp -r -f $FROM/kernel/linux/* $TO/
13cp -r -f $FROM/kernel/linux2.5/* $TO/
14cp -r -f $FROM/br-nf-bds/linux/* $TO/
15cp -r -f $FROM/br-nf-bds2.5/linux/* $TO/
16