drm/vc4: Add 2712 support to vc4_plane_async_set_fb #159
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pi dtoverlay checks | |
on: | |
pull_request: | |
paths-ignore: | |
- '.github/**' | |
branches: [ "rpi-*" ] | |
push: | |
paths-ignore: | |
- '.github/**' | |
branches: [ "rpi-*" ] | |
workflow_dispatch: | |
env: | |
UTILS_DIR: "${{github.workspace}}/utils" | |
jobs: | |
dtoverlaycheck: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install toolchain | |
run: | | |
sudo apt update | |
sudo apt-get install gcc-arm-linux-gnueabihf libfdt-dev device-tree-compiler | |
timeout-minutes: 10 | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
clean: true | |
- name: overlaycheck | |
run: | | |
git clone https://github.com/raspberrypi/utils ${{env.UTILS_DIR}} | |
cd ${{env.UTILS_DIR}} | |
pwd | |
mkdir build | |
cd build | |
pwd | |
cmake .. | |
make -j4 | |
sudo make install | |
cd ${{github.workspace}} | |
pwd | |
make ARCH=arm KERNEL=kernel CROSS_COMPILE=arm-linux-gnueabihf- bcm2711_defconfig | |
make ARCH=arm KERNEL=kernel CROSS_COMPILE=arm-linux-gnueabihf- dtbs | |
${{env.UTILS_DIR}}/overlaycheck/overlaycheck |