Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
38 changes: 38 additions & 0 deletions .github/workflows/sm8250_qti_qrd8250.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# This is a basic workflow to help you get started with Actions

name: SM8250 Qualcomm Technologies, Inc. QRD8250

# Controls when the workflow will run
on:
# # Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main" ]
paths:
- 'Platforms/KonaPkg/Device/qcom-qrd8250/**'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Indicate that we are running in CI
env:
WM_CI_BUILD: true

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-22.04

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- name: Build SB/NOSB uefi for qti qrd8250.
run: bash scripts/ci_setup.sh && ./build_uefi.py -d qcom-qrd8250

- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: uefi-images-qrd8250
path: Build/*/ci_artifacts
compression-level: 9
10 changes: 9 additions & 1 deletion Platforms/AndromedaPkg/Andromeda.dsc.inc
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,15 @@
MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf

MsCorePkg/CheckHardwareConnected/CheckHardwareConnected.inf
MsCorePkg/MuVarPolicyFoundationDxe/MuVarPolicyFoundationDxe.inf
MsCorePkg/MuVarPolicyFoundationDxe/MuVarPolicyFoundationDxe.inf {
<PcdsFixedAtBuild.common>
gEfiMdePkgTokenSpaceGuid.PcdDebugClearMemoryValue|0x00
gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x00
gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x00000000
gEfiMdePkgTokenSpaceGuid.PcdPerformanceLibraryPropertyMask|0
gEfiMdePkgTokenSpaceGuid.PcdPostCodePropertyMask|0
gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask|0x00
}

NetworkPkg/ArpDxe/ArpDxe.inf
NetworkPkg/Dhcp4Dxe/Dhcp4Dxe.inf
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ EFI_STATUS FindTeAddr(TE_INFO_STRUCT *TEInfo)
// Store Address
TEInfo->TEBuffer = (VOID *)SecurityCoreAddress;
TEInfo->programBuffer = (VOID *)ProgramBufferAddress;

// TODO: Fix this properly! - For now we use a generous size
UINTN len = 0x40000;

TEInfo->fileSize = len;
TEInfo->teSize = len - sizeof(EFI_TE_IMAGE_HEADER);
goto exitLoop;
}
}
Expand Down Expand Up @@ -205,8 +211,8 @@ EFI_STATUS find_protocol_xbldt(
TE_INFO_STRUCT *Binary, GUID *KeyGuid, UINT64 *TargetAddress)
{
// Find Guid Offset
UINT32 guid_offset = 0;
EFI_STATUS status = find_guid_in_buffer(Binary, KeyGuid, &guid_offset);
UINT32 guid_offset = 0;
EFI_STATUS status = find_guid_in_buffer(Binary, KeyGuid, &guid_offset);
if (EFI_ERROR(status)) {
DEBUG((DEBUG_WARN, "XBLDT guid not found in buffer\n"));
return EFI_NOT_FOUND;
Expand Down
Binary file not shown.
Loading