summaryrefslogtreecommitdiffstats
path: root/recipes-bsp
diff options
context:
space:
mode:
authorLuciano Dittgen <luciano.dittgen@ossystems.com.br>2026-07-14 11:50:23 -0300
committerLuciano Dittgen <luciano.dittgen@ossystems.com.br>2026-07-14 11:50:23 -0300
commit71567a9c8d0b562761d5a4d71382aa15c7317dd9 (patch)
tree1f22340d1288afcb0880a070f89798bcb3d27999 /recipes-bsp
parent734b3bdbaed1efafca8f265d5cc4baa2ba057c13 (diff)
downloadmeta-freescale-71567a9c8d0b562761d5a4d71382aa15c7317dd9.tar.gz
ddr-phy: Set DESCRIPTION/SECTION and order variables per oelint
oelint-adv flagged a missing DESCRIPTION, a suggested SECTION, DEPENDS appearing after SRCREV, and PACKAGE_ARCH after FILES. Add DESCRIPTION and SECTION, move DEPENDS ahead of the fetch variables, and move PACKAGE_ARCH ahead of the PACKAGES/FILES block as oelint expects. Metadata-only change; the built package is unaffected. oelint-adv now reports no findings for this recipe. Signed-off-by: Luciano Dittgen <luciano.dittgen@ossystems.com.br>
Diffstat (limited to 'recipes-bsp')
-rw-r--r--recipes-bsp/ddr-phy/ddr-phy_git.bb9
1 files changed, 6 insertions, 3 deletions
diff --git a/recipes-bsp/ddr-phy/ddr-phy_git.bb b/recipes-bsp/ddr-phy/ddr-phy_git.bb
index ad2373dfd..5e7126e56 100644
--- a/recipes-bsp/ddr-phy/ddr-phy_git.bb
+++ b/recipes-bsp/ddr-phy/ddr-phy_git.bb
@@ -1,17 +1,19 @@
1SUMMARY = "DDR firmware repository" 1SUMMARY = "DDR firmware repository"
2DESCRIPTION = "DDR PHY training firmware binaries for NXP LX2160A/LX2162A SoCs"
2HOMEPAGE = "https://github.com/nxp/ddr-phy-binary" 3HOMEPAGE = "https://github.com/nxp/ddr-phy-binary"
4SECTION = "firmware"
3LICENSE = "NXP-Binary-EULA" 5LICENSE = "NXP-Binary-EULA"
4LIC_FILES_CHKSUM = "file://NXP-Binary-EULA.txt;md5=89cc852481956e861228286ac7430d74" 6LIC_FILES_CHKSUM = "file://NXP-Binary-EULA.txt;md5=89cc852481956e861228286ac7430d74"
5 7
6inherit deploy 8inherit deploy
7 9
10DEPENDS += "qoriq-atf-tools-native"
11
8SRC_URI = "git://github.com/nxp/ddr-phy-binary.git;nobranch=1;protocol=https" 12SRC_URI = "git://github.com/nxp/ddr-phy-binary.git;nobranch=1;protocol=https"
9SRCREV = "fbc036b88acb6c06ffed02c898cbae9856ec75ba" 13SRCREV = "fbc036b88acb6c06ffed02c898cbae9856ec75ba"
10 14
11REGLEX = "lx2160a" 15REGLEX = "lx2160a"
12 16
13DEPENDS += "qoriq-atf-tools-native"
14
15do_compile() { 17do_compile() {
16 cd ${S}/${REGLEX} 18 cd ${S}/${REGLEX}
17 fiptool create --ddr-immem-udimm-1d ddr4_pmu_train_imem.bin \ 19 fiptool create --ddr-immem-udimm-1d ddr4_pmu_train_imem.bin \
@@ -36,8 +38,9 @@ do_deploy () {
36} 38}
37addtask deploy before do_populate_sysroot after do_install 39addtask deploy before do_populate_sysroot after do_install
38 40
41PACKAGE_ARCH = "${MACHINE_ARCH}"
42
39PACKAGES += "${PN}-image" 43PACKAGES += "${PN}-image"
40FILES:${PN}-image += "/boot" 44FILES:${PN}-image += "/boot"
41 45
42COMPATIBLE_MACHINE = "(lx2160a|lx2162a)" 46COMPATIBLE_MACHINE = "(lx2160a|lx2162a)"
43PACKAGE_ARCH = "${MACHINE_ARCH}"