%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
#!/bin/bash # SPDX-License-Identifier: GPL-2.0+ # # config_override.sh base override # # Combines base and override, removing any Kconfig options from base # that conflict with any in override, concatenating what remains and # sending the result to standard output. # # Copyright (C) IBM Corporation, 2017 # # Authors: Paul E. McKenney <paulmck@linux.ibm.com> base=$1 if test -r $base then : else echo Base file $base unreadable!!! exit 1 fi override=$2 if test -r $override then : else echo Override file $override unreadable!!! exit 1 fi T=${TMPDIR-/tmp}/config_override.sh.$$ trap 'rm -rf $T' 0 mkdir $T sed < $override -e 's/^/grep -v "/' -e 's/=.*$/="/' | awk ' { if (last) print last " |"; last = $0; } END { if (last) print last; }' > $T/script sh $T/script < $base cat $override