9d7c01f810
Replace the BSD license header with the SPDX tag for scripting files with only an Intel copyright on them. Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
16 lines
428 B
Bash
Executable File
16 lines
428 B
Bash
Executable File
#!/bin/sh
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2010-2014 Intel Corporation
|
|
|
|
echo "#ifndef __RTE_CONFIG_H"
|
|
echo "#define __RTE_CONFIG_H"
|
|
grep CONFIG_ $1 |
|
|
grep -v '^[ \t]*#' |
|
|
sed 's,CONFIG_\(.*\)=y.*$,#undef \1\
|
|
#define \1 1,' |
|
|
sed 's,CONFIG_\(.*\)=n.*$,#undef \1,' |
|
|
sed 's,CONFIG_\(.*\)=\(.*\)$,#undef \1\
|
|
#define \1 \2,' |
|
|
sed 's,\# CONFIG_\(.*\) is not set$,#undef \1,'
|
|
echo "#endif /* __RTE_CONFIG_H */"
|