summaryrefslogtreecommitdiff
path: root/functions/bootloaders.sh
diff options
context:
space:
mode:
Diffstat (limited to 'functions/bootloaders.sh')
-rwxr-xr-xfunctions/bootloaders.sh4
1 files changed, 0 insertions, 4 deletions
diff --git a/functions/bootloaders.sh b/functions/bootloaders.sh
index 14e50ac4c..a6883a67f 100755
--- a/functions/bootloaders.sh
+++ b/functions/bootloaders.sh
@@ -10,16 +10,12 @@
Is_Requested_Bootloader ()
{
- local OLDIFS="$IFS"
- local IFS=","
local BOOTLOADER
for BOOTLOADER in ${LB_BOOTLOADERS}; do
if [ "${BOOTLOADER}" = "${1}" ]; then
- IFS="$OLDIFS"
return 0
fi
done
- IFS="$OLDIFS"
return 1
}