Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue fixes for MinnowBoard Turbot 0.9.0-rc2 #551

Closed
wants to merge 38 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
0ded78c
soc/intel/baytrail: Change NC GPIO to input pull up 20K
miczyg1 Jul 25, 2024
246f89a
southbridge/intel/common/firmware: Use the ME file path directly
miczyg1 May 15, 2024
5ddb348
src/soc/intel/baytrail/northcluster.c: add NOOP set_resources to avoi…
miczyg1 Apr 24, 2024
cb41e44
src/soc/intel/baytrail: Fix the FUNC_DIS bits description
miczyg1 Apr 24, 2024
f2ff12f
src/device/pciexp_device.c: Control ASPM with Kconfig option
miczyg1 Apr 24, 2024
3776ee5
src/soc/intel/baytrail/Kconfig: Do not select PCIE_ASPM
miczyg1 Apr 24, 2024
1d98679
src/soc/intel/baytrail/lpss.c: Configure INT_PIN as in FSP solution
miczyg1 Apr 24, 2024
a7186ac
soc/intel/baytrail/southcluster.c: Handle OTG and MIPI disabling prop…
miczyg1 Apr 24, 2024
3b55548
soc/intel/baytrail/pcie.c: Add support for PCIe hotplug
miczyg1 Apr 24, 2024
3405d84
mainboard/intel/minnowmax/devicetree.cb: Use default FSP settings
miczyg1 Jul 25, 2024
b3d3499
mainboard/intel/minnowmax/devicetree.cb: Enable both SATA ports
miczyg1 Jul 25, 2024
27ce865
mainboard/intel/minnowmax/devicetree.cb: Describe OTG controller
miczyg1 Jul 25, 2024
3351742
src/soc/intel/baytrail/lpss.c: Add additional programming requirement…
miczyg1 Apr 24, 2024
fa204e9
soc/intel/baytrail/southcluster.c: Enable resources on LPC bridge
miczyg1 Apr 24, 2024
96ccf5d
device/pci_device.c: Clear bridge VGA16 decoding control bit after pr…
miczyg1 May 7, 2024
434f451
soc/intel/baytrail: Add TXE BIOS flow implementation
miczyg1 May 7, 2024
06a7975
payloads/external/SeaBIOS: Add option to override CBFS location
miczyg1 May 10, 2024
f2e8bc0
soc/intel/baytrail: Put microcode and bootblock into BOOTBLOCK region
miczyg1 Apr 9, 2024
a4eb26d
src/device/dram/ddr3.c: Add ECC type to DDR3 parsed data
miczyg1 May 15, 2024
2a9b24d
mb/intel/minnowmax: Add layout with separate bootblock and manifests
miczyg1 May 10, 2024
53e9376
src/mainboard/intel/minnowmax: Use SPDX license headers
miczyg1 May 10, 2024
ae9cd98
3rdparty/dasharo-blobs: Bump For MinnowBoard blobs
miczyg1 Jul 25, 2024
64eed57
configs/config.intel_minnowmax: Add configs for regular and SB build
miczyg1 Jul 25, 2024
77a4fa7
.github/workflows/build.yml: Build MinnowBoard in CI
miczyg1 Jul 25, 2024
ad103be
arch/x86/smbios.c: Strip leading spaces from CPU brand string
miczyg1 Jul 25, 2024
14c7f85
payloads/external/iPXE/Makefile: Use newer iPXE base revision
miczyg1 Jul 26, 2024
2655e99
build.sh: Add options to build Intel MinnowMax
miczyg1 Aug 6, 2024
5557b1a
configs: Bump EDK2 revision to pass CI build
miczyg1 Aug 6, 2024
208723b
src/device/pciexp_device.c: switch ASPM disabling order
filipleple Aug 19, 2024
59d0b38
src/soc/intel/baytrail/pcie.c: set power and slot number regardless o…
filipleple Aug 19, 2024
55ba4b3
src/soc/intel/baytrail/pcie.c: update hotplug function
filipleple Aug 19, 2024
da19e33
src/mainboard/intel/minnowmax/w25q64.c: add
filipleple Aug 20, 2024
dd311d8
src/soc/intel/baytrail/lockdown.c: implement SMM BWP
filipleple Aug 22, 2024
774e3c8
src/mainboard/intel/minnowmax/Kconfig: enable S3 suspend
filipleple Aug 28, 2024
b2e03f2
configs/config.intel_minnowmax*: bump up to rc2
filipleple Aug 29, 2024
56c4b20
Revert "src/soc/intel/baytrail/lockdown.c: implement SMM BWP"
filipleple Sep 6, 2024
1834b47
src/southbridge/intel/common/spi.c: add SMIWPEN for BYT platforms
filipleple Sep 6, 2024
622daa0
soc/intel/baytrail: Make SPI work with SMM BWP
miczyg1 Sep 12, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,37 @@ jobs:
path: |
build/coreboot.rom
retention-days: 30
build_mmax:
runs-on: ubuntu-22.04
container:
image: ghcr.io/dasharo/dasharo-sdk:v1.5.0
options: --user 1001
strategy:
matrix:
vendor: [ intel ]
model: [ minnowmax ]
variant: [ no_sb, sb ]
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
# Checkout pull request HEAD commit instead of merge commit
# See: https://github.com/actions/checkout#checkout-pull-request-head-commit-instead-of-merge-commit
ref: ${{ github.event.pull_request.head.sha }}
# Fetch complete history
fetch-depth: 0
- name: Build Dasharo
run: |
cp configs/config.${{ matrix.vendor }}_${{ matrix.model }}_${{ matrix.variant }} .config
make olddefconfig
make
- name: Save artifacts
uses: actions/upload-artifact@v4
with:
name: "dasharo-${{ matrix.vendor }}-${{ matrix.model }}-${{ matrix.variant }}"
path: |
build/coreboot.rom
retention-days: 30

