summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2025-05-27 11:26:00 +0100
committerLeah Rowe <leah@libreboot.org>2025-05-27 11:26:00 +0100
commit49a258eafc5f84ec0f1a7e7b7b9453e2befe80f9 (patch)
tree11d32fef6ae7f54ba7dd1b3f3d36aace3be7dbb4
parent974bdbb38159d90b90eeff68220c7464b418866d (diff)
inject.sh: remove unnecessary check
we don't handle single images anymore, so we don't need to check for it at all. Signed-off-by: Leah Rowe <leah@libreboot.org>
-rw-r--r--include/inject.sh2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/inject.sh b/include/inject.sh
index a58acc81..7f98f3dc 100644
--- a/include/inject.sh
+++ b/include/inject.sh
@@ -60,8 +60,6 @@ check_release()
case "$archivename" in
*_src.tar.xz)
err "'$archive' is a src archive, silly!" ;;
- grub_*|seagrub_*|custom_*|seauboot_*|seabios_withgrub_*)
- err "'$archive' is a ROM image (it must be a tarball)" ;;
*.tar.xz) _stripped_prefix="${archivename#*_}"
board="${_stripped_prefix%.tar.xz}" ;;
*)