diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..920bb7d --- /dev/null +++ b/README.md @@ -0,0 +1,36 @@ +AudioManagerPlugins +============ + +## Description + +**AudioManagerPlugins** provides support for GENIVI AudioManagerPlugins on top of AGL. +Note that it requires AudioManager support to be built into AGL. + +### Install on top of an existing AGL image + +* Grab all required Yocto layers with the following commands: +``` +$ git clone https://git.automotivelinux.org/gerrit/p/staging/AudioManagerPlugins.git +``` + +* In your existing _"$BUILD_DIR/conf/bblayers.conf"_ file, add: +``` + /home/SDK/AGL/poky/../AudioManagerPlugins/meta-ivi-common \ +``` +_("/home/SDK/AGL" being the directory containing your Yocto layers)_ + +* In your existing _"$BUILD_DIR/conf/local.conf"_ file, add: +``` +IMAGE_INSTALL_append = " audiomanager-plugins" +``` + +* Rebuild your image: +``` +$ bitbake agl-demo-platform +``` + +## Known issues + +* **AudioManagerPlugins** supports building with CAPI support via PACKAGECONFIG, but for that one + needs to add the common-api-c++-dbus recipe and make sure AudioManager is also built with CAPI + support. |