diff options
author | Leah Rowe <leah@libreboot.org> | 2023-10-02 04:17:50 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-10-02 04:17:50 +0100 |
commit | 3fcad603b2772a3d19a84a922de651a3626a43e3 (patch) | |
tree | 2ea3124611c2f012785c53cee487fb9ae9a2e69d | |
parent | 0a711ebc6697b977349ab19b75d42706c2f1dd8f (diff) |
build/coreboot/utils: remove unnecessary check
the file check is sufficient (target.cfg)
Signed-off-by: Leah Rowe <leah@libreboot.org>
-rwxr-xr-x | script/build/coreboot/utils | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/script/build/coreboot/utils b/script/build/coreboot/utils index ad771c03..75827d86 100755 --- a/script/build/coreboot/utils +++ b/script/build/coreboot/utils @@ -19,8 +19,6 @@ main() } build_for_mainboard() { - [ -d "config/coreboot/${1}" ] || \ - err "build_for_mainboard ${1}: board dir does not exist" [ -f "config/coreboot/${1}/target.cfg" ] || \ err "build_for_mainboard ${1}: target.cfg does not exist" tree="undefined" |