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
1 change: 1 addition & 0 deletions .github/workflows/build-yocto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ jobs:
machine:
- iq-8275-evk
- iq-9075-evk
- kaanapali-mtp
- qcm6490-idp
- qcs615-adp-air
- qcs8300-ride-sx
Expand Down
8 changes: 8 additions & 0 deletions ci/kaanapali-mtp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# yaml-language-server: $schema=https://raw.githubusercontent.com/siemens/kas/master/kas/schema-kas.json

header:
version: 14
includes:
- ci/base.yml

machine: kaanapali-mtp
12 changes: 12 additions & 0 deletions conf/machine/include/qcom-kaanapali.inc
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Configurations and variables for Kaanapali SoC family.

SOC_FAMILY = "kaanapali"
require conf/machine/include/qcom-base.inc
require conf/machine/include/qcom-common.inc

DEFAULTTUNE = "armv9-2a"
require conf/machine/include/arm/arch-armv9-2a.inc
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe the baseline is still v8-6a, @vivpuar please confirm.


MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS += " \
packagegroup-qcom-boot-essential \
"
15 changes: 15 additions & 0 deletions conf/machine/kaanapali-mtp.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#@TYPE: Machine
#@NAME: Qualcomm Kaanapali Development Kit
#@DESCRIPTION: Machine configuration for Qualcomm Kaanapali development Kit

require conf/machine/include/qcom-kaanapali.inc

MACHINE_FEATURES = "efi usbhost usbgadget alsa wifi bluetooth"

QCOM_DTB_DEFAULT ?= "kaanapali-mtp"

ABL_SIGNATURE_VERSION ?= "v7"

KERNEL_DEVICETREE ?= " \
qcom/kaanapali-mtp.dtb \
"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please also add firmware packagegroups and depend on them here.

1 change: 1 addition & 0 deletions recipes-kernel/images/esp-qcom-image.bb
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ UKI_CMDLINE += "${@d.getVar('KERNEL_CMDLINE_EXTRA') or ''}"
# Remove 'upstream' dtb, rely on EFI provided one
KERNEL_DEVICETREE = ""
KERNEL_DEVICETREE:sm8750-mtp = "${QCOM_DTB_DEFAULT}.dtb"
KERNEL_DEVICETREE:kaanapali-mtp = "${QCOM_DTB_DEFAULT}.dtb"

IMAGE_FSTYPES = "vfat"
IMAGE_FSTYPES_DEBUGFS = ""
Expand Down
Loading