deploy_protectli_adl:
if: startsWith(github.ref, 'refs/tags/protectli_vault_adl')
Expand Down
77 changes: 60 additions & 17 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,25 @@ set -euo pipefail
usage() {
echo "${0} CMD"
echo "Available CMDs:"
echo -e "\tz690a_ddr4 - build Dasharo image compatible with MSI PRO Z690-A (WIFI) DDR4"
echo -e "\tz690a_ddr5 - build Dasharo image compatible with MSI PRO Z690-A (WIFI)"
echo -e "\tz790p_ddr4 - build Dasharo image compatible with MSI PRO Z790-P (WIFI) DDR4"
echo -e "\tz790p_ddr5 - build Dasharo image compatible with MSI PRO Z790-P (WIFI)"
echo -e "\tvp66xx - build Dasharo for Protectli VP66xx"
echo -e "\tvp46xx - build Dasharo for Protectli VP46xx"
echo -e "\tvp2420 - build Dasharo for Protectli VP2420"
echo -e "\tvp2410 - build Dasharo for Protectli VP2410"
echo -e "\tV1210 - build Dasharo for Protectli V1210"
echo -e "\tV1410 - build Dasharo for Protectli V1410"
echo -e "\tV1610 - build Dasharo for Protectli V1610"
echo -e "\tapu2 - build Dasharo for PC Engines APU2"
echo -e "\tapu3 - build Dasharo for PC Engines APU3"
echo -e "\tapu4 - build Dasharo for PC Engines APU4"
echo -e "\tapu6 - build Dasharo for PC Engines APU6"
echo -e "\tqemu - build Dasharo for QEMU Q35"
echo -e "\tqemu_full - build Dasharo for QEMU Q35 with all menus available"
echo -e "\tz690a_ddr4 - build Dasharo image compatible with MSI PRO Z690-A (WIFI) DDR4"
echo -e "\tz690a_ddr5 - build Dasharo image compatible with MSI PRO Z690-A (WIFI)"
echo -e "\tz790p_ddr4 - build Dasharo image compatible with MSI PRO Z790-P (WIFI) DDR4"
echo -e "\tz790p_ddr5 - build Dasharo image compatible with MSI PRO Z790-P (WIFI)"
echo -e "\tvp66xx - build Dasharo for Protectli VP66xx"
echo -e "\tvp46xx - build Dasharo for Protectli VP46xx"
echo -e "\tvp2420 - build Dasharo for Protectli VP2420"
echo -e "\tvp2410 - build Dasharo for Protectli VP2410"
echo -e "\tV1210 - build Dasharo for Protectli V1210"
echo -e "\tV1410 - build Dasharo for Protectli V1410"
echo -e "\tV1610 - build Dasharo for Protectli V1610"
echo -e "\tapu2 - build Dasharo for PC Engines APU2"
echo -e "\tapu3 - build Dasharo for PC Engines APU3"
echo -e "\tapu4 - build Dasharo for PC Engines APU4"
echo -e "\tapu6 - build Dasharo for PC Engines APU6"
echo -e "\tqemu - build Dasharo for QEMU Q35"
echo -e "\tqemu_full - build Dasharo for QEMU Q35 with all menus available"
echo -e "\tminnow_no_sb - build Dasharo compatbile with Intel MinnowMax without TXE Secure Boot"
echo -e "\tminnow_sb - build Dasharo compatbile with Intel MinnowMax with TXE Secure Boot"
}

