Hello,<br><br>I have a shell-based application which I want to support on Maemo. A small feature of my application is to detect the OS/platform it is running on. <br><br>To get this information on other Linux, I invoke `lsb_release` (Sadly, this command does not exist in the Internet Tablet OS 2007..). Fallback detection is normally accomplished using `cat /etc/*release` in older Linux/UNIX.
<br><br>For the moment, I have a very frail workaround:<br>grep Nokia /etc/hostname<br>followed by a test on "$?"<br><br>Is there a Maemo-specific solution to detecting the platform during script execution?<br><br>
Thank you.<br>