dev-master
9999999-dev https://github.com/clue/php-bitbake-reactProgrammatically control your bitbake build shell
MIT
The Requires
by Christian Lück
async environment build compile reactphp bitbake
Programmatically control your bitbake build shell
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)
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)
The recommended way to install this library is through composer. New to composer?, (*5)
{ "require": { "clue/bitbake-react": "dev-master" } }
MIT, (*6)
Programmatically control your bitbake build shell
MIT
async environment build compile reactphp bitbake