aboutsummaryrefslogtreecommitdiffstats
path: root/meta-amd-bsp
AgeCommit message (Collapse)Author
2019-10-06bsp/machine.confs: change SERIAL_CONSOLES ?= to = to make it effectiveArsalan H. Awan
This changes the loose assignment of SERIAL_CONSOLES ?= "115200;ttyS4 115200;ttyS5" to SERIAL_CONSOLES = "115200;ttyS4 115200;ttyS5" otherwise these definitions don't end up in /etc/securetty and as a result the root user is unable to login via serial console. INTAMDDET-2758 Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-09-26amdvlk: add amdvlk64.so that was missed due to .gitignore ruleArsalan H. Awan
Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-09-16Merge pull request #655 from ArsalanHAwan/warrior-docsWade Farnsworth
meta-amd/docs: add setup, build, deploy & customize instructions
2019-09-15meta-amd/docs: add setup, build, deploy & customize instructionsArsalan H. Awan
This adds a Getting Started Guide in the form of README docs to the meta-amd. Users can follow these instructions to: 1. Setup the build system 2. Build images and recipes for a supported target 3. Deploy the built image to a target machine 4. Customize the image by enabling or disabling certain configurable features and software components Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-09-12bsp/linux-yocto: enable kgdb if DISTRO is poky-amd else disable kgdbArsalan H. Awan
Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-09-12r1000/rgp: mv from VULKAN_PKGS to AMD_FEATURE_DEBUG_PROFILE_PKGSArsalan H. Awan
This moves rgp from VULKAN_PKGS to AMD_FEATURE_DEBUG_PROFILE_PKGS and enables amd-feature-debug-profile for r1000. rgp will be installed only if INCLUDE_VULKAN = "yes" as rgp only works with vulkan apps. Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-09-12r1000/rocm-opencl: remove as it is not supported at the momentArsalan H. Awan
Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-09-12r1000/vulkan: remove the old v1.1.70 vulkan recipe and dependenciesArsalan H. Awan
This removes the old v1.1.70 vulkan recipe and dependencies i.e. glslang, spirv-tools & vulkan-loader-layers as they not needed anymore because we are now using vulkan v1.1.92. Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-09-12r1000/vulkan: upgrade vulkan components to 1.1.92Arsalan H. Awan
This simply switches r1000 configs to use the vulkan recipes added in commit: 4d3eddb1209e36c922112910b01883670a7d1cf1 to upgrade to v1.1.92 Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-09-11Merge pull request #650 from ArsalanHAwan/warrior-omx-fixesWade Farnsworth
gstreamer1.0-omx: gstomx.conf add mesa omx bellagio enc avc & dec hevc
2019-09-11meta-amd-distro: mv distro related configs and the wic img file hereArsalan H. Awan
This moves the meta-amd-bsp/scripts/lib/wic/canned-wks/amd-usbimage.wks to meta-amd-distro/scripts/lib/wic/canned-wks/amd-usbimage.wks, and the wic img settings from amd-common-configurations.inc to poky-amd.conf, as well as a few related configs as well that are not BSP configs, rather distro configs. Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-09-04gstreamer1.0-omx: gstomx.conf add mesa omx bellagio enc avc & dec hevcArsalan H. Awan
This adds the mesa omx bellagio video encoder avc & video decoder hevc to the gstreamer1.0-omx's gstomx.conf so that they are availble in the gstreamer pipelines. Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-09-03vdpauinfo: mv from MACHINE_EXTRA_RRECOMMENDS to amd-feature-multimediaArsalan H. Awan
For some reason vdpauinfo was not getting installed and mpv was unable to find libvdpau-radeonsi.so which comes through mesa's sub-package libvdpau-mesa. vdpauinfo depends on libvdpau-mesa which is required for mpv --vo vdpau Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-09-03libvdpau: bring back --enable-dri2Arsalan H. Awan
This enables dri2 for libvdpau that was dropped mistakenly during a recent recipe upgrade to oe upstream version. partially reverts commit: f0030c24242527a30a723760b9cbb3f96c848f9c Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-09-02meta-amd-bsp/machine.confs: remove MEL ADE configsArsalan H. Awan
Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-09-02gstreamer1.0-plugins-bad: remove mel specific settingsArsalan H. Awan
Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-09-02pulseaudio: allow autospawn to fix audio and allign with upstream yoctoArsalan H. Awan
This aligns the recipe to upstream yocto and fixes system sound. Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-08-30boost: fix build with gcc8Arsalan H. Awan
Boost component libs/python/converter fails to compile with gcc8. This fixes the following in converter/builtin_converters.cpp:51:35: error: invalid conversion from 'const void*' to 'void*' [-fpermissive] Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-08-30boost: adjust BOOST_LIBS according to v1.59.0Arsalan H. Awan
poky/meta/recipes-support/boost/boost.inc for boost v1.69.0 in warrior branch changes the list of BOOST_LIBS. We change it back to previous settings as the library "contract" does not exist in boost v1.59.0, so the do_compile fails. This fixes that. Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-08-28bsp/e3000: add missing layer dependencies in layer.conf and README.mdArsalan H. Awan
LAYERDEPENDS_e3000 = "openembedded-layer meta-python meta-networking" Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-08-28meta-amd-bsp/formfactor/baldeagle: remove deprecated machine bitsArsalan H. Awan
This removes the leftovers of baldeagle machine which is deprecated. Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-08-28meta-amd-bsp/README: add machines and layer dependencies infoArsalan H. Awan
Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-08-28meta-amd-bsp: move xserver-xf86-config recipe here from r1000 & v1000Arsalan H. Awan
Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-08-28meta-amd-bsp: move amdvlk recipe here from v1000/recipes-graphicsArsalan H. Awan
Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-08-28meta-amd-bsp: move all the vulkan recipes here from r1000 & v1000Arsalan H. Awan
r1000: * vulkan-loader-layers_1.1.70.bb v1000: * vulkan_1.1.92.1.bb * vulkan-headers_1.1.92.0.bb * vulkan-tools_1.1.92.0.bb Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-08-28meta-amd-bsp: move spirv-tools recipe here from r1000/recipes-devtoolsArsalan H. Awan
Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-08-28meta-amd-bsp: move glslang recipe here from r1000 & v1000Arsalan H. Awan
Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-08-28meta-amd-bsp: move rgp recipes here from r1000 & v1000Arsalan H. Awan
Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-08-28meta-amd-bsp: move packagegroup-multimedia-risky here from r1000, v1000Arsalan H. Awan
Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-08-28meta-amd-bsp: move linux-yocto* recipes here from r1000, v1000 & e3000Arsalan H. Awan
Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-08-28meta-amd-bsp: move lttng-modules here from meta-e3000/recipes-kernelArsalan H. Awan
Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-08-28meta-amd-bsp: move amdgpu-firmware recipes here from r1000 & v1000Arsalan H. Awan
Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-08-28meta-amd-bsp: move amd-wdt kernel module here from r1000, v1000 & e3000Arsalan H. Awan
Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-08-28meta-amd-bsp: move amd-spi kernel module here from r1000, v1000 & e3000Arsalan H. Awan
Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-08-28meta-amd-bsp: move spi-test recipe here from r1000, v1000 & e3000Arsalan H. Awan
Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-08-28meta-amd-bsp: move gpio-test recipe here from r1000, v1000 & e3000Arsalan H. Awan
Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-08-28e3000: move machine/bsp configurations to meta-amd-bsp layerArsalan H. Awan
Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-08-28snowyowl: rename to e3000Arsalan H. Awan
This renames the snowyowl machine and its all references to e3000. Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-08-28v1000: move machine/bsp configurations to meta-amd-bsp layerArsalan H. Awan
Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-08-28r1000: move machine/bsp configurations to meta-amd-bsp layerArsalan H. Awan
Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-08-28recipes-rocm: move from r1000 & v1000 to the common meta-amd-bsp layerArsalan H. Awan
Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
2019-08-28common: rename to meta-amd-bspArsalan H. Awan
This renames common layers to meta-amd-bsp as it is going to hold all the bsps in it in the following commits. This also changes the layer title in layer.conf from "amd" to "amd-bsp" Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>