From 83b35f687024f33656ef107760904c9814cea88d Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Fri, 26 Feb 2021 15:28:05 -0700 Subject: [PATCH] Revert "scripts: Check coreboot config is correct" This reverts commit af5041f90befc28d8d99efa052d5823b2b1833c6. --- scripts/_build/coreboot.sh | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/scripts/_build/coreboot.sh b/scripts/_build/coreboot.sh index 611a09c..8b0c9e6 100755 --- a/scripts/_build/coreboot.sh +++ b/scripts/_build/coreboot.sh @@ -17,19 +17,6 @@ pushd coreboot >/dev/null fi make distclean make defconfig KBUILD_DEFCONFIG="${CONFIG}" - - # Ensure config is correct - while read line; do - if [[ "${line}" =~ "^#" ]] || [[ -z "${line}" ]]; then - continue - fi - - if ! grep -q "${line}" ".config"; then - echo "expected config not found: ${line}" >&2 - exit 1 - fi - done < "${CONFIG}" - make --jobs="$(nproc)" cp -v "build/coreboot.rom" "${COREBOOT}" popd >/dev/null