diff options
author | Jeff Hatch <Jeff.Hatch@multitech.com> | 2017-10-06 12:36:59 -0500 |
---|---|---|
committer | Jeff Hatch <Jeff.Hatch@multitech.com> | 2017-10-06 12:36:59 -0500 |
commit | 970dc59776b754c51a887f9b2ec4c7bb98589a43 (patch) | |
tree | bb4025d3be47132e415b17f327b79be5f19dc73e /recipes-kernel/rs9113/rs9113.inc | |
parent | e95e175cb545536722ebe845cd8a4f70b189dd1d (diff) | |
parent | f5ff7bc9e79ee975be063eb305423ecdd65ca2b3 (diff) | |
download | meta-multitech-970dc59776b754c51a887f9b2ec4c7bb98589a43.tar.gz meta-multitech-970dc59776b754c51a887f9b2ec4c7bb98589a43.tar.bz2 meta-multitech-970dc59776b754c51a887f9b2ec4c7bb98589a43.zip |
Merge branch 'master' of gitlab.multitech.net:mirrors/meta-multitech
Diffstat (limited to 'recipes-kernel/rs9113/rs9113.inc')
-rw-r--r-- | recipes-kernel/rs9113/rs9113.inc | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/recipes-kernel/rs9113/rs9113.inc b/recipes-kernel/rs9113/rs9113.inc index 1a238e1..1bf5768 100644 --- a/recipes-kernel/rs9113/rs9113.inc +++ b/recipes-kernel/rs9113/rs9113.inc @@ -1,10 +1,15 @@ inherit update-rc.d DR = "${DL_DIR}/rs9113-ipk" +FILESEXTRAPATHS_append := "${DR}:" INITSCRIPT_NAME = "rs9113" INITSCRIPT_PARAMS = "start 50 S ." +# Avoid QA Issue: No GNU_HASH in the elf binary +INSANE_SKIP_${PN} = "ldflags" +INSANE_SKIP_${PN}-dev = "ldflags" + python do_fetch_prepend () { # d.setVar('BB_STRICT_CHECKSUM',False) DR = d.getVar("DR",True) @@ -62,9 +67,9 @@ do_install () { bbnote "pwd,ls: $(pwd) $(ls) WORKDIR is ${WORKDIR}" ( cd ${WORKDIR} - find etc -print0 | cpio -0 -pdum ${D} - find usr -print0 | cpio -0 -pdum ${D} - find opt -print0 | cpio -0 -pdum ${D} + find etc -print0 | cpio --owner root:root -0 -pdum ${D} + find usr -print0 | cpio --owner root:root -0 -pdum ${D} + find opt -print0 | cpio --owner root:root -0 -pdum ${D} ) install -d ${D}/opt/rs9113/init.d install -d ${D}${sysconfdir}/init.d/ |