aboutsummaryrefslogtreecommitdiff
path: root/resources/scripts/helpers/build/module/flashrom
diff options
context:
space:
mode:
Diffstat (limited to 'resources/scripts/helpers/build/module/flashrom')
-rwxr-xr-xresources/scripts/helpers/build/module/flashrom10
1 files changed, 5 insertions, 5 deletions
diff --git a/resources/scripts/helpers/build/module/flashrom b/resources/scripts/helpers/build/module/flashrom
index dd2cc939..7ed79fcd 100755
--- a/resources/scripts/helpers/build/module/flashrom
+++ b/resources/scripts/helpers/build/module/flashrom
@@ -48,9 +48,9 @@ if (( $# != 1 )); then
make -j${cores}
else
if [ "${1}" = "static" ]; then
- make SHARED=0 CC='gcc -static' -j${cores}
+ make SHARED=0 CC='gcc -static' -j${cores} CONFIG_ENABLE_LIBUSB1_PROGRAMMERS=no
else
- make -j${cores}
+ make -j${cores} CONFIG_ENABLE_LIBUSB1_PROGRAMMERS=no
fi
fi
@@ -71,12 +71,12 @@ do
make clean
if (( $# != 1 )); then
- make -j${cores}
+ make -j${cores} CONFIG_ENABLE_LIBUSB1_PROGRAMMERS=no
else
if [ "${1}" = "static" ]; then
- make SHARED=0 CC='gcc -static' -j${cores}
+ make SHARED=0 CC='gcc -static' -j${cores} CONFIG_ENABLE_LIBUSB1_PROGRAMMERS=no
else
- make -j${cores}
+ make -j${cores} CONFIG_ENABLE_LIBUSB1_PROGRAMMERS=no
fi
fi