summaryrefslogtreecommitdiff
path: root/gentree.py
diff options
context:
space:
mode:
authorJohannes Berg <johannes@sipsolutions.net>2013-04-02 19:27:23 +0200
committerJohannes Berg <johannes@sipsolutions.net>2013-04-02 19:27:23 +0200
commit3ec07b8dc2ef11b1bfbdec3b6ed335b013be779b (patch)
tree42eaf82491e75302af703f7b8f5f048c76862da8 /gentree.py
parent3cefcdd73225e5404b077640ece987efff04216f (diff)
rename compat dir to backport
Then we can also move all the plumbing/ stuff into it. Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Diffstat (limited to 'gentree.py')
-rwxr-xr-xgentree.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/gentree.py b/gentree.py
index f7211e43..f8d1f62d 100755
--- a/gentree.py
+++ b/gentree.py
@@ -163,12 +163,9 @@ def main():
args = parser.parse_args()
# first thing to copy is our own plumbing -- we start from that
- copy_list = [(os.path.join(source_dir, 'plumbing'), '', '')]
+ copy_list = [(os.path.join(source_dir, 'backport'), '', '')]
# then add stuff from the copy list file
copy_list.extend(read_copy_list(args.kerneldir, args.copy_list))
- # add compat to the list
- copy_list.append((os.path.join(source_dir, 'compat'), 'compat/', 'compat/'))
- copy_list.append((os.path.join(source_dir, 'compat'), 'include/', 'include/'))
deplist = read_dependencies(os.path.join(source_dir, 'dependencies'))