+ if [ -e /init ]; then
+ if $GREP -i -q zeroshell /init; then
+ echo 'zeroshell'; return
+ fi
+ fi
+
+ if $EGREP -q 'ALT ' /proc/version; then
+ echo 'alt'; return
+ fi
+
+ if $EGREP -q 'porteus' /proc/version; then
+ echo 'debian'; return
+ fi
+
+ if $GREP -q 'Clear Linux ' /proc/version; then
+ echo 'clear'; return
+ fi
+
+ if $GREP -q 'artix' /proc/version; then
+ echo 'arch'; return
+ fi
+
+ if $GREP -q 'berry ' /proc/version; then
+ echo 'berry'; return
+ fi
+
+ if $GREP -q 'Gobo ' /proc/version; then
+ echo 'gobo'; return
+ fi
+
+ if $GREP -q 'NuTyX' /proc/version; then
+ echo 'nutyx'; return
+ fi
+
+ if [ -d /gnu ]; then
+ vtLineNum=$($FIND /gnu/ -name guix | $BUSYBOX_PATH/wc -l)
+ if [ $vtLineNum -gt 0 ]; then
+ echo 'guix'; return
+ fi
+ fi
+
+ if $GREP -q 'android.x86' /proc/version; then
+ echo 'android'; return
+ fi
+
+ if $GREP -q 'adelielinux' /proc/version; then
+ echo 'adelie'; return
+ fi
+
+ if $GREP -q 'pmagic' /proc/version; then
+ echo 'pmagic'; return
+ fi
+
+ if $GREP -q 'CDlinux' /proc/cmdline; then
+ echo 'cdlinux'; return
+ fi
+
+ if $GREP -q 'parabola' /proc/version; then
+ echo 'parabola'; return
+ fi
+
+ if $GREP -q 'cucumber' /proc/version; then
+ echo 'cucumber'; return
+ fi
+
+ if $GREP -q 'fatdog' /proc/version; then
+ echo 'fatdog'; return
+ fi
+
+ if $GREP -q 'KWORT' /proc/version; then
+ echo 'kwort'; return
+ fi
+
+ if $GREP -q 'iwamoto' /proc/version; then
+ echo 'vine'; return
+ fi