aboutsummaryrefslogtreecommitdiffstats
path: root/common
AgeCommit message (Collapse)Author
2016-10-13Merge pull request #352 from rsanjaym/masterDrew Moseley
amd vulkan deliverable
2016-10-06Enabling DRI3Sanjay R Mehta
2016-10-05ddx driver v1.1Sanjay R Mehta
2016-10-04ALSA: Use Pulseaudio as Default PCM DeviceAhsan Hussain
Unity3d apps need this to work. As per my investigation, there were previously the following issues with pulseaudio. 1. It would reset values for the controls across reboots 2. A toggle cycle for master control would turn the sound off 3. Mute state for mic or headphones were not saved across reboots All of these issues are not reproducible as per my testing. One thing to note is that the master volume is retained only when set with default pcm device (pulseaudio); all the other controls for the card, e.g. headphone, mic etc can be set by selecting the right card in alsamixer. Signed-off-by: Ahsan Hussain <ahsan_hussain@mentor.com>
2016-10-03amdgpu vulkan supportSanjay R Mehta
2016-09-20Merge pull request #348 from abelal/gaming_compsMichael Powell
amdfalconx86: provide mechanism for enabling gaming components
2016-09-20packagegroup-multimedia-risky: fix license checksumAwais Belal
The license text for MIT in the common licenses has been updated. This generates a QA error regarding md5sum which is now fixed. Signed-off-by: Awais Belal <awais_belal@mentor.com>
2016-09-20amdfalconx86: provide mechanism for enabling gaming componentsAwais Belal
The newly added LunarG SDK components require a mechanism to be pushed to target RootFS as well as to the ADE that is being generated. The same inclusion handling should be made available for any other gaming components such as CodeXL that are integrated. We now define a packagegroup (packagegroup-gaming) to implement this mechanism and provide a variable in local.conf for amdfalconx86 to enable these components. Signed-off-by: Awais Belal <awais_belal@mentor.com>
2016-09-16Merge pull request #343 from abelal/add_lunargsdk_componentsDrew Moseley
Add LunarG SDK components
2016-09-16meta-amd: update READMEs according to yocto guidelinesAwais Belal
This updates the READMEs per the yocto compliance sheet and converts them to .md so they are easier to read on GitHub or any other platform that supports markdown. Signed-off-by: Awais Belal <awais_belal@mentor.com>
2016-09-15xserver-xorg: fix space issue in _appendAwais Belal
A leading space is always required with _append overrides. Signed-off-by: Awais Belal <awais_belal@mentor.com>
2016-09-09Merge branch 'jethro'Drew Moseley
2016-09-09Merge branch 'cedar' into jethroDrew Moseley
2016-08-31xf86-video-amd: use hashes rather than tags for SRCREVAwais Belal
Using tags in the SRCREV breaks the BB_NO_NETWORK builds because bitbake only allows hashes to be used in SRCREV otherwise the fetch sequence is re-run every time after cleansstate in order to fetch the tag information from the actual repo. Signed-off-by: Awais Belal <awais_belal@mentor.com>
2016-08-26Merge branch 'jethro'Drew Moseley
2016-08-26Merge branch 'cedar' into jethroDrew Moseley
2016-08-24add support of SW clock gating for UVD6Sanjay R Mehta
Signed-off-by: Sanjay R Mehta <sanju.mehta@amd.com>
2016-08-18mesa: fix QA warningAwais Belal
Fixes mesa-2_11.0.8+gitAUTOINC+b9b19162ee-r0 do_configure: QA Issue: mesa: configure was passed unrecognised options: --with-sha1 [unknown-configure-option] Signed-off-by: Awais Belal <awais_belal@mentor.com>
2016-08-17amd: Remove amd-wdt-load and amd-gpio-load from RRECOMMENDSDrew Moseley
These packages have been removed. Signed-off-by: Drew Moseley <drew_moseley@mentor.com>
2016-08-16gpio-load: Remove unneeded packageDrew Moseley
This package serves to install a blank file into /etc/modprobe.d. Since the file is blank it does nothing. Signed-off-by: Drew Moseley <drew_moseley@mentor.com>
2016-08-16wdt-load: Remove unneeded packageDrew Moseley
This package serves to install a blank file into /etc/modprobe.d. Since the file is blank it does nothing. Signed-off-by: Drew Moseley <drew_moseley@mentor.com>
2016-08-13Merge pull request #334 from drewmoseley/masterDrew Moseley
Merge from Jethro to Master
2016-08-13Revert "init-install*: /etc/mtab make a link rather than a copy"Drew Moseley
This reverts commit 78526e5a33665d5e6a3a745da3c2c27a965f89e4.
2016-08-13Revert "xinput-calibrator: backport geometry fixes from upstream"Drew Moseley
This reverts commit 66e77a8a05d23c33e9d776b0dca290cce3f334a1.
2016-08-13python: Use wildcard bbappend for minor version number.Drew Moseley
Signed-off-by: Drew Moseley <drew_moseley@mentor.com>
2016-08-10Merge branch 'jethro'Drew Moseley
2016-08-08amd-utils: Accept ctrl-d commands properlyDrew Moseley
The readline() will return NULL when the user enters ctrl-d. Check for this condition and make it equivalent to the "exit" command. Signed-off-by: Drew Moseley <drew_moseley@mentor.com>
2016-08-05Merge branch 'cedar' into jethroDrew Moseley
2016-08-04mpv: fix warnings and introduce AMD specific optionsAwais Belal
The patch here does a few things. 1. Fixes QA warnings in case of components that are picked automatically if present unless specifically disabled using --disable-component. 2. Fix handling of GL enablement. Earlier the recipe disabled it no matter what but we now check for the feature availability and decide accordingly. 3. Add PACKAGECONFIGs required by AMD BSPs. Signed-off-by: Awais Belal <awais_belal@mentor.com>
2016-08-04Merge pull request #327 from abelal/fix_installDrew Moseley
init-install*: /etc/mtab make a link rather than a copy
2016-08-04ffmpeg: fix leading space issue in _appendAwais Belal
An _append requires a leading space otherwise the configs are jumbled up. Signed-off-by: Awais Belal <awais_belal@mentor.com>
2016-08-03init-install*: /etc/mtab make a link rather than a copyAwais Belal
Using a copy would only make management of devices erroneous and makes the system unstable in some scenarios as tools will have to manipulate both files separately. A link ensures that both files /proc/mounts and /etc/mtab will have the same information at all times and this is how it is handled on newer systems where there is such a need. Same is suggested by busybox. Signed-off-by: Awais Belal <awais_belal@mentor.com>
2016-08-02init-install: Adapt patch for upstream changesDrew Moseley
Signed-off-by: Drew Moseley <drew_moseley@mentor.com>
2016-08-01pulseaudio: Use wildcard bbappendDrew Moseley
Signed-off-by: Drew Moseley <drew_moseley@mentor.com>
2016-07-29xinput-calibrator: remove boot time auto launcherAwais Belal
This tends to mess up the X Server start up in some cases and ends up generating wrong calibration data as well randomly. We now remove it from the default set up as the user already has an option to run this from the cmdline or the SATO GUI once the system is up. Signed-off-by: Awais Belal <awais_belal@mentor.com>
2016-07-29xinput-calibrator: backport geometry fixes from upstreamAwais Belal
This is a backport of http://cgit.openembedded.org/openembedded-core/commit/meta/recipes-graphics/xinput-calibrator?id=ce6f15dc3905ab0b061b20cc35fd179fdd9e070f and http://cgit.openembedded.org/openembedded-core/commit/meta/recipes-graphics/xinput-calibrator?id=d2b6e325a00e77e6fbee25f3b46cb73af29f1652 Signed-off-by: Awais Belal <awais_belal@mentor.com>
2016-07-26libmad: Remove references to libmadDrew Moseley
This has been removed from poky so we no longer reference it. Signed-off-by: Drew Moseley <drew_moseley@mentor.com>
2016-07-26mplayer: Remove local updatesDrew Moseley
We will switch to mpv as that is now in poky. Signed-off-by: Drew Moseley <drew_moseley@mentor.com>
2016-07-22linux-yocto: prioritize ext4 RootFSAwais Belal
This gives us some performance benefit by trying the ext4 filesystem check in priority to ext3 and ext2 where we already know that our rootfs is ext4. Signed-off-by: Awais Belal <awais_belal@mentor.com>
2016-07-20Add power gating initialization support for GFX8.0Sanjay R Mehta
Signed-off-by: Sanjay R Mehta <sanju.mehta@amd.com>
2016-07-15xserver: adjust for dynamic layer priority changes for MELAwais Belal
With the new layer priority handling introduced into MEL we have to explicitly set version for xserver-nodm-init. So we now conslidate both xserver-nodm-init and xserver-common to be picked up from meta-oe. Once the versions found in OE-core and meta-oe are merged this should be dropped. Signed-off-by: Awais Belal <awais_belal@mentor.com>
2016-07-15<machines>: move common configurations to a common includeAwais Belal
This consolidates the common configurations between the different machines and move them to common from where these are used through an include to make things more maintainable. Signed-off-by: Awais Belal <awais_belal@mentor.com>
2016-07-13i2c: Adapt patch for newer kernelDrew Moseley
In the 4.1.2x kernels the i2c code was modified to use a helper routine for device probing called i2c_dw_probe. This patch originally modified the ordering of when i2c_add_numbered adapter was called. This is no longer needed. Signed-off-by: Drew Moseley <drew_moseley@mentor.com>
2016-07-13linux-yocto: fix amdgpu compilationAwais Belal
The build configuration for amdgpu/dal enforces warnings to be treated as errors. The attached patch fixes such warnings which make the compilation fail with gcc6. Signed-off-by: Awais Belal <awais_belal@mentor.com>
2016-07-12Merge branch 'jethro'Drew Moseley
2016-07-12Merge branch 'cedar' into jethroDrew Moseley
2016-07-11linux-yocto: add support for Stoney HDMI audioAwais Belal
The AMD Stoney platform uses a new device id 0x15b3 for its HDMI audio which currently isn't available in the PCI device list for Azalia compatible devices. We now add this device so it correctly shows up as HDMI rather than a generic one. Signed-off-by: Awais Belal <awais_belal@mentor.com>
2016-07-08Merge branch 'cedar' into jethroDrew Moseley
2016-07-08libomxil: fix space issue in append overrideAwais Belal
An append requires a space before variable value. Signed-off-by: Awais Belal <awais_belal@mentor.com> Signed-off-by: Drew Moseley <drew_moseley@mentor.com> (cherry picked from commit 88db8991161a8b239df45fd5a2c3186b32e5ce43)
2016-07-08Revert "linux-yocto: fix amdgpu compilation"Drew Moseley
This reverts commit aab6159ff00300bfc57d0a133be9460f43e9c898.