summaryrefslogtreecommitdiff
path: root/include/defconfig.sh
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2023-09-29 17:23:47 +0100
committerLeah Rowe <leah@libreboot.org>2023-09-29 17:23:47 +0100
commit32da4e319bac527b1ef70f392b5c93d9d4d5ceb4 (patch)
treea2bd664242e0491a94209e630c407354dedfd2e8 /include/defconfig.sh
parent710171f92b06cfcd7de4d29e29ffa0fe8aee1266 (diff)
merge include/fetch.sh, blobutil.sh, defconfig.sh
They are only ever used by script/update/blobs/*, so put them all in blobutil.sh. This cuts down on the number of scripts in lbmk. Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include/defconfig.sh')
-rwxr-xr-xinclude/defconfig.sh11
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}"
-}