Update table

This commit is contained in:
abbie 2024-11-13 16:24:59 +00:00
parent 800356790d
commit 6bc504a4c9
Signed by: threeoh6000
GPG key ID: 801FE4AD456E922C
2 changed files with 2 additions and 0 deletions

View file

@ -8,6 +8,7 @@ abbiefetch will attempt to gather as much information as possible on systems tha
| - | - | - | - | - | - |
| `unknown` | Unknown kernel | | | None | Default when your system is unrecognised |
| `linux` | Linux | | 1.0.0 | Full | |
| `linux/android` | Linux | Android | `master` | Preliminary | |
| `linux/chumby` | Linux | Chumby internet appliances | 1.0.0 | Full | Uses chumby specific tools. |
| `linux/proxmox` | Linux | Proxmox VE host | 1.0.0 | Full | |
| `linux/rpi` | Linux | Raspberry Pi single board computer | 1.0.0 | Partial | Currently there are issues detecting the host machine and CPU. |

View file

@ -15,6 +15,7 @@ if [ "$(uname -s)" = "Linux" ] && [ "$system_type" = "unknown" ]; then
command -v getprop >>/dev/null
if [ "$?" -eq 0 ] && [ "$subtype" = "none" ]; then
subtype="android"
haslspci=0
fi
fi
if [ "$(uname -s)" = "OpenBSD" ] && [ "$system_type" = "unknown" ]; then