Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/tests/sys/compat32/aarch64/common.sh
39566 views
1
#!/bin/sh
2
3
if ! sysctl -n kern.features.compat_freebsd_32bit >/dev/null 2>&1; then
4
echo "1..0 # Skipped: Kernel not built with COMPAT_FREEBSD32"
5
exit 0
6
elif ! sysctl -n kern.supported_archs | grep -q '\<armv7\>'; then
7
echo "1..0 # Skipped: 32-bit ARM not supported on this hardware"
8
exit 0
9
fi
10
11