mirror of https://github.com/OpenIPC/firmware.git
moved sysinfo to extutils (#1709)
parent
56e5adcd78
commit
e53a034702
|
@ -1,23 +0,0 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# OpenIPC | version 2025.02.09
|
||||
#
|
||||
# Simple script for quick information gathering and troubleshooting
|
||||
|
||||
|
||||
echo
|
||||
echo "Firmware:"
|
||||
echo -e " $(grep -e OPENIPC_VERSION /etc/os-release)\n"
|
||||
echo "Majestic:"
|
||||
echo -e " internal - $(/rom/usr/bin/majestic -v)"
|
||||
echo -e " external - $(/usr/bin/majestic -v)\n"
|
||||
echo "USB devices:"
|
||||
echo -e " $(lsusb | awk '{print $6}' | tr '\n' ' ')\n"
|
||||
echo "Memory:"
|
||||
echo -e " totalmem - $(fw_printenv -n totalmem)\n"
|
||||
echo "Processor:"
|
||||
echo -e " detected - $(ipcinfo -ci | tr '\n' '\t')"
|
||||
echo -e " recorded - $(fw_printenv -n soc)\n"
|
||||
echo "Sensor:"
|
||||
echo -e " detected - $(ipcinfo -s)"
|
||||
echo -e " recorded - $(fw_printenv -n sensor)\n"
|
|
@ -46,6 +46,26 @@ case "$CMD" in
|
|||
fi
|
||||
;;
|
||||
|
||||
sysinfo)
|
||||
echo ""
|
||||
echo "Firmware:"
|
||||
echo -e " $(grep -e OPENIPC_VERSION /etc/os-release)\n"
|
||||
echo "Majestic:"
|
||||
echo -e " internal - $(/rom/usr/bin/majestic -v)"
|
||||
echo -e " external - $(/usr/bin/majestic -v)\n"
|
||||
echo "USB devices:"
|
||||
echo -e " $(lsusb | awk '{print $6}' | sort | tr '\n' ' ')\n"
|
||||
echo "Memory:"
|
||||
echo -e " totalmem - $(fw_printenv -n totalmem)"
|
||||
echo -e " osmem - $(fw_printenv -n osmem)\n"
|
||||
echo "Processor:"
|
||||
echo -e " detected - $(ipcinfo -ci | tr '\n' '\t')"
|
||||
echo -e " recorded - $(fw_printenv -n soc)\n"
|
||||
echo "Sensor:"
|
||||
echo -e " detected - $(ipcinfo -s)"
|
||||
echo -e " recorded - $(fw_printenv -n sensor)\n"
|
||||
;;
|
||||
|
||||
*)
|
||||
;;
|
||||
esac
|
||||
|
|
Loading…
Reference in New Issue