Print some information about the hardware if compatibility check fails
-
@Tom-Elliott What do you think about this (very simple) addition? Should we add this to the registration as well when it fails. Most people complain about failing to register and never even bother about the compatibility check.
diff --git a/src/buildroot/package/fog/scripts/bin/fog.sysinfo b/src/buildroot/package/fog/scripts/bin/fog.sysinfo index 0c56399..85dfe10 100755 --- a/src/buildroot/package/fog/scripts/bin/fog.sysinfo +++ b/src/buildroot/package/fog/scripts/bin/fog.sysinfo @@ -91,6 +91,13 @@ while :; do echo " # From the menu select: #" echo " # FOG Configuration-> #" echo " # Kernel Update #" + echo " # #" + echo " # Below you find some valuable information you #" + echo " # should post in the forum to get some help! #" + echo " ###################################################" + lspci -nn | grep Ethernet + echo " ###################################################" + lsblk echo " ###################################################" fi wait_enter
-
Added to the base code, waiting for inits to rebuild and will push up. Should be about 10 minutes.
-
This is untested… But well, what can go wrong?! What do you think about adding the same thing to the registration script if things fail?