karnel-termux 4.16.4 → 4.16.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/karnel/RELEASE_COMMIT
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
dec504491f5db85829b3a0aacb805faf843795cc
|
|
@@ -479,9 +479,15 @@ install_cactus() {
|
|
|
479
479
|
log_info "Select installation method for Cactus:"
|
|
480
480
|
|
|
481
481
|
local SELECTED_METHOD
|
|
482
|
-
|
|
483
|
-
"
|
|
484
|
-
|
|
482
|
+
if [[ "$CACTUS_EMULATE" == 1 ]]; then
|
|
483
|
+
read_select "Installation method" SELECTED_METHOD \
|
|
484
|
+
"proot-distro (ubuntu container)" \
|
|
485
|
+
"glibc (not recommended: engine SIGILLs on this CPU)"
|
|
486
|
+
else
|
|
487
|
+
read_select "Installation method" SELECTED_METHOD \
|
|
488
|
+
"glibc (recommended)" \
|
|
489
|
+
"proot-distro (ubuntu container)"
|
|
490
|
+
fi
|
|
485
491
|
|
|
486
492
|
case "$SELECTED_METHOD" in
|
|
487
493
|
*glibc*)
|
package/package.json
CHANGED