2 # SPDX-License-Identifier: GPL-2.0+
4 # config_override.sh base override
6 # Combines base and override, removing any Kconfig options from base
7 # that conflict with any in override, concatenating what remains and
8 # sending the result to standard output.
10 # Copyright (C) IBM Corporation, 2017
12 # Authors: Paul E. McKenney <paulmck@linux.ibm.com>
19 echo Base
file $base unreadable
!!!
28 echo Override
file $override unreadable
!!!
32 T
=${TMPDIR-/tmp}/config_override.sh.$$
36 sed < $override -e 's/^/grep -v "/' -e 's/=.*$/="/' |