SDKVER="2023-11-24_2731fa619b"
Expand Down Expand Up @@ -188,6 +190,41 @@ function build_qemu {
fi
}

function build_minnowboard {
DEFCONFIG="configs/config.intel_minnowmax_$1"
FW_VERSION=$(cat ${DEFCONFIG} | grep CONFIG_LOCALVERSION | cut -d '=' -f 2 | tr -d '"')
SDKVER=v1.5.0

# checkout several submodules needed by these boards (some others are checked
# out by coreboot's Makefile)
git submodule update --init --force --checkout \
3rdparty/dasharo-blobs

docker run --rm -t -e USER_ID=$(id -u) -e GROUP=$(id -g) -e GROUP_ID=$(id -g) \
-v $PWD:/home/coreboot/coreboot -v $HOME/.ssh:/home/coreboot/.ssh \
-v $HOME/.ssh:/home/coreboot/.ssh \
-w /home/coreboot/coreboot ghcr.io/dasharo/dasharo-sdk:$SDKVER \
/bin/bash -c "make distclean"

cp $DEFCONFIG .config

echo "Building Dasharo compatbile with Intel Minnowmax (version $FW_VERSION)"

docker run --rm -t -e USER_ID=$(id -u) -e GROUP=$(id -g) -e GROUP_ID=$(id -g) \
-v $PWD:/home/coreboot/coreboot -v $HOME/.ssh:/home/coreboot/.ssh \
-w /home/coreboot/coreboot ghcr.io/dasharo/dasharo-sdk:$SDKVER \
/bin/bash -c "make olddefconfig && make -j$(nproc)"

cp build/coreboot.rom intel_minnowmax_${FW_VERSION}_$1.rom
if [ $? -eq 0 ]; then
echo "Result binary placed in $PWD/intel_minnowmax_${FW_VERSION}_$1.rom"
sha256sum intel_minnowmax_${FW_VERSION}_$1.rom > intel_minnowmax_${FW_VERSION}_$1.rom.sha256
else
echo "Build failed!"
exit 1
fi
}

CMD="$1"

