summaryrefslogtreecommitdiff
path: root/resources/scripts/blobs/download
diff options
context:
space:
mode:
Diffstat (limited to 'resources/scripts/blobs/download')
-rwxr-xr-xresources/scripts/blobs/download19
1 files changed, 4 insertions, 15 deletions
diff --git a/resources/scripts/blobs/download b/resources/scripts/blobs/download
index d8933573..f1898899 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