hc
2023-12-08 01573e231f18eb2d99162747186f59511f56b64d
kernel/scripts/xz_wrap.sh
....@@ -9,6 +9,8 @@
99 # You can do whatever you want with this file.
1010 #
1111
12
+. include/config/auto.conf
13
+
1214 BCJ=
1315 LZMA2OPTS=
1416
....@@ -20,4 +22,8 @@
2022 sparc) BCJ=--sparc ;;
2123 esac
2224
23
-exec xz --check=crc32 $BCJ --lzma2=$LZMA2OPTS,dict=32MiB
25
+if [ -n "${CONFIG_THUMB2_KERNEL}" ]; then
26
+ BCJ=--armthumb
27
+fi
28
+
29
+exec $XZ --check=crc32 $BCJ --lzma2=$LZMA2OPTS,dict=32MiB