diff --git a/resources/scripts/blobs/download b/resources/scripts/blobs/download
index d89335736d410061e3b4a0a7611ea336faeea544..f189889932cd610d1e199392169ec6242c46c7ff 100755
--- a/resources/scripts/blobs/download
+++ b/resources/scripts/blobs/download
@@ -7,13 +7,6 @@ board="${1}"
 # A shorthand for each board so as not to duplicate blobs for boards of different sizes
 board_short=${board%%_*mb}
 
-# Allow adding only blobs that can be legally redistributed (ifd+gbe)
-if [ "${2}" = "redistributable" ]; then
-	redistributable=true
-else
-	redistributable=false
-fi
-
 Fail(){
 	printf "\nERROR: $@\n"
 	exit 1
@@ -102,10 +95,8 @@ set -- "resources/coreboot/${board}/config/*"
 . "resources/coreboot/${board}/board.cfg"
 
 if [ "${CONFIG_HAVE_MRC}" = "y" ]; then
-	if [ "${redistributable}" = "false" ]; then
-		printf 'haswell board detected, downloading mrc\n'
-		needs+=" MRC"
-	fi
+	printf 'haswell board detected, downloading mrc\n'
+	needs+=" MRC"
 
 fi
 
@@ -115,10 +106,8 @@ if [ "${CONFIG_HAVE_IFD_BIN}" = "y" ]; then
 fi
 
 if [ "${CONFIG_HAVE_ME_BIN}" = "y" ]; then
-	if [ "${redistributable}" = "false" ]; then
-		printf 'board needs intel management engine\n'
-		needs+=" ME"
-	fi
+	printf 'board needs intel management engine\n'
+	needs+=" ME"
 fi
 
 if [ "${CONFIG_HAVE_GBE_BIN}" = "y" ]; then
diff --git a/resources/scripts/build/boot/roms b/resources/scripts/build/boot/roms
index 94215028057604adb00fd7856a61f17a4fbfef64..c526c268e4eb34d9ad9aa9590dfebd7af70c8d3c 100755
--- a/resources/scripts/build/boot/roms
+++ b/resources/scripts/build/boot/roms
@@ -83,12 +83,7 @@ buildrom_release() {
 	board="$1"
 
 	if [ -d "resources/coreboot/${board}/" ]; then
-		./build release deblob ${board}
-		if [ "$?" = 2 ]; then
-			./build boot roms_helper "${board}"
-		else
-			./build boot roms_helper deblobbed "${board}"
-		fi
+		./build boot roms_helper "${board}"
 	else
 		die "\nbuild/roms: target not defined in the build system: %s\n" "${board}"
 	fi
diff --git a/resources/scripts/build/boot/roms_helper b/resources/scripts/build/boot/roms_helper
index 40c0f3948a86ac8626863eeb8864fed37e5398df..bd1f38602d695b1ecb289f3b9c8a96cd086acdda 100755
--- a/resources/scripts/build/boot/roms_helper
+++ b/resources/scripts/build/boot/roms_helper
@@ -30,13 +30,6 @@ set -u -e
 
 projectname="$(cat projectname)"
 
-if [ "${1}" = "deblobbed" ]; then
-	deblobbed=true
-	shift
-else
-	deblobbed=false
-fi
-
 displaymodes=""
 payloads=""
 keyboard_layouts=""
@@ -315,11 +308,7 @@ moverom() {
 # expected: configs must not specify a payload
 mkCoreboot() {
 	cbdir="${1}" # e.g. coreboot/default
-	if ${deblobbed} ; then
-		cbcfgpath="${2}_deblobbed"
-	else
-		cbcfgpath="${2}" # e.g. resources/coreboot/x200_8mb/config/libgfxinit_txtmode
-	fi
+	cbcfgpath="${2}" # e.g. resources/coreboot/x200_8mb/config/libgfxinit_txtmode
 	if [ ! -f "${cbcfgpath}" ]; then
 		printf "\nmkCoreboot: Coreboot config '%s' does not exist. Skipping build.\n" \
 			"${cbcfgpath}"
diff --git a/resources/scripts/build/release/deblob b/resources/scripts/build/release/deblob
deleted file mode 100755
index dcac1020bf396db4958e40c9f11e7ace98ff589e..0000000000000000000000000000000000000000
--- a/resources/scripts/build/release/deblob
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/usr/bin/env bash
-
-# SPDX-FileCopyrightText: 2022 Caleb La Grange <thonkpeasant@protonmail.com>
-# SPDX-License-Identifier: GPL-3.0-only
-
-board="${1}"
-board_config_dir="resources/coreboot/${board}/config"
-set -- "${board_config_dir}/*"
-. ${1} 2>/dev/null
-
-if [ "${CONFIG_HAVE_MRC}" = "y" ] || [ "${CONFIG_HAVE_ME_BIN}" = "y" ]; then
-	rm ${board_config_dir}/*_deblobbed
-	for config in ${board_config_dir}/* ; do
-		grep -v 'CONFIG_HAVE_ME_BIN\|CONFIG_ME_BIN_PATH\|CONFIG_HAVE_MRC\|CONFIG_MRC_FILE' ${config} > "${config}_deblobbed"
-	done
-	./blobutil download ${board} redistributable
-
-else
-	# Quickly exits for boards requiring no blobs
-	exit 2
-fi