| Message ID | 20260617103020.613051-1-y-hegde@ti.com |
|---|---|
| State | New |
| Headers | show |
| Series | [master/wrynose,v2] beaglebadge-ti: avoid building ubifs and ubi for beaglebadge by default | expand |
meta-ti / na / 20260617103020.613051-1-y-hegde PRC Results: PASS ========================================================= check-yocto-patches: PASS ========================================================= Patches ---------------------------------------- All patches passed ========================================================= apply-yocto-patch: PASS ========================================================= master ===================== Summary: - Patch Series: [master/wrynose][PATCH v2] beaglebadge-ti: avoid building ubifs and ubi for beaglebadge by default - Submitter: From: Yogesh Hegde <y-hegde@ti.com> - Date: Date: Wed, 17 Jun 2026 16:00:22 +0530 - Num Patches: 1 - Mailing List (public inbox) Commit SHA: 39cb4172433e4d67aab3630d3199be2b3b31ccbf Applied to: - Repository: lcpd-prc-meta-ti - Base Branch: master-wip - Commit Author: Ryan Eatmon <reatmon@ti.com> - Commit Subject: conf: Add falcon support natively - Commit SHA: d2d075cc819a43946149d76c3a087251bd105aca Patches ---------------------------------------- All patches applied wrynose ===================== Summary: - Patch Series: [master/wrynose][PATCH v2] beaglebadge-ti: avoid building ubifs and ubi for beaglebadge by default - Submitter: From: Yogesh Hegde <y-hegde@ti.com> - Date: Date: Wed, 17 Jun 2026 16:00:22 +0530 - Num Patches: 1 - Mailing List (public inbox) Commit SHA: 39cb4172433e4d67aab3630d3199be2b3b31ccbf Applied to: - Repository: lcpd-prc-meta-ti - Base Branch: wrynose-wip - Commit Author: Judith Mendez <jm@ti.com> - Commit Subject: conf: am62dxx-evm: Fixup packaged overlay list - Commit SHA: d6532526fe8f4d4a2dfa4fcdc85cc224f0a13fa2 Patches ---------------------------------------- All patches applied ========================================================= check-yocto-repo: PASS ========================================================= master ===================== PASS wrynose ===================== PASS ========================================================= yocto-check-layers: PASS ========================================================= master - PASS ===================== All checks passed wrynose - PASS ===================== All checks passed
diff --git a/meta-beagle/conf/machine/beaglebadge-ti.conf b/meta-beagle/conf/machine/beaglebadge-ti.conf index 78525030..ca98aea7 100644 --- a/meta-beagle/conf/machine/beaglebadge-ti.conf +++ b/meta-beagle/conf/machine/beaglebadge-ti.conf @@ -4,12 +4,6 @@ require conf/machine/include/am62lxx.inc -IMAGE_FSTYPES += "ubifs ubi" - -MKUBIFS_ARGS ?= "-F -m 4096 -e 258048 -c 8500" - -UBINIZE_ARGS ?= "-m 4096 -p 256KiB -s 1024 -O 1024" - KERNEL_DEVICETREE_PREFIX = " \ ti/k3-am62l3-badge \ "
Beaglebadge has only 256Mb OSPI flash and except for arago-bootstrap-base-image and arago-tiny-image other arago images doesn't fit into OSPI flash. Hence remove ubifs and ubi from IMAGE_FSTYPES to prevent unnecessary image generation and build failures when adding packages to the arago-default-image. Those who want to run arago-bootstrap-base-image and arago-tiny-image on OSPI can enable UBIFS in local.conf . Signed-off-by: Yogesh Hegde <y-hegde@ti.com> --- Changes in v2: - Removed MKUBIFS_ARGS and UBINIZE_ARGS variables. --- meta-beagle/conf/machine/beaglebadge-ti.conf | 6 ------ 1 file changed, 6 deletions(-)