summaryrefslogtreecommitdiffstats
path: root/recipes-bsp/inphi
diff options
context:
space:
mode:
authorLuciano Dittgen <luciano.dittgen@ossystems.com.br>2026-07-07 14:38:55 -0300
committerLuciano Dittgen <luciano.dittgen@ossystems.com.br>2026-07-07 14:38:55 -0300
commit8031e6b47f623945b2a5808326bdf73b7b088385 (patch)
treecf10c79b15b9755e023342e1f9afce5bb4adf688 /recipes-bsp/inphi
parente603bd0c69f0cb4f295824037f8b975db45917cc (diff)
downloadmeta-freescale-8031e6b47f623945b2a5808326bdf73b7b088385.tar.gz
recipes-bsp: Use install for copied files
Replace cp with install in do_install paths so installed files get explicit permissions and satisfy oelint install-task checks. Tested with: git diff --check. Signed-off-by: Luciano Dittgen <luciano.dittgen@ossystems.com.br>
Diffstat (limited to 'recipes-bsp/inphi')
-rw-r--r--recipes-bsp/inphi/inphi_git.bb3
1 files changed, 1 insertions, 2 deletions
diff --git a/recipes-bsp/inphi/inphi_git.bb b/recipes-bsp/inphi/inphi_git.bb
index 5c2e4197f..21aef6bac 100644
--- a/recipes-bsp/inphi/inphi_git.bb
+++ b/recipes-bsp/inphi/inphi_git.bb
@@ -9,7 +9,7 @@ SRCREV = "f22e9ff3bfed8342da6efb699e473b11fbad5695"
9 9
10do_install () { 10do_install () {
11 install -d ${D}/boot 11 install -d ${D}/boot
12 cp -fr ${S}/in112525-phy-ucode.txt ${D}/boot 12 install -m 0644 ${S}/in112525-phy-ucode.txt ${D}/boot
13} 13}
14 14
15do_deploy () { 15do_deploy () {
@@ -23,4 +23,3 @@ FILES:${PN}-image += "/boot"
23 23
24COMPATIBLE_MACHINE = "(qoriq-arm64)" 24COMPATIBLE_MACHINE = "(qoriq-arm64)"
25PACKAGE_ARCH = "${MACHINE_ARCH}" 25PACKAGE_ARCH = "${MACHINE_ARCH}"
26