All of lore.kernel.org
 help / color / mirror / Atom feed
* File in append recipe not installed
@ 2015-03-12 20:58 p_j_r_m
  2015-03-12 21:05 ` Gary Thomas
  0 siblings, 1 reply; 8+ messages in thread
From: p_j_r_m @ 2015-03-12 20:58 UTC (permalink / raw)
  To: yocto@yoctoproject.org

[-- Attachment #1: Type: text/plain, Size: 1141 bytes --]

Hello

I'd like to add an append recipe for base-files in order to install a custom fstab.

In my system I already have this base-files recipes:

    layers/openembedded-core-1.4/meta/recipes-core/base-files/base-files_3.0.14.bb
    layers/meta-montavista-1.4/recipes-core/base-files/base-files_3.0.14.bbappend

So I in my layer I have:

layers/meta-mylayer/recipes/base-files
├── base-files_3.0.14.bbappend
└── files
    └── fstab

and I add this base-files_3.0.14.bbappend content:

FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}-${PV}:"

SRC_URI_append = "file://fstab"

do_install_append() {
        echo "======= ${PN}-${PV} INSTALLING fstab ========"
        install -m 644 ${WORKDIR}/fstab ${D}${sysconfdir}
}

but no matter how I put FILESEXTRAPATHS_prepend or how I name my bbappend when I build the recipe with bitbake base-files it never gets called and my fstab file is not installed.
If the original recipe is base-files_3.0.14.bb, why append is base-files_3.0.14.bbappend instead of base-files_3.bbappend only? How should i name and put FILESEXTRAPATHS




[-- Attachment #2: Type: text/html, Size: 2177 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread
* File in append recipe not installed
@ 2015-03-13  7:28 p_j_r_m
  0 siblings, 0 replies; 8+ messages in thread
From: p_j_r_m @ 2015-03-13  7:28 UTC (permalink / raw)
  To: yocto@yoctoproject.org

Thanks Gary.
I think is not called because I have echo lines in do_install_append() and they don't appear when bitbake -v is used after the recipe is cleaned and rebuilt.

This is my layer:

releases/meta-mylayer
├── conf
│  └── layer.conf
├── README


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2015-03-14 11:27 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-12 20:58 File in append recipe not installed p_j_r_m
2015-03-12 21:05 ` Gary Thomas
2015-03-12 23:21   ` p_j_r_m
2015-03-13  0:01     ` Gary Thomas
2015-03-13  8:17       ` Paul Eggleton
2015-03-13 23:16         ` p_j_r_m
2015-03-14 11:27           ` Paul Eggleton
  -- strict thread matches above, loose matches on Subject: below --
2015-03-13  7:28 p_j_r_m

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.