case "$CMD" in
Expand Down Expand Up @@ -253,6 +290,12 @@ case "$CMD" in
"qemu_full" | "QEMU_full" | "q35_full" | "Q35_full" )
build_qemu "_all_menus"
;;
"minnow_no_sb" )
build_minnowboard "no_sb"
;;
"minnow_sb" )
build_minnowboard "sb"
;;
*)
echo "Invalid command: \"$CMD\""
usage
Expand Down
2 changes: 1 addition & 1 deletion configs/config.emulation_qemu_x86_q35_uefi
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ CONFIG_DEFAULT_CONSOLE_LOGLEVEL_0=y
# CONFIG_CONSOLE_USE_ANSI_ESCAPES is not set
CONFIG_PAYLOAD_EDK2=y
CONFIG_EDK2_REPOSITORY="https://github.com/Dasharo/edk2.git"
CONFIG_EDK2_TAG_OR_REV="433b7a33eeb5ead75546f595e494a2a56e2c6d71"
CONFIG_EDK2_TAG_OR_REV="26f855c6890743a02961f7b96ffa52e0fc9aa0f4"
CONFIG_EDK2_CBMEM_LOGGING=y
CONFIG_EDK2_SERIAL_SUPPORT=y
CONFIG_EDK2_CUSTOM_BUILD_PARAMS=""
Expand Down
2 changes: 1 addition & 1 deletion configs/config.emulation_qemu_x86_q35_uefi_all_menus
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ CONFIG_DEFAULT_CONSOLE_LOGLEVEL_0=y
# CONFIG_CONSOLE_USE_ANSI_ESCAPES is not set
CONFIG_PAYLOAD_EDK2=y
CONFIG_EDK2_REPOSITORY="https://github.com/Dasharo/edk2.git"
CONFIG_EDK2_TAG_OR_REV="433b7a33eeb5ead75546f595e494a2a56e2c6d71"
CONFIG_EDK2_TAG_OR_REV="26f855c6890743a02961f7b96ffa52e0fc9aa0f4"
CONFIG_EDK2_CBMEM_LOGGING=y
CONFIG_EDK2_SERIAL_SUPPORT=y
CONFIG_EDK2_CUSTOM_BUILD_PARAMS=""
Expand Down
Original file line number Diff line number Diff line change
@@ -1,30 +1,38 @@
CONFIG_LOCALVERSION="0.9.0-rc2"
CONFIG_VENDOR_INTEL=y
CONFIG_ONBOARD_VGA_IS_PRIMARY=y
# CONFIG_VGA_BIOS is not set
CONFIG_PXE_ROM_ID="8086,1539"
CONFIG_IFD_BIN_PATH="IFWI_HEADER.bin"
CONFIG_ME_BIN_PATH="VLV_SEC_REGION.bin"
CONFIG_IFD_BIN_PATH="3rdparty/dasharo-blobs/$(MAINBOARDDIR)/descriptor.bin"
CONFIG_ME_BIN_PATH="3rdparty/dasharo-blobs/$(MAINBOARDDIR)/txe.bin"
CONFIG_CONSOLE_CBMEM_BUFFER_SIZE=0x100000
CONFIG_EDK2_BOOT_TIMEOUT=3
CONFIG_BOARD_INTEL_MINNOWMAX=y
CONFIG_HAVE_IFD_BIN=y
CONFIG_EDK2_BOOTSPLASH_FILE="3rdparty/dasharo-blobs/dasharo/bootsplash.bmp"
CONFIG_HAVE_MRC=y
CONFIG_MRC_FILE="3rdparty/dasharo-blobs/$(MAINBOARDDIR)/mrc.elf"
CONFIG_MRC_RMT=y
CONFIG_HAVE_ME_BIN=y
CONFIG_NO_GFX_INIT=y
CONFIG_DRIVERS_EFI_VARIABLE_STORE=y
CONFIG_DRIVERS_GENERIC_CBFS_SERIAL=y
CONFIG_DRIVERS_GENERIC_CBFS_UUID=y
CONFIG_BOOTMEDIA_LOCK_CONTROLLER=y
CONFIG_BOOTMEDIA_LOCK_WPRO_VBOOT_RO=y
CONFIG_BOOTMEDIA_SMM_BWP=y
CONFIG_DEFAULT_CONSOLE_LOGLEVEL_0=y
CONFIG_PAYLOAD_EDK2=y
CONFIG_EDK2_REPOSITORY="https://github.com/Dasharo/edk2"
CONFIG_EDK2_TAG_OR_REV="433b7a33eeb5ead75546f595e494a2a56e2c6d71"
CONFIG_EDK2_TAG_OR_REV="26f855c6890743a02961f7b96ffa52e0fc9aa0f4"
CONFIG_EDK2_USE_EDK2_PLATFORMS=y
CONFIG_EDK2_PLATFORMS_REPOSITORY="https://github.com/Dasharo/edk2-platforms"
CONFIG_EDK2_PLATFORMS_TAG_OR_REV="3323ed481d35096fb6a7eae7b49f35eff00f86cf"
CONFIG_EDK2_CBMEM_LOGGING=y
CONFIG_EDK2_FOLLOW_BGRT_SPEC=y
# CONFIG_EDK2_PS2_SUPPORT is not set
CONFIG_EDK2_SERIAL_SUPPORT=y
CONFIG_EDK2_GOP_FILE="IntelBYTGopDriver.efi"
CONFIG_EDK2_GOP_FILE="3rdparty/dasharo-blobs/$(MAINBOARDDIR)/IntelGopDriver.efi"
CONFIG_EDK2_DISABLE_TPM=y
CONFIG_BUILD_IPXE=y
# CONFIG_IPXE_SERIAL_CONSOLE is not set
Expand All @@ -39,7 +47,6 @@ CONFIG_EDK2_DASHARO_SYSTEM_FEATURES=y
CONFIG_EDK2_DASHARO_SECURITY_OPTIONS=y
CONFIG_EDK2_DASHARO_USB_CONFIG=y
CONFIG_EDK2_DASHARO_NETWORK_CONFIG=y
CONFIG_EDK2_DASHARO_NETWORK_BOOT_DEFAULT_ENABLE=y
CONFIG_EDK2_DASHARO_SERIAL_REDIRECTION_DEFAULT_ENABLE=y
CONFIG_EDK2_BOOT_MENU_KEY=0x0011
CONFIG_EDK2_SETUP_MENU_KEY=0x000C
Expand Down
59 changes: 59 additions & 0 deletions configs/config.intel_minnowmax_sb
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
CONFIG_LOCALVERSION="0.9.0-rc2"
CONFIG_VENDOR_INTEL=y
CONFIG_ONBOARD_VGA_IS_PRIMARY=y
# CONFIG_VGA_BIOS is not set
CONFIG_PXE_ROM_ID="8086,1539"
CONFIG_IFD_BIN_PATH="3rdparty/dasharo-blobs/$(MAINBOARDDIR)/descriptor.bin"
CONFIG_ME_BIN_PATH="3rdparty/dasharo-blobs/$(MAINBOARDDIR)/txe_sb.bin"
CONFIG_CONSOLE_CBMEM_BUFFER_SIZE=0x100000
CONFIG_EDK2_BOOT_TIMEOUT=3
CONFIG_BOARD_INTEL_MINNOWMAX=y
CONFIG_HAVE_IFD_BIN=y
CONFIG_EDK2_BOOTSPLASH_FILE="3rdparty/dasharo-blobs/dasharo/bootsplash.bmp"
CONFIG_HAVE_MRC=y
CONFIG_MRC_FILE="3rdparty/dasharo-blobs/$(MAINBOARDDIR)/mrc.elf"
CONFIG_MRC_RMT=y
CONFIG_TXE_SECURE_BOOT=y
CONFIG_TXE_SB_INCLUDE_KEY_MANIFEST=y
CONFIG_TXE_SB_GENERATE_KEY_MANIFEST=y
CONFIG_TXE_SB_KEY_MANIFEST_KEY_PATH="3rdparty/dasharo-blobs/$(MAINBOARDDIR)/oem_key_priv_sample.pem"
CONFIG_TXE_SB_SBM_MANIFEST_KEY_PATH="3rdparty/dasharo-blobs/$(MAINBOARDDIR)/sb_key_priv_sample.pem"
CONFIG_HAVE_ME_BIN=y
CONFIG_NO_GFX_INIT=y
CONFIG_DRIVERS_EFI_VARIABLE_STORE=y
CONFIG_DRIVERS_GENERIC_CBFS_SERIAL=y
CONFIG_DRIVERS_GENERIC_CBFS_UUID=y
CONFIG_CBFS_VERIFICATION=y
CONFIG_BOOTMEDIA_LOCK_CONTROLLER=y
CONFIG_BOOTMEDIA_LOCK_WPRO_VBOOT_RO=y
CONFIG_BOOTMEDIA_SMM_BWP=y
CONFIG_DEFAULT_CONSOLE_LOGLEVEL_0=y
CONFIG_PAYLOAD_EDK2=y
CONFIG_EDK2_REPOSITORY="https://github.com/Dasharo/edk2"
CONFIG_EDK2_TAG_OR_REV="26f855c6890743a02961f7b96ffa52e0fc9aa0f4"
CONFIG_EDK2_USE_EDK2_PLATFORMS=y
CONFIG_EDK2_PLATFORMS_REPOSITORY="https://github.com/Dasharo/edk2-platforms"
CONFIG_EDK2_PLATFORMS_TAG_OR_REV="3323ed481d35096fb6a7eae7b49f35eff00f86cf"
CONFIG_EDK2_CBMEM_LOGGING=y
CONFIG_EDK2_FOLLOW_BGRT_SPEC=y
# CONFIG_EDK2_PS2_SUPPORT is not set
CONFIG_EDK2_SERIAL_SUPPORT=y
CONFIG_EDK2_GOP_FILE="3rdparty/dasharo-blobs/$(MAINBOARDDIR)/IntelGopDriver.efi"
CONFIG_EDK2_DISABLE_TPM=y
CONFIG_BUILD_IPXE=y
# CONFIG_IPXE_SERIAL_CONSOLE is not set
CONFIG_IPXE_NO_PROMPT=y
CONFIG_IPXE_ADD_SCRIPT=y
CONFIG_IPXE_SCRIPT="3rdparty/dasharo-blobs/dasharo/dasharo.ipxe"
CONFIG_IPXE_CUSTOM_BUILD_ID="0123456789"
CONFIG_EDK2_ENABLE_IPXE=y
# CONFIG_EDK2_SECURE_BOOT_DEFAULT_ENABLE is not set
CONFIG_EDK2_SETUP_PASSWORD=y
CONFIG_EDK2_DASHARO_SYSTEM_FEATURES=y
CONFIG_EDK2_DASHARO_SECURITY_OPTIONS=y
CONFIG_EDK2_DASHARO_USB_CONFIG=y
CONFIG_EDK2_DASHARO_NETWORK_CONFIG=y
CONFIG_EDK2_DASHARO_SERIAL_REDIRECTION_DEFAULT_ENABLE=y
CONFIG_EDK2_BOOT_MENU_KEY=0x0011
CONFIG_EDK2_SETUP_MENU_KEY=0x000C
CONFIG_EDK2_CREATE_PREINSTALLED_BOOT_OPTIONS=y
2 changes: 1 addition & 1 deletion configs/config.msi_ms7d25_ddr4
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ CONFIG_DEFAULT_CONSOLE_LOGLEVEL_0=y
# CONFIG_CONSOLE_USE_ANSI_ESCAPES is not set
CONFIG_PAYLOAD_EDK2=y
CONFIG_EDK2_REPOSITORY="https://github.com/Dasharo/edk2.git"
CONFIG_EDK2_TAG_OR_REV="433b7a33eeb5ead75546f595e494a2a56e2c6d71"
CONFIG_EDK2_TAG_OR_REV="26f855c6890743a02961f7b96ffa52e0fc9aa0f4"
CONFIG_EDK2_USE_EDK2_PLATFORMS=y
CONFIG_EDK2_PLATFORMS_REPOSITORY="https://github.com/Dasharo/edk2-platforms"
CONFIG_EDK2_PLATFORMS_TAG_OR_REV="3323ed481d35096fb6a7eae7b49f35eff00f86cf"
Expand Down
2 changes: 1 addition & 1 deletion configs/config.msi_ms7d25_ddr5
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ CONFIG_DEFAULT_CONSOLE_LOGLEVEL_0=y
# CONFIG_CONSOLE_USE_ANSI_ESCAPES is not set
CONFIG_PAYLOAD_EDK2=y
CONFIG_EDK2_REPOSITORY="https://github.com/Dasharo/edk2.git"
CONFIG_EDK2_TAG_OR_REV="433b7a33eeb5ead75546f595e494a2a56e2c6d71"
CONFIG_EDK2_TAG_OR_REV="26f855c6890743a02961f7b96ffa52e0fc9aa0f4"
CONFIG_EDK2_USE_EDK2_PLATFORMS=y
CONFIG_EDK2_PLATFORMS_REPOSITORY="https://github.com/Dasharo/edk2-platforms"
CONFIG_EDK2_PLATFORMS_TAG_OR_REV="3323ed481d35096fb6a7eae7b49f35eff00f86cf"
Expand Down
2 changes: 1 addition & 1 deletion configs/config.msi_ms7e06_ddr4
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ CONFIG_DEFAULT_CONSOLE_LOGLEVEL_0=y
# CONFIG_CONSOLE_USE_ANSI_ESCAPES is not set
CONFIG_PAYLOAD_EDK2=y
CONFIG_EDK2_REPOSITORY="https://github.com/Dasharo/edk2.git"
CONFIG_EDK2_TAG_OR_REV="433b7a33eeb5ead75546f595e494a2a56e2c6d71"
CONFIG_EDK2_TAG_OR_REV="26f855c6890743a02961f7b96ffa52e0fc9aa0f4"
CONFIG_EDK2_USE_EDK2_PLATFORMS=y
CONFIG_EDK2_PLATFORMS_REPOSITORY="https://github.com/Dasharo/edk2-platforms"
CONFIG_EDK2_PLATFORMS_TAG_OR_REV="3323ed481d35096fb6a7eae7b49f35eff00f86cf"
Expand Down
2 changes: 1 addition & 1 deletion configs/config.msi_ms7e06_ddr5
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ CONFIG_DEFAULT_CONSOLE_LOGLEVEL_0=y
# CONFIG_CONSOLE_USE_ANSI_ESCAPES is not set
CONFIG_PAYLOAD_EDK2=y
CONFIG_EDK2_REPOSITORY="https://github.com/Dasharo/edk2.git"
CONFIG_EDK2_TAG_OR_REV="433b7a33eeb5ead75546f595e494a2a56e2c6d71"
CONFIG_EDK2_TAG_OR_REV="26f855c6890743a02961f7b96ffa52e0fc9aa0f4"
CONFIG_EDK2_USE_EDK2_PLATFORMS=y
CONFIG_EDK2_PLATFORMS_REPOSITORY="https://github.com/Dasharo/edk2-platforms"
CONFIG_EDK2_PLATFORMS_TAG_OR_REV="3323ed481d35096fb6a7eae7b49f35eff00f86cf"
Expand Down
2 changes: 1 addition & 1 deletion configs/config.novacustom_ns5x_adl
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ CONFIG_BOOTMEDIA_SMM_BWP=y
# CONFIG_CONSOLE_USE_ANSI_ESCAPES is not set
CONFIG_PAYLOAD_EDK2=y
CONFIG_EDK2_REPOSITORY="https://github.com/Dasharo/edk2"
CONFIG_EDK2_TAG_OR_REV="433b7a33eeb5ead75546f595e494a2a56e2c6d71"
CONFIG_EDK2_TAG_OR_REV="26f855c6890743a02961f7b96ffa52e0fc9aa0f4"
CONFIG_EDK2_USE_EDK2_PLATFORMS=y
CONFIG_EDK2_PLATFORMS_REPOSITORY="https://github.com/Dasharo/edk2-platforms"
CONFIG_EDK2_PLATFORMS_TAG_OR_REV="3323ed481d35096fb6a7eae7b49f35eff00f86cf"
Expand Down
2 changes: 1 addition & 1 deletion configs/config.novacustom_ns5x_tgl
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ CONFIG_BOOTMEDIA_SMM_BWP=y
# CONFIG_CONSOLE_USE_ANSI_ESCAPES is not set
CONFIG_PAYLOAD_EDK2=y
CONFIG_EDK2_REPOSITORY="https://github.com/Dasharo/edk2"
CONFIG_EDK2_TAG_OR_REV="433b7a33eeb5ead75546f595e494a2a56e2c6d71"
CONFIG_EDK2_TAG_OR_REV="26f855c6890743a02961f7b96ffa52e0fc9aa0f4"
CONFIG_EDK2_USE_EDK2_PLATFORMS=y
CONFIG_EDK2_PLATFORMS_REPOSITORY="https://github.com/Dasharo/edk2-platforms"
CONFIG_EDK2_PLATFORMS_TAG_OR_REV="3323ed481d35096fb6a7eae7b49f35eff00f86cf"
Expand Down
2 changes: 1 addition & 1 deletion configs/config.novacustom_nv4x_adl
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ CONFIG_BOOTMEDIA_SMM_BWP=y
# CONFIG_CONSOLE_USE_ANSI_ESCAPES is not set
CONFIG_PAYLOAD_EDK2=y
CONFIG_EDK2_REPOSITORY="https://github.com/Dasharo/edk2"
CONFIG_EDK2_TAG_OR_REV="433b7a33eeb5ead75546f595e494a2a56e2c6d71"
CONFIG_EDK2_TAG_OR_REV="26f855c6890743a02961f7b96ffa52e0fc9aa0f4"
CONFIG_EDK2_USE_EDK2_PLATFORMS=y
CONFIG_EDK2_PLATFORMS_REPOSITORY="https://github.com/Dasharo/edk2-platforms"
CONFIG_EDK2_PLATFORMS_TAG_OR_REV="3323ed481d35096fb6a7eae7b49f35eff00f86cf"
Expand Down
2 changes: 1 addition & 1 deletion configs/config.novacustom_nv4x_tgl
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ CONFIG_BOOTMEDIA_SMM_BWP=y
# CONFIG_CONSOLE_USE_ANSI_ESCAPES is not set
CONFIG_PAYLOAD_EDK2=y
CONFIG_EDK2_REPOSITORY="https://github.com/Dasharo/edk2"
CONFIG_EDK2_TAG_OR_REV="433b7a33eeb5ead75546f595e494a2a56e2c6d71"
CONFIG_EDK2_TAG_OR_REV="26f855c6890743a02961f7b96ffa52e0fc9aa0f4"
CONFIG_EDK2_USE_EDK2_PLATFORMS=y
CONFIG_EDK2_PLATFORMS_REPOSITORY="https://github.com/Dasharo/edk2-platforms"
CONFIG_EDK2_PLATFORMS_TAG_OR_REV="3323ed481d35096fb6a7eae7b49f35eff00f86cf"
Expand Down
2 changes: 1 addition & 1 deletion configs/config.pcengines_apu6
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ CONFIG_DEFAULT_CONSOLE_LOGLEVEL_1=y
# CONFIG_CONSOLE_USE_ANSI_ESCAPES is not set
CONFIG_PAYLOAD_EDK2=y
CONFIG_EDK2_REPOSITORY="https://github.com/Dasharo/edk2.git"
CONFIG_EDK2_TAG_OR_REV="433b7a33eeb5ead75546f595e494a2a56e2c6d71"
CONFIG_EDK2_TAG_OR_REV="26f855c6890743a02961f7b96ffa52e0fc9aa0f4"
CONFIG_EDK2_USE_EDK2_PLATFORMS=y
CONFIG_EDK2_PLATFORMS_REPOSITORY="https://github.com/Dasharo/edk2-platforms"
CONFIG_EDK2_PLATFORMS_TAG_OR_REV="3323ed481d35096fb6a7eae7b49f35eff00f86cf"
Expand Down
2 changes: 1 addition & 1 deletion configs/config.pcengines_uefi_apu2
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ CONFIG_DEFAULT_CONSOLE_LOGLEVEL_1=y
# CONFIG_CONSOLE_USE_ANSI_ESCAPES is not set
CONFIG_PAYLOAD_EDK2=y
CONFIG_EDK2_REPOSITORY="https://github.com/Dasharo/edk2.git"
CONFIG_EDK2_TAG_OR_REV="433b7a33eeb5ead75546f595e494a2a56e2c6d71"
CONFIG_EDK2_TAG_OR_REV="26f855c6890743a02961f7b96ffa52e0fc9aa0f4"
CONFIG_EDK2_USE_EDK2_PLATFORMS=y
CONFIG_EDK2_PLATFORMS_REPOSITORY="https://github.com/Dasharo/edk2-platforms"
CONFIG_EDK2_PLATFORMS_TAG_OR_REV="3323ed481d35096fb6a7eae7b49f35eff00f86cf"
Expand Down
2 changes: 1 addition & 1 deletion configs/config.pcengines_uefi_apu3
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ CONFIG_DEFAULT_CONSOLE_LOGLEVEL_1=y
# CONFIG_CONSOLE_USE_ANSI_ESCAPES is not set
CONFIG_PAYLOAD_EDK2=y
CONFIG_EDK2_REPOSITORY="https://github.com/Dasharo/edk2.git"
CONFIG_EDK2_TAG_OR_REV="433b7a33eeb5ead75546f595e494a2a56e2c6d71"
CONFIG_EDK2_TAG_OR_REV="26f855c6890743a02961f7b96ffa52e0fc9aa0f4"
CONFIG_EDK2_USE_EDK2_PLATFORMS=y
CONFIG_EDK2_PLATFORMS_REPOSITORY="https://github.com/Dasharo/edk2-platforms"
CONFIG_EDK2_PLATFORMS_TAG_OR_REV="3323ed481d35096fb6a7eae7b49f35eff00f86cf"
Expand Down
2 changes: 1 addition & 1 deletion configs/config.pcengines_uefi_apu4
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ CONFIG_DEFAULT_CONSOLE_LOGLEVEL_1=y
# CONFIG_CONSOLE_USE_ANSI_ESCAPES is not set
CONFIG_PAYLOAD_EDK2=y
CONFIG_EDK2_REPOSITORY="https://github.com/Dasharo/edk2.git"
CONFIG_EDK2_TAG_OR_REV="433b7a33eeb5ead75546f595e494a2a56e2c6d71"
CONFIG_EDK2_TAG_OR_REV="26f855c6890743a02961f7b96ffa52e0fc9aa0f4"
CONFIG_EDK2_USE_EDK2_PLATFORMS=y
CONFIG_EDK2_PLATFORMS_REPOSITORY="https://github.com/Dasharo/edk2-platforms"
CONFIG_EDK2_PLATFORMS_TAG_OR_REV="3323ed481d35096fb6a7eae7b49f35eff00f86cf"
Expand Down
2 changes: 1 addition & 1 deletion configs/config.pcengines_uefi_apu6
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ CONFIG_DEFAULT_CONSOLE_LOGLEVEL_1=y
# CONFIG_CONSOLE_USE_ANSI_ESCAPES is not set
CONFIG_PAYLOAD_EDK2=y
CONFIG_EDK2_REPOSITORY="https://github.com/Dasharo/edk2.git"
CONFIG_EDK2_TAG_OR_REV="433b7a33eeb5ead75546f595e494a2a56e2c6d71"
CONFIG_EDK2_TAG_OR_REV="26f855c6890743a02961f7b96ffa52e0fc9aa0f4"
CONFIG_EDK2_USE_EDK2_PLATFORMS=y
CONFIG_EDK2_PLATFORMS_REPOSITORY="https://github.com/Dasharo/edk2-platforms"
CONFIG_EDK2_PLATFORMS_TAG_OR_REV="3323ed481d35096fb6a7eae7b49f35eff00f86cf"
Expand Down
2 changes: 1 addition & 1 deletion configs/config.protectli_vault_jsl_v1210
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ CONFIG_DEFAULT_CONSOLE_LOGLEVEL_0=y
# CONFIG_CONSOLE_USE_ANSI_ESCAPES is not set
CONFIG_PAYLOAD_EDK2=y
CONFIG_EDK2_REPOSITORY="https://github.com/Dasharo/edk2"
CONFIG_EDK2_TAG_OR_REV="433b7a33eeb5ead75546f595e494a2a56e2c6d71"
CONFIG_EDK2_TAG_OR_REV="26f855c6890743a02961f7b96ffa52e0fc9aa0f4"
CONFIG_EDK2_USE_EDK2_PLATFORMS=y
CONFIG_EDK2_PLATFORMS_REPOSITORY="https://github.com/Dasharo/edk2-platforms"
CONFIG_EDK2_PLATFORMS_TAG_OR_REV="3323ed481d35096fb6a7eae7b49f35eff00f86cf"
Expand Down
Loading