diff options
| author | Luciano Dittgen <luciano.dittgen@ossystems.com.br> | 2026-07-14 11:50:23 -0300 |
|---|---|---|
| committer | Luciano Dittgen <luciano.dittgen@ossystems.com.br> | 2026-07-14 11:50:23 -0300 |
| commit | 71567a9c8d0b562761d5a4d71382aa15c7317dd9 (patch) | |
| tree | 1f22340d1288afcb0880a070f89798bcb3d27999 /recipes-bsp | |
| parent | 734b3bdbaed1efafca8f265d5cc4baa2ba057c13 (diff) | |
| download | meta-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.bb | 9 |
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 @@ | |||
| 1 | SUMMARY = "DDR firmware repository" | 1 | SUMMARY = "DDR firmware repository" |
| 2 | DESCRIPTION = "DDR PHY training firmware binaries for NXP LX2160A/LX2162A SoCs" | ||
| 2 | HOMEPAGE = "https://github.com/nxp/ddr-phy-binary" | 3 | HOMEPAGE = "https://github.com/nxp/ddr-phy-binary" |
| 4 | SECTION = "firmware" | ||
| 3 | LICENSE = "NXP-Binary-EULA" | 5 | LICENSE = "NXP-Binary-EULA" |
| 4 | LIC_FILES_CHKSUM = "file://NXP-Binary-EULA.txt;md5=89cc852481956e861228286ac7430d74" | 6 | LIC_FILES_CHKSUM = "file://NXP-Binary-EULA.txt;md5=89cc852481956e861228286ac7430d74" |
| 5 | 7 | ||
| 6 | inherit deploy | 8 | inherit deploy |
| 7 | 9 | ||
| 10 | DEPENDS += "qoriq-atf-tools-native" | ||
| 11 | |||
| 8 | SRC_URI = "git://github.com/nxp/ddr-phy-binary.git;nobranch=1;protocol=https" | 12 | SRC_URI = "git://github.com/nxp/ddr-phy-binary.git;nobranch=1;protocol=https" |
| 9 | SRCREV = "fbc036b88acb6c06ffed02c898cbae9856ec75ba" | 13 | SRCREV = "fbc036b88acb6c06ffed02c898cbae9856ec75ba" |
| 10 | 14 | ||
| 11 | REGLEX = "lx2160a" | 15 | REGLEX = "lx2160a" |
| 12 | 16 | ||
| 13 | DEPENDS += "qoriq-atf-tools-native" | ||
| 14 | |||
| 15 | do_compile() { | 17 | do_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 | } |
| 37 | addtask deploy before do_populate_sysroot after do_install | 39 | addtask deploy before do_populate_sysroot after do_install |
| 38 | 40 | ||
| 41 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
| 42 | |||
| 39 | PACKAGES += "${PN}-image" | 43 | PACKAGES += "${PN}-image" |
| 40 | FILES:${PN}-image += "/boot" | 44 | FILES:${PN}-image += "/boot" |
| 41 | 45 | ||
| 42 | COMPATIBLE_MACHINE = "(lx2160a|lx2162a)" | 46 | COMPATIBLE_MACHINE = "(lx2160a|lx2162a)" |
| 43 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
