Commit 6012ea40 authored by Anton Midyukov's avatar Anton Midyukov

stage1: Del squash option '-noI'

squashfs built with this option are not loaded with modern kernels.
parent b085be40
...@@ -3,9 +3,9 @@ ...@@ -3,9 +3,9 @@
# check relevant kernel features availability # check relevant kernel features availability
CONFIGS=/boot/config-* CONFIGS=/boot/config-*
GZ_OPTS="-comp gzip -noI" GZ_OPTS="-comp gzip"
XZ_OPTS="-comp xz" XZ_OPTS="-comp xz"
LZO_OPTS="-comp lzo -noI" LZO_OPTS="-comp lzo"
verbose() { [ -z "$GLOBAL_VERBOSE" ] || echo "** $@" >&2; } verbose() { [ -z "$GLOBAL_VERBOSE" ] || echo "** $@" >&2; }
fatal() { echo "** error: $@" >&2; exit 1; } fatal() { echo "** error: $@" >&2; exit 1; }
...@@ -43,7 +43,7 @@ options() ...@@ -43,7 +43,7 @@ options()
if [ "$GLOBAL_SQUASHFS" = "tight" ] && configured "X86"; then if [ "$GLOBAL_SQUASHFS" = "tight" ] && configured "X86"; then
XZ_OPTS="$XZ_OPTS -b 524288 -Xbcj x86" XZ_OPTS="$XZ_OPTS -b 524288 -Xbcj x86"
else else
XZ_OPTS="$XZ_OPTS -b 262144 -noI" XZ_OPTS="$XZ_OPTS -b 262144"
fi fi
echo "$XZ_OPTS" echo "$XZ_OPTS"
else # go fast, or even faster if possible else # go fast, or even faster if possible
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment