2017 © Pedro Peláez
 

library bitbake-react

Programmatically control your bitbake build shell

image

clue/bitbake-react

Programmatically control your bitbake build shell

  • Monday, March 9, 2015
  • by clue
  • Repository
  • 1 Watchers
  • 2 Stars
  • 0 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 5 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

clue/bitbake-react Build Status

Programmatically control your bitbake build shell, built on top of React PHP., (*1)

Note: This project is in early alpha stage! Feel free to report any issues you encounter., (*2)

Quickstart example

Once installed, you can use the following code to tell bitbake to build the linux kernel:, (*3)

$loop = React\EventLoop\Factory::create();
$launcher = new Launcher($loop);
$launcher->setBinSsh('my-build-hostname.local', '~/path/to/bitbake');
$shell = $launcher->launchInteractiveShell();

$shell->build('linux')->then(function ($output) {
     echo 'Successfully compiled: ' . $output . PHP_EOL;
});

$shell->end();
$loop->run();

See also the examples., (*4)

Install

The recommended way to install this library is through composer. New to composer?, (*5)

{
    "require": {
        "clue/bitbake-react": "dev-master"
    }
}

License

MIT, (*6)

The Versions

09/03 2015

dev-master

9999999-dev https://github.com/clue/php-bitbake-react

Programmatically control your bitbake build shell

  Sources   Download

MIT

The Requires

 

by Christian Lück

async environment build compile reactphp bitbake