()
| 322 | return False |
| 323 | |
| 324 | def TryInstallRootFS(): |
| 325 | DidInstall = False |
| 326 | try: |
| 327 | CmdResult = subprocess.call(["FEXRootFSFetcher"]) |
| 328 | DidInstall = CmdResult == 0 |
| 329 | except KeyboardInterrupt: |
| 330 | print ("Keyboard interrupt") |
| 331 | DidInstall = False |
| 332 | pass |
| 333 | return DidInstall |
| 334 | |
| 335 | def TryBasicProgramExecution(): |
| 336 | return subprocess.call(["FEXInterpreter", "/usr/bin/uname", "-a"]) == 0 |