diff --git a/README.md b/README.md index d7a5b5de..490b9bd5 100644 --- a/README.md +++ b/README.md @@ -64,12 +64,14 @@ List of [firmware-action](https://github.com/orgs/9elements/packages?repo_name=f | edk2-stable202405 | [x] | | | edk2-stable202408 | [ ] | discontinued in favor of `stable202408.01` | | edk2-stable202408.01 | [x] | | +| edk2-stable202411 | [x] | | | linux_6.1.111 | [x] | | | linux_6.1.45 | [x] | | | linux_6.6.52 | [x] | | | linux_6.9.9 | [x] | | | linux_6.11 | [x] | | | uroot_0.14.0 | [x] | | +| uboot_2025.01 | [x] | | ## Legacy containers diff --git a/docker/compose.yaml b/docker/compose.yaml index fda1115d..51944b68 100644 --- a/docker/compose.yaml +++ b/docker/compose.yaml @@ -251,6 +251,20 @@ services: - PYTHON_PACKAGES=python-is-python3 python3 - PYTHON_VERSION=python3 - NODESOURCE=https://deb.nodesource.com/setup_20.x + edk2-stable202411: + build: + context: edk2 + args: + - EDK2_VERSION=edk2-stable202422 + - EDK2_VERSION_COMMIT=0f3867fa6ef0553e26c42f7d71ff6bdb98429742 + - SOURCE_IMAGE=buildpack-deps:noble + - EDK2_PLATFORM_COMMIT=8148af7dd5134987ac8da90daf1f57a481e66455 + - EDK2_NON_OSI_COMMIT=889f9c90de53e7c8729d1f449b8781a5477f0df4 + - INTERMEDIATE_IMAGE=universalpayload + - GCC_VERSION=13 + - PYTHON_PACKAGES=python-is-python3 python3 + - PYTHON_VERSION=python3 + - NODESOURCE=https://deb.nodesource.com/setup_20.x #================== # linux #================== diff --git a/tests/test_edk2.sh b/tests/test_edk2.sh index c6283a0e..bfb14c13 100755 --- a/tests/test_edk2.sh +++ b/tests/test_edk2.sh @@ -39,8 +39,10 @@ fi # Try to build edk2 #========================== -git clone --branch "${VERIFICATION_TEST_EDK2_VERSION}" --depth 1 https://github.com/tianocore/edk2.git Edk2 +git clone https://github.com/tianocore/edk2.git Edk2 cd Edk2 +git fetch --all +git checkout "${VERIFICATION_TEST_EDK2_VERSION}" PATCH_FILE=../tests/edk2-patches/${VERIFICATION_TEST_EDK2_VERSION}-zeex-subhook.patch if [ -f "${PATCH_FILE}" ]; then git apply "${PATCH_FILE}"