diff options
Diffstat (limited to 'include/defconfig.sh')
-rwxr-xr-x | include/defconfig.sh | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/include/defconfig.sh b/include/defconfig.sh deleted file mode 100755 index 7b2e4c12..00000000 --- a/include/defconfig.sh +++ /dev/null @@ -1,11 +0,0 @@ -# SPDX-License-Identifier: MIT -# SPDX-FileCopyrightText: 2023 Leah Rowe <leah@libreboot.org> - -check_defconfig() -{ - no_config="printf \"No target defconfig in %s\\n\" ${1} 1>&2; return 1" - for x in "${1}"/config/*; do - [ -f "${x}" ] && no_config="" - done - eval "${no_config}" -} |