aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/vcs/testdata/linux/merge_config.sh
blob: 1b5bb6813ce602a34cc161a2bba861be2e1e19d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env 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