aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/vcs/testdata/linux/merge_config.sh
blob: 1ab10d37939b91c92aa37967416737b6a30d200d (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
# Copyright 2020 syzkaller project authors. All rights reserved.
# Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.

# merge_config.sh -m -O outdir baseline kernelAdditionsConfig
OUTDIR=$3

echo `cat $4` > $OUTDIR/.config
echo `cat $5` >> $OUTDIR/.config

exit 0