Platform/RK3588: Enable and add I2S0 or I2S1 and codec depending on board. #209
Workflow file for this run
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: Build | |
on: | |
push: | |
paths-ignore: | |
- '**.md' | |
branches: | |
- master | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
branches: | |
- master | |
workflow_call: | |
inputs: | |
build-configs: | |
type: string | |
required: true | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
PLATFORM: | |
- rock-5b | |
- rock-5a | |
- orangepi-5 | |
- orangepi-5plus | |
- indiedroid-nova | |
- roc-rk3588s-pc | |
- itx-3588j | |
- station-m3 | |
- r58x | |
- r58-mini | |
- edge2 | |
- nanopi-r6c | |
- nanopi-r6s | |
- nanopc-t6 | |
- blade3 | |
- h88k | |
CONFIGURATION: ${{ fromJSON(format('[{0}]', inputs.build-configs || '"Debug"')) }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install dependencies | |
shell: bash | |
run: | | |
sudo apt-get update && \ | |
sudo apt-get install -y \ | |
acpica-tools \ | |
binutils-aarch64-linux-gnu \ | |
build-essential \ | |
device-tree-compiler \ | |
gettext \ | |
git \ | |
gcc-aarch64-linux-gnu \ | |
libc6-dev-arm64-cross \ | |
python3 \ | |
python3-pyelftools | |
- name: Get version tag | |
id: get_version_tag | |
shell: bash | |
run: echo "version=$(git describe --tags --always)" >> $GITHUB_OUTPUT | |
- name: Set up Secure Boot default keys | |
run: | | |
mkdir keys | |
# We don't really need a usable PK, so just generate a public key for it and discard the private key | |
openssl req -new -x509 -newkey rsa:2048 -subj "/CN=Rockchip Platform Key/" -keyout /dev/null -outform DER -out keys/pk.cer -days 7300 -nodes -sha256 | |
curl -L https://go.microsoft.com/fwlink/?LinkId=321185 -o keys/ms_kek.cer | |
curl -L https://go.microsoft.com/fwlink/?linkid=321192 -o keys/ms_db1.cer | |
curl -L https://go.microsoft.com/fwlink/?linkid=321194 -o keys/ms_db2.cer | |
curl -L https://uefi.org/sites/default/files/resources/dbxupdate_arm64.bin -o keys/arm64_dbx.bin | |
- name: Build platform | |
shell: bash | |
run: | | |
export BUILD_FLAGS="-D SECURE_BOOT_ENABLE=TRUE" | |
export DEFAULT_KEYS="-D DEFAULT_KEYS=TRUE \ | |
-D PK_DEFAULT_FILE=keys/pk.cer \ | |
-D KEK_DEFAULT_FILE1=keys/ms_kek.cer \ | |
-D DB_DEFAULT_FILE1=keys/ms_db1.cer \ | |
-D DB_DEFAULT_FILE2=keys/ms_db2.cer \ | |
-D DBX_DEFAULT_FILE1=keys/arm64_dbx.bin" | |
./build.sh --device ${{matrix.PLATFORM}} --release ${{matrix.CONFIGURATION}} --build-flags="${BUILD_FLAGS} ${DEFAULT_KEYS}" | |
mv RK3588_NOR_FLASH.img ${{matrix.PLATFORM}}_UEFI_${{matrix.CONFIGURATION}}_${{steps.get_version_tag.outputs.version}}.img | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{matrix.PLATFORM}} UEFI ${{matrix.CONFIGURATION}} image | |
path: ./*.img | |
if-no-files-found: error |